:root {
            --primary-color: #6a11cb;
            --secondary-color: #2575fc;
            --text-light: #fff;
            --bg-light: #f8f9fa;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--bg-light);
        }
        
        /* Seção de Depoimentos */
        .depoimentos-section {
            padding: 60px 20px;
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-title {
            font-size: 2.2rem;
            margin-bottom: 15px;
            font-weight: 700;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .section-subtitle {
            font-size: 1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* Container de Videos */
        .videos-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            padding: 20px 0;
        }
        
        /* Item de Video */
        .video-item {
            width: 100%;
            max-width: 400px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
            background: #fff;
        }
        
        .video-wrapper {
            position: relative;
            width: 100%;
            padding-top: 177.78%; /* Proporção 16:9 */
        }
        
        .video-wrapper video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .video-info {
            padding: 20px;
            background: white;
        }
        
        .user-info {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 10px;
            object-fit: cover;
        }
        
        .user-name {
            font-weight: 600;
            color: #333;
        }
        
        .video-message {
            color: #666;
            line-height: 1.5;
        }
        
        /* Responsivo */
        @media (max-width: 768px) {
            .depoimentos-section {
                padding: 40px 15px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .videos-container {
                gap: 20px;
            }
            
            .video-item {
                max-width: 100%;
            }
        }

        
        /* Efeito de fundo decorativo */
        .bg-blur {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.15;
            z-index: 1;
        }
        
        .bg-1 {
            background: var(--primary-color);
            top: 10%;
            left: 5%;
        }
        
        .bg-2 {
            background: var(--secondary-color);
            bottom: 10%;
            right: 5%;
        }

.hidden-field {
    display: none !important;
}
.alerta-golpes {
  background-color: #fff4e5;
  border: 1px solid #ffc107;
  color: #8a4b00;
  padding: 20px;
  text-align: center;
  font-size: 0.95rem;
  margin-bottom: 40px;
  border-radius: 8px;
}

.alerta-golpes p {
  margin: 0;
  line-height: 1.6;
}

.alerta-golpes strong {
  font-weight: 600;
}

 /* Estilos específicos para esta seção (não conflitam com existentes) */
        .fd-video-section {
            padding: 80px 20px;
            background: white;
            position: relative;
        }
        
        .fd-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }
        
        .fd-video-container {
            flex: 1;
            min-width: 300px;
            position: relative;
        }
        
        .fd-video-frame {
            width: 100%;
            padding-bottom: 177.78%; /* Proporção 9:16 (vertical) */
            position: relative;
            border-radius: 20px;
            overflow: hidden;
          
        }
        
        .fd-video-frame:before {
            content: '';
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 25px;
            background-color: #1e1e2c;
            border-radius: 0 0 20px 20px;
            z-index: 2;
        }
        
        .fd-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .fd-content {
            flex: 1;
            min-width: 300px;
        }
        
        .fd-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1e1e2c;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .fd-title span {
            color: #6a11cb;
        }
        
        .fd-subtitle {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        .fd-features {
            margin-bottom: 40px;
        }
        
        .fd-feature {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .fd-feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #6a11cb, #2575fc);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            flex-shrink: 0;
        }
        
        .fd-feature-text h3 {
            font-size: 1.2rem;
            color: #1e1e2c;
            margin-bottom: 5px;
        }
        
        .fd-feature-text p {
            color: #666;
            font-size: 1rem;
            line-height: 1.5;
        }
        
          /* Mantendo as cores originais */
    .fd-cta {
        display: inline-block;
        background: linear-gradient(135deg, #6a11cb, #2575fc);
        color: white;
        padding: 16px 40px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s;
        box-shadow: 0 5px 20px rgba(106, 17, 203, 0.3);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    /* Efeito pulsante */
    .fd-cta.pulse {
        animation: pulse-animation 2s infinite;
    }

    @keyframes pulse-animation {
        0% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
        }
        70% {
            transform: scale(1.05);
            box-shadow: 0 0 0 15px rgba(59, 130, 246, 0);
        }
        100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
        }
    }

    /* Efeito hover adicional */
    .fd-cta:hover {
        animation: none; /* Remove a pulsação no hover */
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 25px rgba(106, 17, 203, 0.6);
    }

    /* Efeito de brilho ao clicar */
    .fd-cta:active {
        transform: scale(0.98);
    }

    /* Efeito de onda ao clicar */
    .fd-cta::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 5px;
        height: 5px;
        background: rgba(255, 255, 255, 0.5);
        opacity: 0;
        border-radius: 100%;
        transform: scale(1, 1) translate(-50%, -50%);
        transform-origin: 50% 50%;
        z-index: -1;
    }

    .fd-cta:focus:not(:active)::after {
        animation: ripple 1s ease-out;
    }

    @keyframes ripple {
        0% {
            transform: scale(0, 0);
            opacity: 0.5;
        }
        100% {
            transform: scale(20, 20);
            opacity: 0;
        }
    }
        
        @media (max-width: 768px) {
            .fd-title {
                font-size: 1.5rem;
            }
            
            .fd-subtitle {
                font-size: 1.1rem;
            }
            
            .fd-video-frame {
                border-width: 8px;
            }
        }

/* Novos estilos (não modifica os existentes) */
.security-badge {
    text-align: center;
    margin: 10px 0 15px;
    font-size: 13px;
    color: #666;
}

.security-badge img {
    display: block;
    margin: 0 auto 5px;
    max-width: 120px;
}

.attention-notice {
    background: #fff8e6;
    padding: 8px;
    text-align: center;
    font-size: 13px;
    margin: 10px 0;
    border-radius: 4px;
    border-left: 3px solid #ff9800;
}

.attention-notice i {
    color: #ff9800;
    margin-right: 5px;
}

.footer-badge {
    text-align: center;
    margin-top: 15px;
    opacity: 0.7;
}

.footer-badge img {
    max-width: 80px;
}

.btn i {
    margin-right: 8px;
}
/* Destaque especial para plano grátis */
.free-plan {
    position: relative;
    border: 2px solid #4CAF50;
    overflow: hidden;
}

.free-plan::before {
    content: "TESTE GRÁTIS";
    position: absolute;
    top: 15px;
    right: -30px;
    background: #4CAF50;
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1;
}

.free-plan-banner {
    background: rgba(76, 175, 80, 0.1);
    border-top: 1px dashed #4CAF50;
    margin: 20px -30px -30px;
    padding: 15px;
    text-align: center;
    font-size: 0.9rem;
    color: #2E7D32;
}

.free-plan-banner i {
    color: #4CAF50;
    margin-right: 8px;
    font-size: 1.2rem;
}

.free-plan-banner p {
    margin: 5px 0 0;
    color: #2E7D32 !important;
    font-style: italic;
    font-size: 0.85rem;
}

/* Animação sutil para chamar atenção */
@keyframes gentleGlow {
    0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4); }
    100% { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
}

.free-plan:hover {
    animation: gentleGlow 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.pulse {
    animation: pulse 1.5s infinite;
    background-color: #ff2d2d;
    color: #fff;
    font-weight: bold;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.pulse:hover {
    background-color: #e60000;
}


/* CSS */
.security-badges-section {
    background: #f8fafc;
    padding: 80px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.security-badges-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.security-badges-section .section-title {
    font-size: 2.2rem;
    color: #0d2b52;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.security-badges-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #4a9df8, #3b82f6);
    border-radius: 3px;
}

.security-badges-section .section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.badge-item {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.badge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.badge-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border-radius: 50%;
    color: #fff;
    font-size: 30px;
}

.badge-item h3 {
    font-size: 1.2rem;
    color: #0d2b52;
    margin-bottom: 12px;
    font-weight: 600;
}

.badge-item p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

.payment-methods {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
}

.payment-methods p {
    color: #64748b;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.payment-icons img {
    height: 30px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s;
}

.payment-icons img:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 768px) {
    .security-badges-section {
        padding: 60px 0;
    }

    .security-badges-section .section-title {
        font-size: 1.8rem;
    }

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

@media (max-width: 480px) {
    .badges-grid {
        grid-template-columns: 1fr;
    }

    .payment-icons {
        gap: 15px;
    }

    .payment-icons img {
        height: 25px;
    }
}

/* Footer - Estilo Atualizado */
.site-footer {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #ffffff;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/img/fd2.png') center/contain no-repeat;
    opacity: 0.03;
    z-index: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #3b82f6;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #3b82f6;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #3b82f6;
    padding-left: 5px;
}

.footer-links a i {
    margin-right: 10px;
    font-size: 0.9rem;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-contact i {
    margin-right: 12px;
    font-size: 1.1rem;
    color: #3b82f6;
    margin-top: 3px;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    margin-bottom: 20px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 0.9rem;
    outline: none;
}

.newsletter-button {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-button:hover {
    background: #2563eb;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-bottom a:hover {
    color: #3b82f6;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-title {
        margin-bottom: 20px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .site-footer {
        padding: 40px 0 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input,
    .newsletter-button {
        border-radius: 30px;
    }

    .newsletter-input {
        margin-bottom: 10px;
    }
}

    /* Cores principais */
    :root {
    --primary: #2563EB; /* Azul confiável */
    --primary-dark: #1D4ED8; /* Azul mais escuro */
    --secondary: #059669; /* Verde sucesso */
    --dark: #1F2937; /* Cinza escuro */
    --light: #F9FAFB; /* Cinza claro */
    --success: #10B981; /* Verde */
    --danger: #EF4444; /* Vermelho */
    --warning: #F59E0B; /* Amarelo */
    --info: #3B82F6; /* Azul info */
    --text: #374151; /* Cor do texto */
    --text-light: #6B7280; /* Texto claro */
    --border: #E5E7EB; /* Borda */
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

    /* Reset e estilos base */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    body {
        background-color: #fff;
        color: var(--text);
        line-height: 1.6;
        overflow-x: hidden;
    }

    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    section {
        padding: 80px 0;
    }

    h1, h2, h3, h4, h5, h6 {
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    p {
        margin-bottom: 15px;
        color: var(--text-light);
    }

    .btn {
        display: inline-block;
        background: linear-gradient(135deg, #6a11cb, #2575fc);
        color: white;
        padding: 15px 30px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        font-size: 16px;
        transition: all 0.3s;
        border: none;
        cursor: pointer;
        text-align: center;
        box-shadow: 0 5px 15px rgba(255, 62, 108, 0.3);
    }

    .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 62, 108, 0.4);
    }

    .btn-secondary {
        background: var(--secondary);
        box-shadow: 0 5px 15px rgba(0, 163, 255, 0.3);
    }

    .btn-secondary:hover {
        box-shadow: 0 8px 25px rgba(0, 163, 255, 0.4);
    }

    .btn-free {
        background: var(--success);
        box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
    }

    .btn-free:hover {
        background: #218838;
        box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    }

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

    .section-title {
        font-size: 2.5rem;
        color: var(--dark);
        position: relative;
        display: inline-block;
    }

    .section-title:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--gradient);
        border-radius: 2px;
    }

    .section-subtitle {
        font-size: 1.2rem;
        color: var(--text-light);
        max-width: 700px;
        margin: 0 auto;
    }

    /* Navbar */
    .nav-container {
        background-color: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
    }

    .logo {
        font-size: 24px;
        font-weight: 700;
        color: var(--primary);
        text-decoration: none;
        display: flex;
        align-items: center;
    }

    .logo img {
        height: 40px;
        margin-right: 10px;
    }

    .nav-links {
        display: flex;
        list-style: none;
    }

    .nav-links li {
        margin-left: 30px;
    }

    .nav-links a {
        color: var(--text);
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        transition: color 0.3s;
        position: relative;
    }

    .nav-links a:hover {
        color: var(--primary);
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        background: var(--primary);
        bottom: -5px;
        left: 0;
        transition: width 0.3s;
    }

    .nav-links a:hover::after {
        width: 100%;
    }

    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: var(--text);
    }

    /* Hero Section */
    /* Hero Section - Estilo Atualizado */
.hero-section {
    background: linear-gradient(135deg, #0d2b52 0%, #1a4b8c 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://i.ibb.co/DfvYpMLh/teste.png') no-repeat center right;
    background-size: contain;
    opacity: 0.15;
    z-index: 0;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-column {
    flex: 1;
    min-width: 300px;
}

.video-column {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.heading-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.heading-title span {
    color: #5d9cec;
    position: relative;
}

.heading-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(93, 156, 236, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.text-content {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-features {
    margin: 30px 0;
}

.hero-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.hero-feature i {
    color: #5d9cec;
    margin-right: 12px;
    font-size: 1.3rem;
}

.rating-container {
    display: flex;
    align-items: center;
    margin: 40px 0 30px;
}

.rating-stars {
    display: flex;
    margin-right: 10px;
}

.rating-star {
    color: #FFD700;
    margin-right: 3px;
}

.rating-text {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.action-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(to right, #4a9df8, #3b82f6);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.action-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
}

.action-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.action-button:hover::before {
    left: 100%;
}

.button-icon {
    margin-right: 10px;
    font-size: 1.1rem;
}

.video-placeholder {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.play-button:hover {
    transform: scale(1.1);
    background: white;
}

/* Responsividade */
@media (max-width: 992px) {
    .heading-title {
        font-size: 2.4rem;
    }

    .text-content {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
        text-align: center;
    }

    .hero-section::before {
        display: none;
    }

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

    .text-content {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-feature {
        margin-bottom: 0;
    }

    .rating-container {
        justify-content: center;
    }

    .video-column {
        margin-top: 40px;
    }
}

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

    .action-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }
}

    /* Countdown Banner */
    .countdown-banner {
        background: var(--gradient);
        color: white;
        padding: 15px;
        text-align: center;
        margin-bottom: 40px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(255, 62, 108, 0.3);
    }

    .countdown-banner p {
        color: white;
        font-weight: 600;
        margin-bottom: 0;
    }

    .countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.countdown-item {
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 5px;
    min-width: 80px;
}

    .countdown-number {
        font-size: 1.5rem;
        font-weight: 700;
    }

    .countdown-label {
        font-size: 0.8rem;
        opacity: 0.8;
    }

    /* Timer Fixo */
.fixed-timer {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #2563EB;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.timer-content {
    display: flex;
    align-items: center;
}

.timer-icon {
    margin-right: 10px;
}

.timer-digits {
    font-weight: bold;
    margin: 0 2px;
    font-family: monospace;
}

    /* Free Trial Section */
   /* Seção Teste Grátis - Estilo Atualizado */
.free-trial-section {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.free-trial-section::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.free-trial-section::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.free-trial-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.free-trial-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.free-trial-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.free-trial-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.free-trial-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 15px;
    width: calc(33.333% - 20px);
    min-width: 250px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.free-trial-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.free-trial-feature i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #5d9cec;
}

.free-trial-feature h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.free-trial-feature p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.btn.btn-free {
    background: linear-gradient(to right, #4a9df8, #3b82f6);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn.btn-free:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
}

.btn.btn-free::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn.btn-free:hover::before {
    left: 100%;
}

/* Responsividade */
@media (max-width: 768px) {
    .free-trial-title {
        font-size: 2rem;
    }

    .free-trial-subtitle {
        font-size: 1rem;
    }

    .free-trial-feature {
        width: 100%;
    }

    .btn.btn-free {
        padding: 14px 30px;
        font-size: 1rem;
    }
}
    /* Steps Section */
    .steps-section {
        background-color: #fff;
    }

    .steps-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .step-card {
        background: white;
        border-radius: 15px;
        padding: 40px 30px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        z-index: 1;
        border: 1px solid var(--border);
    }

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

    .step-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--gradient);
    }

    .step-number {
        display: inline-block;
        width: 60px;
        height: 60px;
        background: var(--gradient);
        color: white;
        font-size: 1.8rem;
        font-weight: 700;
        border-radius: 50%;
        line-height: 60px;
        margin-bottom: 25px;
        position: relative;
        z-index: 2;
    }

    .step-title {
        font-size: 1.5rem;
        color: var(--dark);
        margin-bottom: 15px;
    }

    .step-description {
        color: var(--text-light);
        font-size: 1rem;
    }

    /* Benefits Section */
    .benefits-section {
        background-color: #f8f9fa;
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .benefit-card {
        background: white;
        border-radius: 15px;
        padding: 40px 25px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(255, 62, 108, 0.1);
    }

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

    .benefit-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 62, 108, 0.1);
        border-radius: 50%;
        color: var(--primary);
        font-size: 30px;
    }

    .benefit-title {
        font-size: 1.4rem;
        color: var(--dark);
        margin-bottom: 15px;
    }

    .benefit-description {
        color: var(--text-light);
        font-size: 1rem;
        line-height: 1.6;
    }

    .benefit-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--gradient);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .benefit-card:hover::after {
        transform: scaleX(1);
    }

   .pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.3)" d="M0,0 L100,0 L100,100 L0,100 Z" /></svg>');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-header h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
    position: relative;
    display: inline-block;
}

.pricing-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    border-radius: 2px;
}

.pricing-header p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-header p strong {
    color: #2c3e50;
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-box {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 1;
}

.pricing-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.pricing-head {
    padding: 30px 20px;
    text-align: center;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.pricing-head::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.pricing-head h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-amount {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.currency {
    font-size: 1.4rem;
    margin-right: 5px;
    margin-top: 8px;
    font-weight: 500;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.pricing-head h5 {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 400;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

.pricing-body {
    padding: 30px 25px;
    background: white;
    position: relative;
}

.pricing-body::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: white;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.3;
}

.pricing-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-body li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
    padding-left: 10px;
}

.pricing-body li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, #6a11cb, #2575fc);
    transition: all 0.3s ease;
}

.pricing-box:hover .pricing-body li::before {
    height: 15px;
}

.pricing-body li i {
    margin-right: 12px;
    color: #2575fc;
    font-size: 1.2rem;
    min-width: 20px;
    text-align: center;
}

.button-payment {
    padding: 0 25px 30px;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 117, 252, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 117, 252, 0.4);
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.best-value-tag {
    position: absolute;
    top: 15px;
    right: -5px;
    background: #ff4757;
    color: white;
    padding: 5px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 3px 0 0 3px;
    box-shadow: -2px 2px 5px rgba(0,0,0,0.1);
    z-index: 2;
}

.best-value-tag::after {
    content: "";
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #cc3a47;
}

.popular-tag {
    position: absolute;
    top: 15px;
    right: -5px;
    background: #2ed573;
    color: white;
    padding: 5px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 3px 0 0 3px;
    box-shadow: -2px 2px 5px rgba(0,0,0,0.1);
    z-index: 2;
}

.popular-tag::after {
    content: "";
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #25b562;
}

/* Efeito de destaque para o plano mais vendido */
.pricing-box:nth-child(4) {
    transform: scale(1.05);
    z-index: 1;
}

.pricing-box:nth-child(4):hover {
    transform: scale(1.08) translateY(-10px);
}

.pricing-box:nth-child(4) .pricing-head {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%);
}

.pricing-box:nth-child(4) .btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.pricing-box:nth-child(4) .btn:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

/* Responsividade */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .pricing-box:nth-child(4) {
        transform: none;
    }
    
    .pricing-box:nth-child(4):hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .pricing-header h2 {
        font-size: 2.2rem;
    }
    
    .pricing-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-header h2 {
        font-size: 1.8rem;
    }
    
    .price {
        font-size: 3rem;
    }
}

/* Estilos para a mensagem de oferta relâmpago */
[style*="background-color: #fff3cd"] {
    background: linear-gradient(135deg, #fff9e6 0%, #ffe8a1 100%) !important;
    border: 1px solid #ffd351 !important;
    color: #856404 !important;
    padding: 15px 25px !important;
    border-radius: 10px !important;
    font-weight: bold !important;
    margin: 30px auto 20px !important;
    max-width: 600px !important;
    font-size: 1.1rem !important;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.2) !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    animation: pulseWarning 2s infinite !important;
}

[style*="background-color: #fff3cd"]::before {
    content: "";
    position: absolute !important;
    top: -10px;
    left: -10px;
    width: 20px;
    height: 20px;
    background: #ffc107;
    border-radius: 50%;
    opacity: 0.4;
}

[style*="background-color: #fff3cd"]::after {
    content: "";
    position: absolute !important;
    bottom: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background: #ffc107;
    border-radius: 50%;
    opacity: 0.2;
}

@keyframes pulseWarning {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
    }
    70% {
        transform: scale(1.01);
        box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

/* Estilos para o plano grátis (comentado) */
.free-plan {
    position: relative;
    border: 2px solid #4CAF50;
    overflow: hidden;
}

.free-plan::before {
    content: "TESTE GRÁTIS";
    position: absolute;
    top: 15px;
    right: -30px;
    background: #4CAF50;
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1;
}

.free-plan-banner {
    background: rgba(76, 175, 80, 0.1);
    border-top: 1px dashed #4CAF50;
    margin: 20px -30px -30px;
    padding: 15px;
    text-align: center;
    font-size: 0.9rem;
    color: #2E7D32;
}

.free-plan-banner i {
    color: #4CAF50;
    margin-right: 8px;
    font-size: 1.2rem;
}

.free-plan-banner p {
    margin: 5px 0 0;
    color: #2E7D32 !important;
    font-style: italic;
    font-size: 0.85rem;
}

@keyframes gentleGlow {
    0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4); }
    100% { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
}

.free-plan:hover {
    animation: gentleGlow 1.5s infinite;
}

    /* Testimonials */
    /* Seção de Depoimentos - Estilo Atualizado */
.testimonials-section {
    background: #f8fafc;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: url('https://i.ibb.co/0jQ7ZQ0/fama-digital-logo.png') center/contain no-repeat; */
    opacity: 0.03;
    z-index: 0;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

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

.testimonials-title {
    font-size: 2.5rem;
    color: #0d2b52;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.testimonials-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #4a9df8, #3b82f6);
    border-radius: 2px;
}

.testimonials-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(59, 130, 246, 0.1);
    font-family: serif;
    line-height: 1;
    z-index: 0;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    color: #475569;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid #e0e7ff;
}

.author-info h5 {
    font-size: 1.1rem;
    color: #0d2b52;
    margin-bottom: 5px;
    font-weight: 600;
}

.author-info p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0;
}

.testimonial-rating {
    color: #FFD700;
    margin-top: 5px;
    font-size: 0.9rem;
}

.testimonial-rating i {
    margin-right: 2px;
}

/* Efeito de destaque para o card central */
.testimonials-grid .testimonial-card:nth-child(2) {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0e7ff 100%);
    border-color: rgba(59, 130, 246, 0.3);
}

/* Responsividade */
@media (max-width: 992px) {
    .testimonials-title {
        font-size: 2.2rem;
    }

    .testimonials-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .testimonials-header {
        margin-bottom: 40px;
    }

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

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-author img {
        width: 50px;
        height: 50px;
    }
}

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

    .testimonials-title {
        font-size: 1.8rem;
    }

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

    .testimonials-grid .testimonial-card:nth-child(2) {
        background: white;
    }
}

    /* FAQ Section */
    .faq-section {
        background-color: #fff;
    }

    .faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-item {
        margin-bottom: 15px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        border: 1px solid var(--border);
    }

    .faq-question {
        width: 100%;
        padding: 20px;
        text-align: left;
        background-color: #fff;
        border: none;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s;
    }

    .faq-question:hover {
        background-color: #f9f9f9;
    }

    .faq-question span {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--dark);
    }

    .faq-question i {
        color: var(--primary);
        transition: transform 0.3s;
    }

    .faq-answer {
        background-color: #fff;
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .faq-answer div {
        padding: 0 0 20px;
    }

    .faq-answer p {
        color: var(--text-light);
        line-height: 1.6;
    }

    .faq-item.active .faq-question {
        background-color: #f9f9f9;
    }

    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }

    .faq-item.active .faq-answer {
        max-height: 500px;
        padding: 0 20px 20px;
    }

    /* CTA Section */
    .cta-section {
        background: var(--gradient);
        color: white;
        text-align: center;
        padding: 80px 0;
    }

    .cta-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: white;
    }

    .cta-subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
        opacity: 0.9;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    /* About Section */
    .about-section {
        max-width: 1000px;
        margin: 0 auto;
        padding: 2rem;
        background-color: white;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
        border-radius: 8px;
    }

    .about-section h1 {
        color: var(--dark);
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid #f0f0f0;
        text-align: center;
    }

    .about-section h2 {
        color: var(--dark);
        font-size: 1.8rem;
        margin-top: 2.5rem;
        margin-bottom: 1rem;
        position: relative;
        padding-left: 15px;
    }

    .about-section h2:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 5px;
        background: var(--gradient);
        border-radius: 3px;
    }

    .about-section p {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: var(--text-light);
    }

    .about-highlight {
        background-color: #f8f4e5;
        padding: 0.2rem 0.4rem;
        border-radius: 4px;
        font-weight: 600;
        color: var(--primary);
    }

    .about-values-list p {
        position: relative;
        padding-left: 30px;
        margin-bottom: 1rem;
    }

    .about-values-list p:before {
        content: "•";
        color: var(--primary);
        font-weight: bold;
        font-size: 1.5rem;
        position: absolute;
        left: 10px;
        top: -3px;
    }

    .about-values-list strong {
        color: var(--dark);
    }

    /* WhatsApp Button */
    #whatsapp-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 9999;
    }

    #whatsapp-button img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        transition: transform 0.2s;
    }

    #whatsapp-button img:hover {
        transform: scale(1.1);
    }

    /* Responsive Styles */
    @media (max-width: 1024px) {
        .heading-title {
            font-size: 2.2rem;
        }

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

    @media (max-width: 768px) {
        .mobile-menu-btn {
            display: block;
        }

        .nav-links {
            position: fixed;
            top: 70px;
            left: -100%;
            width: 100%;
            height: calc(100vh - 70px);
            background: #fff;
            flex-direction: column;
            align-items: center;
            padding: 40px 0;
            transition: left 0.3s;
        }

        .nav-links.active {
            left: 0;
        }

        .nav-links li {
            margin: 15px 0;
        }

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

        .hero-section:before {
            display: none;
        }

        .free-trial-feature {
            width: 100%;
        }

        .countdown-banner {
            margin: 0 -15px 40px;
            border-radius: 0;
        }
    }

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

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

        .btn {
            padding: 12px 25px;
            font-size: 14px;
        }

        .action-button {
            padding: 15px 30px;
            font-size: 16px;
        }
    }
