 
        /* Reset e configurações gerais */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            text-decoration: none;
        }

        :root {
            --primary-dark: #0a2540; /* Azul petróleo */
            --primary-black: #121212;
            --primary-gray: #2d3748;
            --accent-blue: #0066cc;
            --accent-light: #e6f2ff;
            --text-dark: #1a202c;
            --text-light: #718096;
            --white: #ffffff;
            --off-white: #f7fafc;
            --border-color: #e2e8f0;
            --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.05);
            --shadow-medium: 0 10px 15px rgba(0, 0, 0, 0.07);
            --shadow-heavy: 0 20px 25px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--white);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        h1 {
            font-size: 2.8rem;
        }

        h2 {
            font-size: 2.2rem;
            position: relative;
            padding-bottom: 0.8rem;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: var(--accent-blue);
        }

        h3 {
            font-size: 1.5rem;
        }

        p {
            margin-bottom: 1rem;
            color: var(--text-light);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        section {
            padding: 5rem 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h2 {
            margin-bottom: 1rem;
        }

        .section-header h2::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .btn {
            display: inline-block;
            padding: 0.9rem 2rem;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            font-size: 1rem;
        }

        .btn-primary {
            background-color: var(--accent-blue);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: #0052a3;
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--accent-blue);
            border: 2px solid var(--accent-blue);
        }

        .btn-secondary:hover {
            background-color: var(--accent-blue);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }

        .btn-large {
            padding: 1.2rem 2.5rem;
            font-size: 1.1rem;
        }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--white);
            box-shadow: var(--shadow-light);
            z-index: 1000;
            transition: var(--transition);
        }

        .navbar.scrolled {
            padding: 0.5rem 0;
        }

        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 1.5rem;
        }

        .logo {
            font-size: 1rem;
            font-weight: 800;
            color: var(--primary-dark);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 0.5rem;
            color: var(--accent-blue);
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-item {
            margin-left: 2rem;
        }

        .nav-link {
            text-decoration: none;
            color: var(--primary-gray);
            font-weight: 500;
            transition: var(--transition);
        }

        .nav-link:hover {
            color: var(--accent-blue);
        }

        .nav-cta {
            background-color: var(--accent-blue);
            color: var(--white);
            padding: 0.6rem 1.5rem;
            border-radius: 4px;
            font-weight: 600;
        }

        .nav-cta:hover {
            background-color: #0052a3;
            color: var(--white);
        }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--primary-dark);
        }

        /* Hero Section */
        .hero {
            padding-top: 10rem;
            padding-bottom: 5rem;
            background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(45deg, var(--primary-dark) 0%, #1a365d 100%);
            clip-path: polygon(100% 0, 100% 100%, 0 100%, 30% 0);
            z-index: 0;
        }

        .hero-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            flex: 1;
            max-width: 600px;
        }

        .hero-content h1 {
            color: var(--primary-dark);
            margin-bottom: 1.5rem;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .hero-image {
            flex: 1;
            max-width: 450px;
            position: relative;
        }

        .hero-image img {
            width: 100%;
            border-radius: 8px;
            box-shadow: var(--shadow-heavy);
        }

        /* Card de informação - Design limpo e moderno */
.info-card {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    color: #1a1a1a;
    padding: 28px 32px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.1),
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.9);
    opacity: 0;
    animation: cardSlideIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: 0.4s;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

@keyframes cardSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

/* Linha decorativa superior */
.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #0066cc 20%, 
        #0066cc 80%, 
        transparent 100%);
    border-radius: 2px;
    animation: lineExpand 0.8s ease-out forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

@keyframes lineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 80px;
        opacity: 1;
    }
}

/* Título principal */
.info-card h1 {
    font-size: 32px;
    margin: 0 0 12px 0;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    opacity: 0;
    animation: textReveal 0.5s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cargo */
.info-card p:nth-of-type(1) {
    font-size: 17px;
    color: #0066cc;
    font-weight: 600;
    letter-spacing: 1.2px;
    margin: 0 0 24px 0;
    text-transform: uppercase;
    opacity: 0;
    animation: textReveal 0.5s ease-out forwards;
    animation-delay: 0.6s;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.info-card p:nth-of-type(1)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: rgba(0, 102, 204, 0.2);
    border-radius: 1px;
    animation: lineExpand 0.5s ease-out forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

/* Descrição */
.info-card p:nth-of-type(2) {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
    opacity: 0;
    animation: textReveal 0.5s ease-out forwards;
    animation-delay: 0.7s;
    padding: 20px;
    background: rgba(0, 102, 204, 0.03);
    border-radius: 12px;
    border-left: 3px solid #0066cc;
    backdrop-filter: blur(4px);
}

/* Badge de experiência */
.experience-tag {
    position: absolute;
    top: -12px;
    right: 25px;
    background: linear-gradient(135deg, #0066cc, #3385ff);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 
        0 6px 20px rgba(0, 102, 204, 0.25),
        0 0 0 2px rgba(255, 255, 255, 0.3);
    z-index: 3;
    opacity: 0;
    animation: badgeFloat 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: 0.9s;
    transform: translateY(10px);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

@keyframes badgeFloat {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.experience-tag::before {
    content: '✓';
    font-weight: bold;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.2);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Efeito de hover refinado */
.info-card:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.15),
        0 6px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.95),
        0 0 40px rgba(0, 102, 204, 0.1);
    transform: translateX(-50%) translateY(-5px);
}

/* Efeito de brilho sutil */
.info-card::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    border-radius: 19px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover::after {
    opacity: 1;
}

/* Elementos decorativos nos cantos */
.info-card .corner-decoration {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid rgba(0, 102, 204, 0.1);
    opacity: 0;
    animation: cornerFadeIn 0.5s ease-out forwards;
    animation-delay: 1s;
}

.info-card .corner-top-left {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
    border-radius: 4px 0 0 0;
}

.info-card .corner-top-right {
    top: 15px;
    right: 15px;
    border-left: none;
    border-bottom: none;
    border-radius: 0 4px 0 0;
}

.info-card .corner-bottom-left {
    bottom: 15px;
    left: 15px;
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 4px;
}

.info-card .corner-bottom-right {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 4px 0;
}

@keyframes cornerFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .info-card {
        width: 90%;
        padding: 24px 20px;
        bottom: 30px;
    }
    
    .info-card h1 {
        font-size: 26px;
    }
    
    .info-card p:nth-of-type(1) {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .info-card p:nth-of-type(2) {
        font-size: 15px;
        padding: 16px;
    }
    
    .experience-tag {
        right: 20px;
        padding: 6px 16px;
        font-size: 13px;
        top: -10px;
    }
}

        
       .badge-pro {
    display: inline-block;
    background: linear-gradient(135deg, #b30000, #ff4d4d);
    color: #ffffff;
    padding: 0.75rem 1.6rem;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    box-shadow: 0 8px 25px rgba(255, 77, 77, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    animation: pulseWarning 1.4s infinite ease-in-out;
}

.badge-pro .badge-num {
    font-weight: 900;
    font-size: 1.15rem;
    text-decoration: underline;
}

/* Animação de alerta */
@keyframes pulseWarning {
    0% { transform: scale(1); box-shadow: 0 0 0 rgba(255, 0, 0, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 0 25px rgba(255, 0, 0, 0.55); }
    100% { transform: scale(1); box-shadow: 0 0 0 rgba(255, 0, 0, 0.5); }
}

        /* Sobre o Treinamento */
        .about {
            background-color: var(--off-white);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-details {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .detail-item {
            background-color: var(--white);
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: var(--shadow-light);
            transition: var(--transition);
        }

        .detail-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .detail-item i {
            font-size: 1.8rem;
            color: var(--accent-blue);
            margin-bottom: 1rem;
        }

        /* Planos e Preços */
        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .pricing-card {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow-medium);
            transition: var(--transition);
            position: relative;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }

        .pricing-card.popular {
            border: 2px solid var(--accent-blue);
        }

        .popular-tag {
            position: absolute;
            top: 0;
            right: 0;
            background-color: var(--accent-blue);
            color: var(--white);
            padding: 0.5rem 1.5rem;
            font-size: 0.8rem;
            font-weight: 600;
            border-radius: 0 0 0 8px;
        }

        .pricing-header {
            padding: 2rem;
            background-color: var(--primary-dark);
            color: var(--white);
            text-align: center;
        }

        .pricing-header h3 {
            color: var(--white);
        }

        .price {
            font-size: 2.5rem;
            font-weight: 800;
            margin: 1rem 0;
        }

        .pricing-body {
            padding: 2rem;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .pricing-features li {
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: center;
        }

        .pricing-features li i {
            color: var(--accent-blue);
            margin-right: 0.8rem;
        }

        .pricing-footer {
            padding: 0 2rem 2rem;
            text-align: center;
        }

        /* Benefícios */
        .benefits {
            background-color: var(--off-white);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .benefit-item {
            text-align: center;
            padding: 2rem 1.5rem;
            background-color: var(--white);
            border-radius: 8px;
            box-shadow: var(--shadow-light);
            transition: var(--transition);
        }

        .benefit-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .benefit-item i {
            font-size: 2.5rem;
            color: var(--accent-blue);
            margin-bottom: 1.5rem;
        }

        /* Seção Melhor Aluno */
        .best-student {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #1a365d 100%);
            color: var(--white);
            text-align: center;
        }

        .best-student h2 {
            color: var(--white);
        }

        .best-student h2::after {
            background-color: var(--accent-blue);
        }

        .best-student p {
            color: rgba(255, 255, 255, 0.8);
            max-width: 800px;
            margin: 0 auto 2rem;
            font-size: 1.2rem;
        }

        /* Depoimentos */
       .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    flex-shrink: 0;
    border: 2px solid var(--accent-blue);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    margin-bottom: 0.3rem;
}

.testimonial-info p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}


        /* Empresas Parceiras */
        .partners {
    background-color: #f9fafb;
    padding: 3rem 2rem;
}

.partners-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.partner-logo {
    width: 140px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: white;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    cursor: default;
}

/* Cores personalizadas */
.partner-logo.deriv {
    background: linear-gradient(135deg, #d32f2f, #ff5252);
}

.partner-logo.netzage {
    background: linear-gradient(135deg, #111111, #333333);
}

.partner-logo.tech {
    background: linear-gradient(135deg, #0288d1, #26c6da);
}

.partner-logo.marketing {
    background: linear-gradient(135deg, #ff9800, #ffc107);
}

.partner-logo.growth {
    background: linear-gradient(135deg, #43a047, #66bb6a);
}

/* Hover animation */
.partner-logo:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* Animação suave de entrada */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.partner-logo {
    animation: fadeInUp 0.8s ease forwards;
}

.partner-logo:nth-child(1) { animation-delay: 0.1s; }
.partner-logo:nth-child(2) { animation-delay: 0.2s; }
.partner-logo:nth-child(3) { animation-delay: 0.3s; }
.partner-logo:nth-child(4) { animation-delay: 0.4s; }
.partner-logo:nth-child(5) { animation-delay: 0.5s; }


        /* FAQ */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 1rem;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow-light);
        }

        .faq-question {
            padding: 1.5rem;
            background-color: var(--white);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
        }

        .faq-question i {
            transition: var(--transition);
        }

        .faq-answer {
            padding: 0 1.5rem;
            background-color: var(--white);
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
            border-top: 1px solid transparent;
        }

        .faq-item.active .faq-answer {
            padding: 1.5rem;
            max-height: 500px;
            border-top-color: var(--border-color);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* Footer */
        .footer {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 4rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-logo {
            font-size: 1.2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            display: block;
            color: var(--off-white);
        }

        .footer-links h4 {
            color: var(--white);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--white);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        /* Responsividade */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.3rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .hero::before {
                width: 100%;
                clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 30%);
                opacity: 0.8;
            }
            
            .hero-container {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-content {
                margin-bottom: 3rem;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .pricing-cards {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }
            
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                flex-direction: column;
                background-color: var(--white);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: var(--shadow-medium);
                padding: 2rem 0;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-item {
                margin: 1.5rem 0;
            }
            
            .hamburger {
                display: block;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.6rem;
            }
            
            section {
                padding: 3rem 0;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }
            
            .about-details {
                grid-template-columns: 1fr;
            }
            
            .partners-logos {
                flex-direction: column;
            }
        }
 


        /* Botão WhatsApp - Design Profissional */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 
        0 8px 25px rgba(37, 211, 102, 0.3),
        0 4px 15px rgba(18, 140, 126, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: floatWhatsApp 3s ease-in-out infinite;
    overflow: hidden;
}

/* Animação de flutuação */
@keyframes floatWhatsApp {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        box-shadow: 
            0 8px 25px rgba(37, 211, 102, 0.3),
            0 4px 15px rgba(18, 140, 126, 0.2),
            inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
        box-shadow: 
            0 15px 35px rgba(37, 211, 102, 0.4),
            0 8px 25px rgba(18, 140, 126, 0.3),
            inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    }
}

/* Efeito de brilho interno */
.whatsapp-button::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.whatsapp-button:hover::before {
    opacity: 1;
}

/* Ícone */
.whatsapp-button i {
    font-size: 28px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Efeitos de hover */
.whatsapp-button:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 35px rgba(37, 211, 102, 0.5),
        0 8px 25px rgba(18, 140, 126, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    animation-play-state: paused;
}

.whatsapp-button:hover i {
    transform: scale(1.1);
}

/* Tooltip de telefone */
.whatsapp-button .phone-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: rgba(18, 140, 126, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.whatsapp-button .phone-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: rgba(18, 140, 126, 0.95);
    transform: rotate(45deg);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-button:hover .phone-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* Efeito de pulso (opcional) */
.whatsapp-button .pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #25D366;
    border-radius: 50%;
    opacity: 0;
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Efeito de clique */
.whatsapp-button:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

/* Badge de notificação */
.whatsapp-button .notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #FF4081;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    color: white;
    box-shadow: 0 3px 10px rgba(255, 64, 129, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-button i {
        font-size: 26px;
    }
    
    .whatsapp-button .phone-tooltip {
        font-size: 13px;
        padding: 8px 14px;
        right: 65px;
    }
    
    .whatsapp-button:hover {
        transform: scale(1.05) rotate(3deg);
    }
}

/* Para telas muito pequenas */
@media (max-width: 480px) {
    .whatsapp-button {
        bottom: 15px;
        right: 15px;
        width: 52px;
        height: 52px;
    }
    
    .whatsapp-button i {
        font-size: 24px;
    }
    
    .whatsapp-button .phone-tooltip {
        display: none; /* Esconde tooltip em telas muito pequenas */
    }
}

/* Efeito de entrada */
@keyframes slideInWhatsApp {
    0% {
        opacity: 0;
        transform: translateX(100px) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.whatsapp-button {
    animation: 
        slideInWhatsApp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards,
        floatWhatsApp 3s ease-in-out infinite 0.6s;
}






























/* Estilos para os inputs do SweetAlert2 */
.swal2-input {
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    padding: 10px !important;
    margin: 10px auto !important;
    width: 90% !important;
}

.swal2-input:focus {
    border-color: #2980b9 !important;
    box-shadow: 0 0 0 0.2rem rgba(41, 128, 185, 0.25) !important;
}

/* Estilo para selects dentro do SweetAlert2 */
.swal2-input select {
    width: 100% !important;
    padding: 10px !important;
    border-radius: 4px !important;
    border: 1px solid #ddd !important;
}

/* Melhorar a aparência dos botões dos cards */
.pricing-footer .btn {
    transition: all 0.3s ease !important;
}

.pricing-footer .btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}