        :root {
            --primary: #98c01f;
            --primary-dark: #7da51a;
            --dark: #1a1a1a;
            --darker: #121212;
            --light: #ffffff;
            --gray: #f5f5f5;
            --text: #333;
            --whatsapp: #25d366;
            --whatsapp-dark: #128C7E;
        }

        * { 
            margin: 0; 
            padding: 0; 
            box-sizing: border-box; 
        }
        
        body { 
            font-family: 'Montserrat', 'Segoe UI', Tahoma, sans-serif; 
            background: var(--light); 
            color: var(--text); 
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
        }
        
        .container { 
            width: 90%; 
            max-width: 1200px; 
            margin: auto; 
        }
        
        .btn { 
            background: var(--primary); 
            color: var(--dark); 
            padding: 16px 32px; 
            border-radius: 50px; 
            font-weight: 700; 
            text-transform: uppercase; 
            display: inline-block; 
            transition: all 0.3s ease; 
            border: 2px solid var(--primary); 
            text-decoration: none; 
            font-size: 1rem;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(152, 192, 31, 0.3);
            text-align: center;
            cursor: pointer;
        }
        
        .btn:hover { 
            background: transparent; 
            color: var(--primary); 
            transform: translateY(-3px); 
            box-shadow: 0 6px 20px rgba(152, 192, 31, 0.4);
        }
        
        .btn-whatsapp { 
            background: var(--whatsapp); 
            border-color: var(--whatsapp); 
            color: white;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
        }
        
        .btn-whatsapp:hover { 
            background: transparent; 
            color: var(--whatsapp); 
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
        }
        
        .btn-large {
            padding: 18px 40px;
            font-size: 0.9rem;
        }
        
        .btn-block {
            display: block;
            width: 100%;
        }
        
        /* Header */
        header { 
            background: rgba(26, 26, 26, 0.95); 
            color: var(--light); 
            padding: 15px 0; 
            position: absolute; 
            width: 100%; 
            top: 0; 
            z-index: 1000; 
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.2);
            transition: all 0.4s ease;
        }
        
        .header-container { 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
        }
        
        .logo { 
            display: flex;
            align-items: center;
            height: 50px;
        }
        
        .logo img {
            height: 100%;
            width: auto;
            max-width: 300px;
        }
        
        nav ul { 
            display: flex; 
            list-style: none; 
        }
        
        nav ul li { 
            margin-left: 25px; 
        }
        
        nav ul li a { 
            color: var(--light); 
            text-decoration: none; 
            position: relative; 
            font-weight: 500;
            font-size: 1.05rem;
        }
        
        nav ul li a:hover { 
            color: var(--primary); 
        }
        
        nav ul li a::after { 
            content: ''; 
            position: absolute; 
            bottom: -5px; 
            left: 0; 
            width: 0; 
            height: 3px; 
            background: var(--primary); 
            transition: width 0.3s; 
        }
        
        nav ul li a:hover::after { 
            width: 100%; 
        }
        

        .btn-navbar {
            background: var(--primary);
            color: var(--dark);
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            border: 2px solid var(--primary);
            text-decoration: none;
            transition: 0.3s ease;
            margin-left: 25px;
            font-size: 0.95rem;
            box-shadow: 0 4px 10px rgba(152, 192, 31, 0.3);
        }
        
        .btn-navbar:hover {
            background: transparent;
            color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(152, 192, 31, 0.4);
        }
        
        /* Hero Section */
        .hero { 
            height: 100vh; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            text-align: center; 
            background: url(../img/Cover.png) center / cover;
            color: var(--light); 
            padding-top: 70px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .hero-content { 
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
            animation: fadeUp 1s ease-out;
        }
        
        .hero h1 { 
            font-size: 2.0rem; 
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 800;
        }
        
        .hero-subtitle {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: var(--primary);
            font-weight: 600;
        }
        
        .hero p { 
            margin: 25px 0 35px; 
            font-size: 1.3rem; 
            font-weight: 400;
        }
        
        .unidade-badge {
            display: inline-block;
            background: var(--primary);
            color: var(--dark);
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 700;
            margin-top: 15px;
            font-size: 1.1rem;
            box-shadow: 0 4px 10px rgba(152, 192, 31, 0.3);
        }
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 40px;
        }
        
        /* Benefits Section */
        .benefits {
            padding: 100px 0;
            background: var(--gray);
        }
        
        .section-title { 
            text-align: center; 
            margin-bottom: 60px; 
        }
        
        .section-title h2 { 
            font-size: 2.5rem; 
            display: inline-block; 
            padding-bottom: 10px;
            position: relative;
            margin-bottom: 20px;
        }
        
        .section-title h2::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .section-title p {
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .benefits-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
            gap: 30px; 
        }
        
        .benefit-card { 
            background: var(--light); 
            border-radius: 15px; 
            padding: 40px 25px; 
            text-align: center; 
            box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
            transition: transform 0.4s, box-shadow 0.4s; 
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        .benefit-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        
        .benefit-card:hover { 
            transform: translateY(-10px); 
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }
        
        .benefit-card:hover::before {
            transform: scaleX(1);
        }
        
        .benefit-card i { 
            font-size: 3.5rem; 
            color: var(--primary); 
            margin-bottom: 25px; 
            display: inline-block;
            transition: transform 0.3s ease;
        }
        
        .benefit-card:hover i {
            transform: scale(1.1);
        }
        
        .benefit-card h3 { 
            font-size: 1.5rem; 
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .benefit-card p { 
            color: #666; 
            font-size: 1.05rem;
        }
        
        /* VIP Section */
        .vip-section { 
            background: linear-gradient(135deg, var(--darker) 0%, #2a2a2a 100%);
            color: var(--light); 
            text-align: center;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .vip-section::before {
            content: "";
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: var(--whatsapp);
            border-radius: 50%;
            opacity: 0.08;
            z-index: 1;
        }
        
        .vip-section::after {
            content: "";
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 200px;
            height: 200px;
            background: var(--primary);
            border-radius: 50%;
            opacity: 0.08;
            z-index: 1;
        }
        
        .vip-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .vip-content h2 {
            font-size: 2.0rem;
            margin-bottom: 20px;
            color: var(--light);
        }
        
        .vip-content h2 i {
            color: var(--whatsapp);
            margin-right: 15px;
            vertical-align: middle;
        }
        
        .vip-content .highlight {
            color: var(--primary);
            font-weight: 700;
        }
        
        .vip-content p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            line-height: 1.7;
        }
        
        .vip-benefits {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            margin: 50px 0;
        }
        
        .vip-benefit {
            background: rgba(255,255,255,0.08);
            padding: 30px 20px;
            border-radius: 15px;
            width: 220px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.1);
            z-index: 2;
        }
        
        .vip-benefit::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: rgba(37, 211, 102, 0.15);
            transition: height 0.4s ease;
            z-index: -1;
        }
        
        .vip-benefit:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
            border-color: rgba(37, 211, 102, 0.3);
        }
        
        .vip-benefit:hover::before {
            height: 100%;
        }
        
        .vip-benefit i {
            color: var(--whatsapp);
            font-size: 2.5rem;
            margin-bottom: 20px;
            display: block;
        }
        
        .vip-benefit h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: var(--light);
        }
        
        .vip-benefit p {
            font-size: 1rem;
            margin: 0;
            color: #ddd;
        }
        
        .vip-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin: 40px 0;
            flex-wrap: wrap;
        }
        
        .stat-item {
            text-align: center;
            background: rgba(255,255,255,0.05);
            padding: 20px 30px;
            border-radius: 10px;
            min-width: 180px;
        }
        
        .stat-item i {
            font-size: 2.5rem;
            color: var(--whatsapp);
            margin-bottom: 15px;
        }
        
        .stat-item .number {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary);
            display: block;
            line-height: 1;
        }
        
        .stat-item .label {
            font-size: 1.1rem;
            color: #ddd;
        }
        
        .btn-vip {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: var(--whatsapp);
            color: white;
            padding: 18px 45px;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            margin: 30px 0 20px;
            transition: all 0.3s ease;
            border: 2px solid var(--whatsapp);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
            animation: pulse 2s infinite;
            cursor: pointer;
        }
        
        .btn-vip:hover {
            background: var(--whatsapp-dark);
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(37, 211, 102, 0.5);
            animation: none;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
            70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }
        
        .vip-note {
            font-size: 1rem;
            color: #aaa;
            margin-top: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .vip-note i {
            color: var(--primary);
        }
        
        /* Planos Section */
        .planos-section {
            padding: 100px 0;
            background: var(--light);
        }
        
        .planos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .plano-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            position: relative;
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        .plano-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .plano-header {
            background: var(--primary);
            color: var(--dark);
            padding: 25px 20px;
            text-align: center;
            position: relative;
        }
        
        .plano-header.recomendado {
            background: var(--whatsapp);
            color: white;
        }
        
        .plano-tag {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--whatsapp);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .plano-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .plano-preco {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 5px;
        }
        
        .plano-periodo {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .plano-body {
            padding: 30px;
        }
        
        .plano-beneficios {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .plano-beneficios li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
        }
        
        .plano-beneficios li:last-child {
            border-bottom: none;
        }
        
        .plano-beneficios i {
            margin-right: 10px;
            font-size: 1.1rem;
        }
        
        .plano-beneficios .fa-check {
            color: var(--primary);
        }
        
        .plano-beneficios .fa-times {
            color: #ccc;
        }
        
        /* Modalidades Section */
        .modalidades-section {
            padding: 80px 0;
            background: var(--gray);
        }
        
        .modalidades-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .modalidade-item {
            background: white;
            border-radius: 10px;
            padding: 25px 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .modalidade-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .modalidade-item i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
            display: block;
        }
        
        .modalidade-item h3 {
            font-size: 1.2rem;
            margin-bottom: 0;
        }
        
        /* Footer Corrigido */
        footer { 
            background: var(--darker); 
            color: var(--light); 
            padding: 80px 0 30px; 
        }
        
        .footer-container { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
            gap: 40px; 
            margin-bottom: 40px; 
        }
        
        .footer-section { 
            padding: 0 15px;
        }
        
        .footer-section h3 { 
            color: var(--primary); 
            margin-bottom: 25px; 
            font-size: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-section h3::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
        }
        
        .footer-section p, .footer-section a {
            color: #ddd;
            margin-bottom: 15px;
            display: block;
            transition: color 0.3s ease;
            text-decoration: none;
            font-size: 1.05rem;
        }
        
        .footer-section a:hover {
            color: var(--primary);
        }
        
        .footer-section i {
            width: 25px;
            color: var(--primary);
            margin-right: 10px;
        }
        
        .social-icons { 
            display: flex; 
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a { 
            background: #333; 
            color: white; 
            border-radius: 50%; 
            width: 45px; 
            height: 45px; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            transition: 0.3s; 
            text-decoration: none;
            font-size: 1.2rem;
        }
        
        .social-icons a:hover { 
            background: var(--primary); 
            transform: translateY(-5px);
        }
        
        .copyright { 
            font-size: 1rem; 
            opacity: 0.7; 
            text-align: center; 
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 30px;
        }
        
        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-top: 10px;
        }

        .stat-item-footer {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: rgba(255,255,255,0.05);
            border-radius: 8px;
            border-left: 4px solid var(--primary);
            transition: all 0.3s ease;
        }

        .stat-item-footer:hover {
            background: rgba(152, 192, 31, 0.1);
            transform: translateX(5px);
        }

        .stat-item-footer i {
            font-size: 1.8rem;
            color: var(--primary);
            width: 40px;
            text-align: center;
        }

        .stat-item-footer div {
            display: flex;
            flex-direction: column;
        }

        .stat-item-footer strong {
            font-size: 1.5rem;
            color: var(--light);
            line-height: 1;
        }

        .stat-item-footer span {
            font-size: 0.9rem;
            color: #ddd;
            margin-top: 5px;
        }
        
        .footer-cta {
            background: rgba(255,255,255,0.05);
            border-radius: 10px;
            padding: 25px;
            margin-top: 25px;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        .footer-cta p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        /* WhatsApp */
        .whatsapp-btn { 
            position: fixed; 
            bottom: 30px; 
            right: 30px; 
            background: var(--whatsapp); 
            color: white; 
            font-size: 2rem; 
            width: 70px; 
            height: 70px; 
            border-radius: 50%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            transition: 0.3s; 
            z-index: 999;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
            animation: pulse 2s infinite;
        }
        
        .whatsapp-btn:hover { 
            transform: scale(1.1); 
            box-shadow: 0 0 25px rgba(37, 211, 102, 0.7);
            animation: none;
        }
        
        /* Responsividade */
        @media (max-width: 992px) {
            .hero h1 { 
                font-size: 2.8rem; 
            }
            
            .vip-content h2 {
                font-size: 2.3rem;
            }
        }
        
        @media (max-width: 768px) {
            nav ul { 
                display: none; 
            }
            .logo img {
                      
                height: 60%;
                width: auto;
                max-width: 129px;
            }
            
            .hero {
                margin-top: 80px;
                height: 55vh;
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
                background: url(../img/CoverM.png) center / cover;
                padding-top: 70px;
                position: relative;
                overflow: hidden;
            }
            
            .hero h1 { 
                font-size: 2.3rem; 
            }
            
            .hero-subtitle {
                font-size: 1.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .vip-content h2 {
                font-size: 2rem;
            }
            
            .vip-benefit {
                width: 100%;
                max-width: 300px;
            }
            
            .stat-item {
                min-width: 140px;
                padding: 15px 20px;
            }
            
            .stat-item .number {
                font-size: 1.8rem;
            }
            
            .planos-grid {
                grid-template-columns: 1fr;
            }
            
            .modalidades-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer-section {
                text-align: center;
            }
            
            .footer-section h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .social-icons {
                justify-content: center;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 { 
                font-size: 2rem; 
            }
            
            .hero-subtitle {
                font-size: 1.3rem;
            }
            
            .btn {
                width: 100%;
                max-width: 280px;
                margin: 10px auto;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .stat-item {
                width: 100%;
                max-width: 250px;
            }
            
            .btn-vip {
                width: 90%;
                max-width: 280px;
                margin: 20px auto;
                padding: 16px 25px;
                font-size: 1.1rem;
            }
            
            .modalidades-grid {
                grid-template-columns: 1fr;
            }
            
            footer {
                padding: 60px 0 20px;
            }
            
            .footer-container {
                gap: 25px;
            }
            
            .footer-section h3 {
                font-size: 1.3rem;
            }
        }
        
        /* Animações */
        @keyframes fadeUp {
            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);
        }
/* --- GRID IGUAL AOS BENEFÍCIOS --- */
.vip-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

/* --- CARD NO MESMO PADRÃO DOS BENEFÍCIOS --- */
.vip-benefit {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vip-benefit:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* --- ÍCONES NO FORMATO DOS OUTROS CARDS --- */
.vip-benefit i {
    font-size: 36px;
    margin-bottom: 12px;
    color: #e30613; /* Mesma cor usada nos cards principais */
}

/* --- TÍTULO --- */
.vip-benefit h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* --- TEXTO --- */
.vip-benefit p {
    font-size: 15px;
    color: #555;
}
/* ====================================
   SEÇÃO BENEFÍCIOS (services)
==================================== */
.services {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 60px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card i {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-card p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* ====================================
   SEÇÃO SOBRE A UNIDADE (features)
==================================== */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(152, 192, 31, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(152, 192, 31, 0.05) 0%, transparent 50%);
}

.features .container {
    position: relative;
    z-index: 1;
}

.features .section-title {
    color: var(--light) !important;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.features .container > p {
    color: #ccc;
    text-align: center;
    max-width: 800px;
    margin: 30px auto 50px;
    font-size: 1.2rem;
    line-height: 1.7;
    padding: 0 20px;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 35px 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(152, 192, 31, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(152, 192, 31, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.feature-icon i {
    color: #fff;
    font-size: 1.5rem;
}

.feature-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.feature-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.feature-content p {
    color: #ddd;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* ====================================
   BOTÃO VIP
==================================== */
.features .btn-vip-container {
    text-align: center;
    margin-top: 60px;
}

.btn-vip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--primary);
    color: #1a1a1a;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(152, 192, 31, 0.3);
    animation: pulse 2s infinite;
    cursor: pointer;
    letter-spacing: 1px;
}

.btn-vip:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(152, 192, 31, 0.4);
    animation: none;
}

.vip-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    color: #aaa;
    font-size: 1rem;
}

.vip-note i {
    color: var(--primary);
    font-size: 1.1rem;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(152, 192, 31, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(152, 192, 31, 0); }
    100% { box-shadow: 0 0 0 0 rgba(152, 192, 31, 0); }
}

/* ====================================
   RESPONSIVIDADE
==================================== */
@media (max-width: 992px) {
    .services-grid,
    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .services .section-title,
    .features .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .btn-navbar {
    background: var(--primary);
    color: var(--dark);
    padding: 5px 5px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid var(--primary);
    text-decoration: none;
    transition: 0.3s 
ease;
    margin-left: 25px;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(152, 192, 31, 0.3);
}
    .services {
        padding: 60px 0;
    }
    
    .features {
        padding: 80px 0;
    }
    
    .services .section-title,
    .features .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .services .container > p,
    .features .container > p {
        font-size: 1.1rem;
        margin: 20px auto 40px;
    }
    
    .service-card,
    .feature-item {
        padding: 30px 20px;
    }
    
    .service-card i {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    
    .service-card h3,
    .feature-content h3 {
        font-size: 1.3rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 1.3rem;
    }
    
    .btn-vip {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .services-grid,
    .features-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services .section-title,
    .features .section-title {
        font-size: 1.6rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .feature-content h3 {
        text-align: center;
    }
    
    .feature-content p {
        text-align: center;
    }
    
    .btn-vip {
        width: 100%;
        max-width: 280px;
        padding: 16px 25px;
    }
    
    .vip-note {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}

/* ====================================
   ANIMAÇÕES
==================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.feature-item {
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-card:nth-child(2),
.feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3),
.feature-item:nth-child(3) {
    animation-delay: 0.4s;
}
