     /* ========================================
           VARIÁVEIS CSS
        ======================================== */
        :root {
            --dark-primary: #00232D;
            --dark-secondary: #1a1a1a;
            --dark-tertiary: #2d2d2d;
            --gold-primary: #dedede;
            --gold-light: #0A161EEA;
            --gold-dark: #b8961e;
            --white: #ffffff;
            --off-white: #f8f9fa;
            --light-gray: #e9ecef;
            --text-gray: #6c757d;
            --text-dark: #2c3e50;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
            --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
            --transition-fast: 0.2s ease;
            --transition-base: 0.3s ease;
            --transition-slow: 0.5s ease;
            --header-height: 80px;
        }

        /* ========================================
           RESET E BASE
        ======================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            width: 100%;
            overflow-x: hidden;
        }

        body {
            font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--white);
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* ========================================
           HEADER & NAVIGATION
        ======================================== */

        /* HEADER */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: transparent;
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            transition: all 0.3s ease;
        }

        header.scrolled {
            padding: 10px 0;
            box-shadow: var(--shadow);
            background: var(--dark-primary)
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 40px;
        }
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: var(--header-height);
        }

        .logo {
            display: flex;
            align-items: center;
            z-index: 1001;
        }

        .logo img {
            height: 60px;
            width: auto;
            transition: transform var(--transition-base);
        }

        .logo:hover img {
            transform: scale(1.05);
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 2.5rem;
        }

        .nav-list {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: var(--white);
            font-weight: 500;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            transition: color var(--transition-fast);
            display: flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.5rem 0;
        }

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

        .nav-link:hover {
            color: var(--gold-primary);
        }

        .nav-link:hover::after {
            transform: translateX(-50%) scaleX(1);
        }

        /* Dropdown Menu */
        .dropdown {
            position: relative;
        }

        .dropdown-icon {
            font-size: 0.7rem;
            transition: transform var(--transition-base);
        }

        .dropdown:hover .dropdown-icon {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: calc(100% + 1rem);
            left: 0;
            min-width: 240px;
            background: rgba(26, 26, 26, 0.98);
            backdrop-filter: blur(20px);
            border-radius: 12px;
            padding: 0.5rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all var(--transition-base);
            box-shadow: var(--shadow-xl);
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            list-style: none;
        }

        .dropdown-link {
            display: block;
            padding: 0.75rem 1rem;
            color: var(--white);
            font-size: 0.9rem;
            border-radius: 8px;
            transition: all var(--transition-fast);
            text-transform: none;
        }

        .dropdown-link:hover {
            background: rgba(212, 175, 55, 0.1);
            color: var(--gold-primary);
            padding-left: 1.25rem;
        }

        /* Mobile Menu */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .mobile-toggle span {
            width: 25px;
            height: 2px;
            background: var(--white);
            transition: all var(--transition-base);
            border-radius: 2px;
        }

        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translateY(7px);
        }

        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translateY(-7px);
        }

        /* ========================================
           HERO SECTION
        ======================================== */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 600px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 300%;
            height: 100%;
            display: flex;
            animation: heroSlide 20s ease-in-out infinite;
        }

        .hero-slide {
            width: 100vw;
            height: 100%;
            background-size: cover;
            background-position: center;
            flex-shrink: 0;
        }

        @keyframes heroSlide {
            0%, 30% { transform: translateX(0); }
            33%, 63% { transform: translateX(-100vw); }
            66%, 96% { transform: translateX(-200vw); }
            100% { transform: translateX(0); }
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(15, 15, 15, 0.4));
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            padding: 0 2rem;
            color: var(--white);
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);    
            border: 1px solid var(--off-white);
            padding: 0.75rem 1.75rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--off-white);
            letter-spacing: 2px;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            animation: fadeInDown 1s ease;
        }

        .hero-title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease 0.2s both;
            color: #ffffff;
        }

        .hero-description {
            font-size: clamp(1rem, 2vw, 1.25rem);
            margin-bottom: 2.5rem;
            font-weight: 400;
            line-height: 1.6;
            text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease 0.4s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1.25rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.6s both;
        }

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

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ========================================
           BUTTONS
        ======================================== */
        .btn {
            padding: 1rem 2.25rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            transition: all var(--transition-base);
            cursor: pointer;
            border: 2px solid transparent;
        }
.btn-primary {
  background: linear-gradient(135deg, #FFF6D0, #EBD38B);
  color: var(--dark-primary);
  border: none;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(235, 211, 139, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FFFBE6, #F2DC94);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(242, 220, 148, 0.45);
}


        .btn-secondary {
            background: transparent;
            color: var(--white);
            border-color: var(--white);
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--dark-primary);
            transform: translateY(-3px);
        }

        /* ========================================
           SECTIONS
        ======================================== */
        .section {
            padding: 6rem 2rem;
        }

        .section-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            color: var(--gold-light);
            padding: 0.5rem 1.25rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            color: var(--dark-primary);
            margin-bottom: 1.25rem;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: clamp(1rem, 2vw, 1.125rem);
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

      /* ========================================
           SISTEMA SECTION
        ======================================== */
        .sistema {
            background: linear-gradient(180deg, var(--off-white), var(--white));
        }

        .sistema-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .sistema-image-wrapper {
            position: relative;
            border-radius: 2px;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
        }

        .sistema-image {
            width: 100%;
            height: 600px;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }

        .sistema-image-wrapper:hover .sistema-image {
            transform: scale(1.05);
        }

        .sistema-badge {
            position: absolute;
            top: 2rem;
            right: 2rem;
            background: linear-gradient(135deg, #FFF6D0, #EBD38B);
            color: var(--dark-primary);
            padding: 0.7rem 1rem;
            border-radius: 5px;
            font-weight: 700;
            font-size: 0.9rem;
            box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .sistema-content h3 {
            font-size: clamp(1.75rem, 3vw, 2.25rem);
            color: var(--dark-primary);
            margin-bottom: 1.5rem;
            font-weight: 800;
        }

        .sistema-content p {
            color: var(--text-gray);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .sistema-features {
            display: grid;
            gap: 1.25rem;
            margin-top: 2rem;
        }

        .sistema-feature {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem;
            background-color: rgba(240, 247, 252, 0.377);
            border-radius: 12px;
            border-left: 3px solid var(--gold-primary);
            transition: all var(--transition-base);
            box-shadow: var(--shadow-sm);
        }

        .sistema-feature:hover {
            transform: translateX(10px);
            box-shadow: var(--shadow-md);
        }

        .sistema-feature-icon {
            font-size: 1.5rem;
            color: var(--gold-light);
            min-width: 32px;
        }

        .sistema-feature h4 {
            font-size: 1.125rem;
            color: var(--dark-primary);
            margin-bottom: 0.25rem;
            font-weight: 700;
        }

        .sistema-feature p {
            font-size: 0.9rem;
            color: var(--text-gray);
            margin: 0;
        }

        /* Sistema Stats */
        .sistema-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 4rem auto 0;
        }

        .sistema-stats .stat-item {
            text-align: center;
            padding: 2rem 1rem;
            background: rgba(10, 22, 30, 0.05);
            border-radius: 16px;
            border: 2px solid var(--light-gray);
            transition: all var(--transition-base);
        }

        .sistema-stats .stat-item:hover {
            background: rgba(10, 22, 30, 0.08);
            border-color: var(--gold-primary);
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .sistema-stats .stat-number {
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(135deg, #0A161E, #084e61);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .sistema-stats .stat-label {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--dark-primary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

 /* ========================================
           SEÇÃO TECNOLOGIA/SERVIÇOS
        ======================================== */
        .section.tecnologia {
            background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
            padding: 100px 0;
            position: relative;
        }

        .section-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* Header */
        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--dark-primary);
            margin-top: 20px;
            letter-spacing: -0.5px;
        }

        .section-subtitle {
            color: var(--text-gray);
            font-size: 1.1rem;
            margin-top: 15px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
        }

        /* ========================================
           DESTAQUE PRINCIPAL
        ======================================== */
        .feature-highlight {
            background: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            margin-bottom: 80px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            position: relative;
        }

        .feature-highlight::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gold-gradient);
        }

        .highlight-image {
            position: relative;
            overflow: hidden;
            min-height: 500px;
        }

        .highlight-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .feature-highlight:hover .highlight-image img {
            transform: scale(1.05);
        }

        .highlight-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 35, 45, 0.7) 0%, transparent 70%);
        }

        .highlight-badge {
            position: absolute;
            top: 30px;
            left: 30px;
                background: linear-gradient(135deg, #FFF6D0, #EBD38B);
            color: var(--dark-primary);
            padding: 10px 20px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 1px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .highlight-badge i {
            animation: sparkle 2s ease infinite;
        }

        @keyframes sparkle {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.2) rotate(180deg); }
        }

        .highlight-content {
            padding: 50px 45px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: linear-gradient(135deg, #00232D 0%, #084e61 50%, #00232D 100%);
        }

        .highlight-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #FFF6D0, #EBD38B);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--dark-primary);
            margin-bottom: 25px;
            box-shadow: 0 8px 20px rgba(235, 211, 139, 0.3);
        }

        .highlight-content h3 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--off-white);
            margin-bottom: 15px;
            letter-spacing: -0.5px;
        }

        .highlight-intro {
            color: var(--off-white);
            font-size: 1rem;
            margin-bottom: 25px;
            font-weight: 500;
        }

        .highlight-options {
            margin-bottom: 30px;
        }

        .option-item {
            background: var(--off-white);
            padding: 20px;
            border-radius: 16px;
            margin-bottom: 15px;
            border-left: 4px solid transparent;
            transition: all var(--transition-base);
        }

        .option-item:hover {
            border-left-color: #EBD38B;
            background: var(--white);
            transform: translateX(5px);
            box-shadow: var(--shadow-md);
        }

        .option-item strong {
            display: block;
            color: var(--dark-primary);
            font-size: 1.05rem;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .option-item p {
            color: var(--text-gray);
            font-size: 0.9rem;
            line-height: 1.6;
            margin: 0;
        }

        .highlight-cta {
            background: linear-gradient(135deg, rgba(255, 246, 208, 0.2), rgba(235, 211, 139, 0.2));
            padding: 20px;
            border-radius: 12px;
            color: var(--off-white);
            font-size: 0.95rem;
            line-height: 1.6;
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
            border: 1px solid rgba(235, 211, 139, 0.3);
        }

        .highlight-cta i {
            color: #EBD38B;
            font-size: 1.2rem;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .btn-highlight {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #FFF6D0, #EBD38B);
            color: var(--dark-primary);
            padding: 16px 32px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: all var(--transition-base);
            box-shadow: 0 4px 15px rgba(0, 35, 45, 0.3);
            align-self: flex-start;
        }

        .btn-highlight:hover {
            transform: translateY(-2px);
        }

        /* ========================================
           DIVISOR
        ======================================== */
        .services-divider {
            text-align: center;
            margin: 60px 0;
            position: relative;
        }

        .services-divider::before,
        .services-divider::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 40%;
            height: 1px;
            background: linear-gradient(90deg, transparent, #EBD38B, transparent);
        }

        .services-divider::before {
            left: 0;
        }

        .services-divider::after {
            right: 0;
        }

        .divider-text {
            display: inline-block;
            background: var(--white);
            padding: 0 30px;
            color: var(--text-gray);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 2px;
            position: relative;
        }

        /* ========================================
           OUTROS SERVIÇOS
        ======================================== */
        .tecnologia-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .tech-feature {
            background: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all var(--transition-base);
            position: relative;
            border: 2px solid transparent;
        }

        .tech-feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gold-gradient);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform var(--transition-base);
        }

        .tech-feature:hover::before {
            transform: scaleX(1);
        }

        .tech-feature:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: rgba(235, 211, 139, 0.3);
        }

        .tech-image {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .tech-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .tech-feature:hover .tech-image img {
            transform: scale(1.1);
        }

        .tech-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
        }

        .tech-content {
            padding: 30px 25px;
        }

        .tech-content h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark-primary);
            margin-bottom: 12px;
            letter-spacing: -0.3px;
        }

        .tech-content p {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .tech-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--dark-primary);
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all var(--transition-base);
        }

        .tech-link i {
            transition: transform var(--transition-base);
        }

        .tech-link:hover {
            color: #EBD38B;
        }

        .tech-link:hover i {
            transform: translateX(5px);
        }

        /* ========================================
           RESPONSIVO
        ======================================== */
        @media (max-width: 992px) {
            .feature-highlight {
                grid-template-columns: 1fr;
            }

            .highlight-image {
                min-height: 350px;
            }

            .highlight-content {
                padding: 40px 35px;
            }
        }

        @media (max-width: 768px) {
            .section.tecnologia {
                padding: 80px 0;
            }

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

            .highlight-content h3 {
                font-size: 1.6rem;
            }

            .tecnologia-features {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.8rem;
            }

            .highlight-content {
                padding: 30px 25px;
            }

            .highlight-content h3 {
                font-size: 1.4rem;
            }

            .btn-highlight {
                width: 100%;
                justify-content: center;
            }
        }


            /* ========================================
           BENEFÍCIOS SECTION
        ======================================== */
        .section.beneficios {
                background: linear-gradient(135deg, #00232D 0%, #084e61 50%, #00232D 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .section.beneficios::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(235, 211, 139, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .section.beneficios::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 35, 45, 0.05) 0%, transparent 70%);
            border-radius: 50%;
        }

        .section-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* Header da Seção */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--dark-primary);
            margin-top: 20px;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }

        .section-subtitle {
            color: var(--text-gray);
            font-size: 1.1rem;
            margin-top: 15px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
        }

        /* Grid de Benefícios */
        .beneficios-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .beneficio-card {
            background: var(--white);
            padding: 2.5rem 2rem;
            border-radius: 20px;
            text-align: center;
            transition: all var(--transition-base);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .beneficio-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #FFF6D0, #EBD38B);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform var(--transition-base);
        }

        .beneficio-card:hover::before {
            transform: scaleX(1);
        }

        .beneficio-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-xl);
            border-color: rgba(235, 211, 139, 0.3);
        }

        .beneficio-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #FFF6D0, #EBD38B);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--dark-primary);
            transition: all var(--transition-base);
            position: relative;
            box-shadow: 0 8px 20px rgba(235, 211, 139, 0.3);
        }

        .beneficio-icon::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 20px;
            background: linear-gradient(135deg, #FFF6D0, #EBD38B);
            opacity: 0;
            z-index: -1;
            filter: blur(10px);
            transition: opacity var(--transition-base);
        }

        .beneficio-card:hover .beneficio-icon {
            transform: scale(1.1) rotate(-5deg);
        }

        .beneficio-card:hover .beneficio-icon::after {
            opacity: 0.6;
        }

        .beneficio-card h3 {
            font-size: 1.3rem;
            color: var(--dark-primary);
            margin-bottom: 1rem;
            font-weight: 700;
            letter-spacing: -0.3px;
        }

        .beneficio-card p {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.8;
            font-weight: 400;
        }

        /* Efeito de brilho no hover */
        .beneficio-card::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent,
                rgba(255, 246, 208, 0.1),
                transparent
            );
            transform: rotate(45deg);
            transition: all 0.6s ease;
        }

        .beneficio-card:hover::after {
            right: -150%;
        }

        /* ========================================
           RESPONSIVO
        ======================================== */
        @media (max-width: 768px) {
            .section.beneficios {
                padding: 80px 0;
            }

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

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

            .beneficios-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 1.5rem;
            }

            .beneficio-card {
                padding: 2rem 1.5rem;
            }

            .beneficio-icon {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }

            .beneficio-card h3 {
                font-size: 1.15rem;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.8rem;
            }

            .beneficios-grid {
                grid-template-columns: 1fr;
            }

            .beneficio-card {
                padding: 1.8rem 1.5rem;
            }
        }
        /* ========================================
           PROJETOS CAROUSEL
        ======================================== */
        .projetos {
            background: var(--off-white);
        }

        .projetos-carousel {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .carousel-container {
            position: relative;
            overflow: hidden;
            border-radius: 5px;
            box-shadow: var(--shadow-xl);
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-slide {
            min-width: 100%;
            position: relative;
            height: 500px;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
            padding: 3rem 2rem 2rem;
            color: var(--white);
        }

        .carousel-caption h4 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .carousel-caption p {
            font-size: 1rem;
            opacity: 0.9;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all var(--transition-base);
            z-index: 10;
            color: var(--dark-primary);
            font-size: 1.25rem;
        }

        .carousel-btn:hover {
            background: var(--gold-primary);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn.prev {
            left: 20px;
        }

        .carousel-btn.next {
            right: 20px;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 2rem;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--light-gray);
            cursor: pointer;
            transition: all var(--transition-base);
        }

        .carousel-dot.active {
            background: var(--gold-primary);
            width: 30px;
            border-radius: 6px;
        }

        .carousel-dot:hover {
            background: var(--gold-light);
        }

        /* ========================================
           CONTATO SECTION
        ======================================== */
        .contato {
                background: linear-gradient(135deg, #00232D 0%, #084e61 50%, #00232D 100%);
            color: var(--white);
            text-align: center;
        }

        .contato .section-badge {
            background: rgba(255, 255, 255, 0.7);
        }

        .contato .section-title,
        .contato .section-subtitle {
            color: var(--white);
        }

        .contato-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .contato-item {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all var(--transition-base);
        }

        .contato-item:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--gold-primary);
            transform: translateY(-5px);
        }

        .contato-item i {
            font-size: 2.25rem;
            color: var(--gold-primary);
            margin-bottom: 1rem;
        }

        .contato-item h4 {
            font-size: 1rem;
            margin-bottom: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contato-item a {
            color: rgba(255, 255, 255, 0.8);
            transition: color var(--transition-fast);
        }

        .contato-item:hover a {
            color: var(--gold-primary);
        }

        /* ========================================
           FOOTER
        ======================================== */
        .footer {
            background: linear-gradient(135deg, #00232D 0%, #000d11 50%, #00232D 100%);
            color: rgba(255, 255, 255, 0.7);
            padding: 4rem 2rem 2rem;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-about img {
            height: 70px;
            margin-bottom: 1.5rem;
        }

        .footer-about p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
            font-size: 0.95rem;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

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

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

        .footer-section h4 {
            color: var(--gold-primary);
            font-size: 1rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-section a {
            display: block;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0.75rem;
            font-size: 0.9rem;
            transition: all var(--transition-fast);
        }

        .footer-section a:hover {
            color: var(--gold-primary);
            padding-left: 10px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
            font-size: 0.9rem;
        }

        .footer-bottom p {
            margin: 0.5rem 0;
        }

        /* ========================================
           WHATSAPP FLOAT
        ======================================== */
        /* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  background: #25D366;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  opacity: 0.9;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
  opacity: 1;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}
.whatsapp-float:hover svg {
  transform: scale(1.1) rotate(10deg);
}

/* Tooltip do WhatsApp */
.whatsapp-float::before {
  content: "Fale conosco no WhatsApp";
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  margin-right: 15px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-left-color: rgba(0, 0, 0, 0.8);
  margin-right: 7px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
  opacity: 1;
  visibility: visible;
}

/* Animação de pulso */
@keyframes whatsappPulse {
  0% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  50% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Animação de entrada */
@keyframes whatsappSlideIn {
  from {
    transform: translateX(100px) scale(0);
    opacity: 0;
  }
  to {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

.whatsapp-float {
  animation: whatsappSlideIn 0.6s ease-out 1s both, whatsappPulse 2s infinite 2s;
}

/* Responsivo para WhatsApp */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
  
  .whatsapp-float::before {
    font-size: 13px;
    padding: 8px 12px;
    right: 110%;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 15px;
    right: 15px;
  }
  
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
  
  .whatsapp-float::before {
    display: none; /* Esconde tooltip em telas muito pequenas */
  }
  
  .whatsapp-float::after {
    display: none;
  }
          .carousel-btn.prev {
            display: none;
        }

        .carousel-btn.next {
            display: none;
        }

}

        /* ========================================
           RESPONSIVE DESIGN
        ======================================== */
        @media (max-width: 992px) {
            :root {
                --header-height: 70px;
            }

            .nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 320px;
                height: 100vh;
                background: var(--dark-primary);
                backdrop-filter: blur(20px);
                flex-direction: column;
                align-items: flex-start;
                padding: 6rem 2rem 2rem;
                transition: right var(--transition-base);
                overflow-y: auto;
            }

            .nav.active {
                right: 0;
                box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
            }

            .nav-list {
                flex-direction: column;
                gap: 0;
                width: 100%;
            }

            .nav-item {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-link {
                padding: 1rem 0;
                width: 100%;
            }

            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                max-height: 0;
                overflow: hidden;
                transition: max-height var(--transition-base);
                background: rgba(255, 255, 255, 0.05);
                margin-top: 0.5rem;
            }

            .dropdown.active .dropdown-menu {
                max-height: 500px;
            }

            .dropdown-link {
                padding: 0.75rem 1rem;
            }

            .mobile-toggle {
                display: flex;
            }

            .sistema-grid,
            .comparacao-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 4rem 1.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .btn {
                justify-content: center;
            }

            .sistema-image {
                height: 400px;
            }

            .beneficios-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .whatsapp-float {
                bottom: 1.5rem;
                right: 1.5rem;
                width: 55px;
                height: 55px;
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .section {
                padding: 3rem 1rem;
            }

            .sistema-image {
                height: 300px;
            }

            .comparacao-card,
            .beneficio-card {
                padding: 2rem 1.5rem;
            }
        }

        /* ========================================
           UTILITY CLASSES
        ======================================== */
        .mt-2 { margin-top: 2rem; }
        .mt-3 { margin-top: 3rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mb-3 { margin-bottom: 3rem; }

        /* Animações suaves */
        .fade-in {
            animation: fadeIn 0.8s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Scroll suave */
        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }
            
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* ==================== SOCIAL SIDEBAR ==================== */
.social-sidebar {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 0;
  animation: fadeInSidebar 0.8s ease forwards 1s;
}

@keyframes fadeInSidebar {
  to {
    opacity: 1;
  }
}

.social-sidebar-link {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.social-sidebar-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
  z-index: -1;
}

.social-sidebar-link:hover {
  transform: translateX(5px) scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.social-sidebar-link:hover::before {
  transform: scale(1);
}

.social-sidebar-link i {
  font-size: 22px;
  z-index: 1;
  transition: all 0.3s ease;
}

/* Instagram */
.social-sidebar-link.instagram::before {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-sidebar-link.instagram i {
  color: #e4405f;
}

.social-sidebar-link.instagram:hover i {
  color: #ffffff;
}

/* Facebook */
.social-sidebar-link.facebook::before {
  background: #1877f2;
}

.social-sidebar-link.facebook i {
  color: #1877f2;
}

.social-sidebar-link.facebook:hover i {
  color: #ffffff;
}

/* WhatsApp */
.social-sidebar-link.whatsapp::before {
  background: #25d366;
}

.social-sidebar-link.whatsapp i {
  color: #25d366;
}

.social-sidebar-link.whatsapp:hover i {
  color: #ffffff;
}

/* Tooltip ao passar o mouse */
.social-sidebar-link::after {
  content: attr(data-label);
  position: absolute;
  left: 65px;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.social-sidebar-link:hover::after {
  opacity: 1;
  left: 70px;
}

/* Esconder em dispositivos móveis */
@media (max-width: 768px) {
  .social-sidebar {
    display: none;
  }
}

/* Ajuste para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
  .social-sidebar {
    left: 15px;
  }
  
  .social-sidebar-link {
    width: 45px;
    height: 45px;
  }
  
  .social-sidebar-link i {
    font-size: 20px;
  }
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-left: 35px;
  margin-bottom: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  color: #fff;
  text-decoration: none;
  margin-top: 3px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

/* Efeito de brilho ao passar o mouse */
.social-icons a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.social-icons a:hover::before {
  width: 100%;
  height: 100%;
}

/* Estado padrão hover */
.social-icons a:hover {
  transform: translateY(-5px) scale(1.1);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Instagram - Gradiente original */
.social-icons a.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

/* Facebook - Azul original */
.social-icons a.facebook:hover {
  background: #1877f2;
  color: #fff;
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

/* WhatsApp - Verde original */
.social-icons a.whatsapp:hover {
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* YouTube - Vermelho original */
.social-icons a.youtube:hover {
  background: #ff0000;
  color: #fff;
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}


/* Animação suave nos ícones */
.social-icons a i {
  transition: transform 0.3s ease;
  z-index: 1;
  position: relative;
}

.social-icons a:hover i {
  transform: scale(1.1) rotate(5deg);
}

/* Responsivo */
@media (max-width: 768px) {
  .social-icons {
    margin-left: 0;
    margin-right: 35px;
  }
  
  .social-icons a {
    width: 36px;
    height: 36px;
  }
}

 /* ==================== SEÇÃO DE DEPOIMENTOS ==================== */
        .section.depoimentos {
            background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .section.depoimentos::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 300px;
            clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
            z-index: 0;
        }

        .section.depoimentos .section-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .section.depoimentos .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section.depoimentos .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--dark-primary);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .section.depoimentos .section-badge::before {
            content: '★';
            font-size: 1rem;
        }

        .section.depoimentos .section-header h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--dark-primary);
            margin-top: 20px;
            letter-spacing: -0.5px;
            animation: fadeInUp 0.6s ease 0.2s both;
        }

        .section.depoimentos .section-header p {
            color: var(--text-gray);
            font-size: 1.1rem;
            margin-top: 15px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
            animation: fadeInUp 0.6s ease 0.4s both;
        }

        /* ==================== CARROSSEL ==================== */
        .testimonials-carousel {
            position: relative;
            padding: 40px 0;
        }

        .testimonials-wrapper {
            position: relative;
            min-height: 400px;
        }

        .testimonial {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%) translateY(30px);
            opacity: 0;
            visibility: hidden;
            background: var(--white);
            border-radius: 24px;
            box-shadow: var(--shadow-xl);
            padding: 50px 45px;
            width: 90%;
            max-width: 800px;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .testimonial::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 30px;
            font-size: 120px;
            color: var(--gold-primary);
            font-family: Georgia, serif;
            opacity: 0.3;
            line-height: 1;
        }

        .testimonial.active {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
            z-index: 2;
        }

        .testimonial .rating {
            display: flex;
            gap: 4px;
            margin-bottom: 20px;
            justify-content: center;
        }

        .testimonial .rating i {
            color: var(--gold-dark);
            font-size: 1rem;
            animation: starPop 0.3s ease backwards;
        }

        .testimonial .rating i:nth-child(1) { animation-delay: 0.1s; }
        .testimonial .rating i:nth-child(2) { animation-delay: 0.2s; }
        .testimonial .rating i:nth-child(3) { animation-delay: 0.3s; }
        .testimonial .rating i:nth-child(4) { animation-delay: 0.4s; }
        .testimonial .rating i:nth-child(5) { animation-delay: 0.5s; }

        .testimonial .quote {
            font-size: 1.25rem;
            color: var(--text-dark);
            line-height: 1.8;
            margin-bottom: 35px;
            text-align: center;
            font-weight: 400;
            position: relative;
            z-index: 1;
        }

        .testimonial .author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            padding-top: 30px;
            border-top: 2px solid var(--light-gray);
        }

        .testimonial .author-image {
            position: relative;
        }

        .testimonial .author img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 4px solid var(--gold-primary);
            object-fit: cover;
            transition: transform var(--transition-base);
            box-shadow: var(--shadow-md);
        }

        .testimonial .author-image::after {
            content: '✓';
            position: absolute;
            bottom: 2px;
            right: 2px;
            width: 26px;
            height: 26px;
            background: var(--gold-dark);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
            border: 3px solid var(--white);
        }

        .testimonial .author-info {
            text-align: left;
        }

        .testimonial .author h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--dark-primary);
            margin-bottom: 5px;
        }

        .testimonial .author span {
            font-size: 0.9rem;
            color: var(--text-gray);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .testimonial .author span i {
            font-size: 0.8rem;
        }

        /* ==================== CONTROLES ==================== */
        .carousel-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 50px;
        }

        .carousel-controls button {
            background: var(--white);
            border: 2px solid var(--gold-primary);
            color: var(--dark-primary);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            transition: all var(--transition-base);
            font-size: 18px;
            box-shadow: var(--shadow-md);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-controls button:hover {
            background: var(--dark-primary);
            color: var(--white);
            transform: scale(1.1);
            box-shadow: var(--shadow-lg);
            border-color: var(--dark-primary);
        }

        .carousel-controls button:active {
            transform: scale(0.95);
        }

        /* Indicadores */
        .carousel-indicators {
            display: flex;
            gap: 10px;
            justify-content: center;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--dark-primary);
            cursor: pointer;
            transition: all var(--transition-base);
            border: 2px solid transparent;
        }

        .indicator.active {
            background: var(--light-gray);
            transform: scale(1.3);
        }

        .indicator:hover {
            background: var(--light-gray);
        }

        /* ==================== ANIMAÇÕES ==================== */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes starPop {
            from {
                opacity: 0;
                transform: scale(0);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* ==================== RESPONSIVO ==================== */
        @media (max-width: 768px) {
            .section.depoimentos {
                padding: 80px 0;
            }

            .section.depoimentos .section-header h2 {
                font-size: 2rem;
            }

            .testimonial {
                padding: 40px 30px;
            }

            .testimonial .quote {
                font-size: 1.1rem;
            }

            .testimonial .author {
                flex-direction: column;
                text-align: center;
            }

            .testimonial .author-info {
                text-align: center;
            }

            .carousel-controls button {
                width: 45px;
                height: 45px;
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .section.depoimentos .section-header h2 {
                font-size: 1.7rem;
            }

            .section.depoimentos .section-header p {
                font-size: 0.95rem;
            }

            .testimonial {
                padding: 35px 25px;
            }

            .testimonial .quote {
                font-size: 1rem;
            }

            .testimonial .author img {
                width: 70px;
                height: 70px;
            }

            .carousel-controls button {
                width: 40px;
                height: 40px;
            }
        }

        /* ==================== SEÇÃO DE LOGOS ==================== */
        .logos-section {
            background: var(--white);
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

        .logos-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                #EBD38B 50%, 
                transparent 100%);
        }

        .logos-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                #EBD38B 50%, 
                transparent 100%);
        }

        .logos-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logos-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 60px;
            align-items: center;
            justify-items: center;
        }

        .logo-item {
            position: relative;
            width: 100%;
            max-width: 200px;
            aspect-ratio: 16/9;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--white);
            border-radius: 16px;
            padding: 30px;
            transition: all var(--transition-base);
            cursor: pointer;
            border: 1px solid transparent;
        }

        .logo-item::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 16px;
            padding: 2px;
            background: linear-gradient(135deg, #FFF6D0, #EBD38B);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity var(--transition-base);
        }

        .logo-item:hover::before {
            opacity: 1;
        }

        .logo-item:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .logo-item img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: grayscale(100%) opacity(0.6);
            transition: all var(--transition-base);
        }

        .logo-item:hover img {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.05);
        }

        /* Animação de entrada */
        .logo-item {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }

        .logo-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .logo-item:nth-child(2) {
            animation-delay: 0.2s;
        }

        .logo-item:nth-child(3) {
            animation-delay: 0.3s;
        }

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

        /* Efeito de brilho sutil */
        .logo-item::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 16px;
            background: linear-gradient(
                135deg,
                transparent 0%,
                rgba(255, 246, 208, 0.15) 50%,
                transparent 100%
            );
            opacity: 0;
            transition: opacity var(--transition-base);
        }

        .logo-item:hover::after {
            opacity: 1;
        }

        /* ==================== RESPONSIVO ==================== */
        @media (max-width: 768px) {
            .logos-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }

            .logo-item:last-child {
                grid-column: 1 / -1;
                max-width: 250px;
            }
        }

        @media (max-width: 480px) {
            .logos-section {
                padding: 50px 0;
            }

            .logos-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .logo-item:last-child {
                grid-column: auto;
            }

            .logo-item {
                max-width: 180px;
            }
        }