:root {
    --color-primary: #96D94E;
    --color-secondary: #859F69;
    --color-tertiary: #618C32;
    --color-dark: #3E5920;
    --color-light: #F4F7F0;
    --color-white: #FFFFFF;
    --color-gray: #6B7280;
    --color-dark-bg: #1a2e0e;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.preloader-icon {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(150, 217, 78, 0.2);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Navbar */
.navbar {
    background: transparent;
    padding: 20px 0;
    transition: var(--transition);
    z-index: 1000;
}

.navbar.scrolled {
    background: var(--color-dark);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--color-white) !important;
}

.navbar-brand span {
    color: var(--color-primary);
}

.nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.dropdown-menu {
    background: var(--color-dark);
    border: 1px solid rgba(150, 217, 78, 0.2);
    border-radius: 8px;
    padding: 8px;
}

.dropdown-item {
    color: rgba(255,255,255,0.85);
    border-radius: 6px;
    padding: 8px 16px;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: rgba(150, 217, 78, 0.15);
    color: var(--color-primary);
}

.navbar .btn-primary {
    background: var(--color-primary);
    border: none;
    color: var(--color-dark);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    transition: var(--transition);
}

.navbar .btn-primary:hover {
    background: var(--color-tertiary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(150, 217, 78, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 46, 16, 0.92) 0%, rgba(62, 89, 32, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(150, 217, 78, 0.15);
    border: 1px solid rgba(150, 217, 78, 0.3);
    color: var(--color-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-title span {
    color: var(--color-primary);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 600px;
    animation: fadeInUp 1s ease;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease;
}

.btn-primary {
    background: var(--color-primary);
    border: none;
    color: var(--color-dark);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--color-tertiary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(150, 217, 78, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline-primary {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--color-primary);
    color: var(--color-dark);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    animation: fadeInUp 1.4s ease;
}

.hero-stat h3 {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.hero-stat p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* Sections */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.section-title span {
    color: var(--color-tertiary);
}

.section-subtitle {
    color: var(--color-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-bg-light {
    background: var(--color-light);
}

.section-bg-dark {
    background: var(--color-dark);
    color: var(--color-white);
}

.section-bg-dark .section-title {
    color: var(--color-white);
}

/* Cards */
.card {
    border: none;
    border-radius: 16px;
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: rgba(150, 217, 78, 0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.card-title {
    font-weight: 700;
    color: var(--color-dark);
    font-size: 1.2rem;
}

.card-text {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.card-service {
    background: var(--color-white);
    padding: 36px 28px;
    border-radius: 16px;
    height: 100%;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.card-service:hover {
    border-bottom-color: var(--color-primary);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.card-software {
    background: var(--color-white);
    padding: 36px 28px;
    border-radius: 16px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.card-software::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-tertiary));
}

.card-software:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.card-software .software-badge {
    display: inline-block;
    background: rgba(150, 217, 78, 0.12);
    color: var(--color-primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

/* Features section (4 pillars) */
.feature-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--color-white);
    border-radius: 16px;
    height: 100%;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-tertiary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-white);
    margin: 0 auto 20px;
}

/* Testimonials */
.testimonial-card {
    background: var(--color-white);
    padding: 36px;
    border-radius: 16px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 4rem;
    color: rgba(150, 217, 78, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-top: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--color-gray);
    margin: 0;
}

/* Blog / News Cards */
.blog-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card-body {
    padding: 24px;
}

.blog-category {
    display: inline-block;
    background: rgba(150, 217, 78, 0.12);
    color: var(--color-primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
    display: block;
    text-decoration: none;
    transition: var(--transition);
}

.blog-card-title:hover {
    color: var(--color-tertiary);
}

.blog-card-text {
    color: var(--color-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    color: var(--color-gray);
    font-size: 0.85rem;
}

/* Contact */
.contact-info-card {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 40px;
    border-radius: 16px;
    height: 100%;
}

.contact-info-card h4 {
    color: var(--color-primary);
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(150, 217, 78, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-form-wrap {
    background: var(--color-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-control, .form-select {
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #E5E7EB;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(150, 217, 78, 0.15);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--color-dark-bg);
    color: rgba(255,255,255,0.8);
    padding: 80px 0 0;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 16px;
}

.footer-brand span {
    color: var(--color-primary);
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--color-primary);
    color: var(--color-dark);
    transform: translateY(-3px);
}

.footer h5 {
    color: var(--color-white);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.footer-contact-icon {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    margin-top: 60px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom a {
    color: var(--color-primary);
    text-decoration: none;
}

/* Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, var(--color-dark), var(--color-dark-bg));
    padding: 60px 0;
}

.newsletter-title {
    color: var(--color-white);
    font-weight: 700;
    margin-bottom: 8px;
}

.newsletter-text {
    color: rgba(255,255,255,0.6);
}

.newsletter-form .input-group {
    max-width: 500px;
}

.newsletter-form .form-control {
    border-radius: 50px 0 0 50px;
    border: none;
    padding: 14px 20px;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 14px 28px;
    background: var(--color-primary);
    color: var(--color-dark);
    font-weight: 600;
    border: none;
}

/* Page Header */
.page-header {
    position: relative;
    padding: 160px 0 80px;
    background: var(--color-dark);
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.page-header h1 {
    color: var(--color-white);
    font-weight: 800;
    font-size: 2.8rem;
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb-item {
    color: rgba(255,255,255,0.6);
}

.page-header .breadcrumb-item a {
    color: var(--color-primary);
    text-decoration: none;
}

.page-header .breadcrumb-item.active {
    color: rgba(255,255,255,0.8);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Page */
.about-image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.about-image-wrap img {
    width: 100%;
    border-radius: 16px;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-primary);
    color: var(--color-dark);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    min-width: 120px;
}

.about-experience-badge h3 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.about-experience-badge p {
    font-size: 0.8rem;
    margin: 0;
    font-weight: 500;
}

.team-card {
    text-align: center;
    padding: 36px 20px;
    background: var(--color-white);
    border-radius: 16px;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
}

.team-card h5 {
    font-weight: 700;
    color: var(--color-dark);
}

.team-card p {
    color: var(--color-gray);
    font-size: 0.9rem;
}

/* Software Landing Pages */
.software-hero {
    position: relative;
    padding: 140px 0 80px;
    background: var(--color-dark);
    overflow: hidden;
}

.software-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.software-hero h1 {
    color: var(--color-white);
    font-weight: 800;
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
}

.software-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-top: 2px;
}

/* Pricing / Plans */
.pricing-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 40px 28px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.pricing-card.featured {
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(150, 217, 78, 0.15);
}

.pricing-card.featured::before {
    content: 'Mais Popular';
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-primary);
    color: var(--color-dark);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-dark);
}

.pricing-price span {
    font-size: 1rem;
    color: var(--color-gray);
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 24px 0;
}

.pricing-card ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.pricing-card ul li i {
    color: var(--color-primary);
}

/* Table styles for services page */
.table-licencas {
    border-radius: 12px;
    overflow: hidden;
}

.table-licencas thead {
    background: var(--color-dark);
    color: var(--color-white);
}

.table-licencas th {
    font-weight: 600;
    padding: 16px;
    border: none;
}

.table-licencas td {
    padding: 16px;
    vertical-align: middle;
}

.table-licencas tbody tr {
    transition: var(--transition);
}

.table-licencas tbody tr:hover {
    background: rgba(150, 217, 78, 0.05);
}

/* Store */
.product-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 20px;
    background: #f9f9f9;
}

.product-card-body {
    padding: 20px;
}

.product-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
    display: block;
    text-decoration: none;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-tertiary);
}

.product-old-price {
    font-size: 0.9rem;
    color: var(--color-gray);
    text-decoration: line-through;
    margin-left: 8px;
}

.product-card .btn {
    border-radius: 50px;
    font-size: 0.85rem;
    padding: 8px 20px;
}

/* Pagination */
.pagination .page-link {
    color: var(--color-dark);
    border: 1px solid #E5E7EB;
    padding: 10px 18px;
    margin: 0 4px;
    border-radius: 8px;
    transition: var(--transition);
}

.pagination .page-link:hover {
    background: var(--color-primary);
    color: var(--color-dark);
    border-color: var(--color-primary);
}

.pagination .page-item.active .page-link {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-dark);
}

/* Scroll to top */
#scrollTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: var(--color-dark);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(150, 217, 78, 0.3);
}

#scrollTop.visible {
    opacity: 1;
    visibility: visible;
}

#scrollTop:hover {
    background: var(--color-tertiary);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* FAQ */
.accordion-button {
    font-weight: 600;
    color: var(--color-dark);
    padding: 20px 24px;
}

.accordion-button:not(.collapsed) {
    background: rgba(150, 217, 78, 0.08);
    color: var(--color-dark);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--color-primary);
}

.accordion-body {
    padding: 20px 24px;
    color: #555;
    line-height: 1.7;
}

/* Sidebar */
.sidebar-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
    border: 1px solid #f0f0f0;
}

.sidebar-card h5 {
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-primary);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-dark), var(--color-dark-bg));
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--color-white);
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 32px;
}

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    color: var(--color-white);
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Modal animation */
.modal-content {
    border-radius: 16px;
    border: none;
}

/* Full post/news page */
.post-content h2 {
    color: var(--color-dark);
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
}

.post-content h3 {
    color: var(--color-dark);
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
}

.post-content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.post-content ul, .post-content ol {
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.post-content img {
    max-width: 100%;
    border-radius: 12px;
    margin: 24px 0;
}

/* Admin Styles */
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-dark);
}

.admin-login-card {
    background: var(--color-white);
    padding: 48px 40px;
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
}

.admin-login-card .login-logo {
    text-align: center;
    margin-bottom: 32px;
}

.admin-login-card .login-logo h3 {
    color: var(--color-dark);
    font-weight: 800;
}

.admin-login-card .login-logo h3 span {
    color: var(--color-primary);
}

.admin-sidebar {
    background: var(--color-dark);
    min-height: 100vh;
    padding: 0;
}

.admin-sidebar .admin-brand {
    padding: 20px 24px;
    color: var(--color-white);
    font-weight: 800;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.admin-sidebar .admin-brand span {
    color: var(--color-primary);
}

.admin-sidebar .nav-link {
    color: rgba(255,255,255,0.7) !important;
    padding: 12px 24px !important;
    border-radius: 0;
    border-left: 3px solid transparent;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background: rgba(150, 217, 78, 0.08);
    color: var(--color-primary) !important;
    border-left-color: var(--color-primary);
}

.admin-sidebar .nav-link i {
    width: 24px;
    margin-right: 8px;
}

.admin-content {
    padding: 30px;
}

.admin-header {
    background: var(--color-white);
    padding: 16px 30px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-card-admin {
    background: var(--color-white);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--color-primary);
}

.stat-card-admin h3 {
    font-weight: 800;
    color: var(--color-dark);
    margin: 0;
}

.stat-card-admin p {
    color: var(--color-gray);
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar-collapse {
        background: var(--color-dark);
        padding: 20px;
        border-radius: 12px;
        margin-top: 12px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .footer {
        padding: 40px 0 0;
    }

    .software-hero h1 {
        font-size: 1.8rem;
    }

    .contact-form-wrap {
        padding: 24px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
}
