/* Variáveis de Cores e Fontes */
:root {
    --primary-blue: #4FC3F7;
    /* Azul mais vivo */
    --primary-blue-dark: #0288D1;
    --primary-yellow: #FFF176;
    /* Amarelo mais vivo */
    --accent-yellow: #FFD600;
    /* Dourado vibrante */
    --primary-green: #B9F6CA;
    /* Verde mais vivo */
    --text-color: #555555;
    --heading-color: #333333;
    --white: #ffffff;
    --cta-color: #FF5252;
    /* Vermelho/Coral vibrante */
    --cta-hover: #FF1744;

    --font-heading: 'Fredoka', cursive;
    --font-body: 'Nunito', sans-serif;

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 8px 20px rgba(0, 0, 0, 0.06);
    --radius-card: 20px;
}

/* Reset Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: #FAFAFA;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* Utilitários de Animação */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-400 {
    transition-delay: 0.4s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Botões */
.cta-button {
    display: inline-block;
    background-color: var(--cta-color);
    color: white;
    font-family: var(--font-heading);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--cta-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 107, 107, 0.4);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    background: linear-gradient(135deg, #E0F7FA 0%, #FFFDE7 100%);
    /* Gradiente suave azul para amarelo */
    padding-top: 120px;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.badge-hero {
    background-color: #E1F5FE;
    color: #0288D1;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 15px;
    border: 1px solid #B3E5FC;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #333;
    margin-bottom: 20px;
}

.hero-content .subheadline {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 30px;
}

.hero-offer-text {
    font-weight: 600;
    color: #444;
    margin-bottom: 15px;
}

.security-icons {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
}

.security-icons i {
    color: #4CAF50;
    margin-right: 5px;
}

.video-placeholder {
    width: 100%;
    max-width: 320px;
    /* Tamanho aproximado de um celular */
    height: 560px;
    background-color: #000;
    border-radius: 30px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 8px solid #fff;
    color: #fff;
    cursor: pointer;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    backdrop-filter: blur(5px);
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.4);
}

.wave-bottom svg {
    display: block;
    margin-bottom: -1px;
    /* Remove linha branca */
}

/* Mobile Hero Settings */
.show-mobile {
    display: none;
}

.hide-mobile {
    display: block;
}

/* =========================================
   FEATURES SECTION
   ========================================= */
.features-section {
    padding: 60px 0;
    background-color: #fff;
}

.section-title {
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60%;
    height: 5px;
    background-color: var(--accent-yellow);
    border-radius: 10px;
    margin: 10px auto 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.blue-bg {
    background-color: #E3F2FD;
    color: #2196F3;
}

.yellow-bg {
    background-color: #FFFDE7;
    color: #FBC02D;
}

.green-bg {
    background-color: #E8F5E9;
    color: #4CAF50;
}

.feature-card h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.feature-card ul {
    text-align: left;
}

.feature-card ul li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #666;
    display: flex;
    align-items: start;
}

.feature-card ul li i {
    color: #4CAF50;
    margin-right: 10px;
    margin-top: 4px;
}

/* =========================================
   CATEGORIES SECTION
   ========================================= */
.categories-section {
    padding: 80px 0;
    background-color: #F8F9FA;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.category-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    font-weight: 700;
    color: #555;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    border: 2px solid transparent;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    min-height: 80px;
}

.category-item:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    color: var(--primary-blue-dark);
}

.application-info {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.application-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #89CFF0, #FFD700);
}

.info-box h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #444;
}

.info-items {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
    text-align: left;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.info-items span {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.info-items span i {
    color: #FFD700;
    margin-right: 10px;
    font-size: 1.2rem;
}

.update-badge {
    background-color: #FFF3E0;
    color: #E65100;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    border: 1px dashed #FFB74D;
}

/* =========================================
   BENEFITS SECTION
   ========================================= */
.benefits-section {
    padding: 80px 0;
    background-color: #fff;
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 15px;
    transition: background-color 0.3s;
}

.benefit-item:hover {
    background-color: #F9F9F9;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #FCE4EC;
    color: #E91E63;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-item:nth-child(2) .benefit-icon {
    background-color: #E3F2FD;
    color: #2196F3;
}

.benefit-item:nth-child(3) .benefit-icon {
    background-color: #FFF8E1;
    color: #FFC107;
}

.benefit-item:nth-child(4) .benefit-icon {
    background-color: #E8F5E9;
    color: #4CAF50;
}

.benefit-item:nth-child(5) .benefit-icon {
    background-color: #F3E5F5;
    color: #9C27B0;
}

.benefit-item:nth-child(6) .benefit-icon {
    background-color: #E0F2F1;
    color: #009688;
}

.benefit-text h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.benefit-text p {
    font-size: 1rem;
    color: #666;
}

.target-audience {
    margin-top: 60px;
    padding: 40px;
    background-color: #E0F7FA;
    border-radius: 20px;
}

.target-audience h3 {
    margin-bottom: 25px;
    color: #006064;
}

.audience-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.audience-tags span {
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    color: #00838F;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* =========================================
   BONUS SECTION
   ========================================= */
.bonus-section {
    padding-top: 40px;
    /* Reduced from default/wave padding */
    padding-bottom: 80px;
    background-color: #FFFAF0;
    position: relative;
    margin-top: -2px;
    /* Ensure no gap from previous section */
}

/* Removed wave-top styles */

.section-header .bonus-tag {
    background-color: #FF6B6B;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.bonus-card {
    background-color: #fff;
    border-radius: 25px;
    overflow: visible;
    /* Changed to visible for potential pop-out effects if needed, or kept clean */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    /* Softer, deeper shadow */
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
}

.bonus-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-yellow);
    box-shadow: 0 20px 40px rgba(255, 214, 0, 0.15);
}

.bonus-image {
    height: 260px;
    /* Increased size significantly */
    background-color: transparent;
    /* Removed grey background */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    position: relative;
    margin-top: 20px;
    padding: 10px;
}

.bonus-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.bonus-card:hover .bonus-image img {
    transform: scale(1.15) rotate(2deg);
}

.bonus-badge {
    position: absolute;
    top: 0;
    right: 20px;
    background-color: #FF5252;
    color: #fff;
    font-weight: 800;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    box-shadow: 0 5px 15px rgba(255, 82, 82, 0.4);
    z-index: 5;
    transform: rotate(5deg);
    transition: all 0.3s;
}

.bonus-card:hover .bonus-badge {
    transform: rotate(0deg) scale(1.1);
}

.bonus-content {
    padding: 20px;
}

.bonus-content h3 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.price-strike {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.bonus-content ul {
    margin-left: 15px;
}

.bonus-content ul li {
    list-style: disc;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.total-bonus-box {
    margin-top: 50px;
    background-color: #FFF3E0;
    padding: 20px;
    border-radius: 15px;
    border: 2px dashed #FFB74D;
    display: inline-block;
    width: 100%;
}

.total-bonus-box h3 {
    margin-bottom: 0;
    color: #E65100;
}

.strike {
    text-decoration: line-through;
    opacity: 0.7;
}

/* =========================================
   OFFER SECTION
   ========================================= */
.offer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

.offer-container {
    background-color: #fff;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    padding: 50px;
    overflow: hidden;
    border: 1px solid #eee;
}

.offer-header {
    text-align: center;
    margin-bottom: 40px;
}

.offer-header h2 {
    font-size: 2.5rem;
    color: #D32F2F;
}

.offer-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.offer-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-image img {
    border-radius: 10px;
}

.offer-checklist h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.offer-checklist ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #444;
}

.offer-checklist ul li i {
    color: #4CAF50;
    margin-right: 10px;
    font-size: 1.1rem;
}

.price-box {
    background-color: #F1F8E9;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin: 30px 0;
    border: 1px solid #C5E1A5;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.deal-text {
    display: block;
    font-weight: 700;
    color: #555;
    margin-bottom: 5px;
}

.price-display {
    color: #2E7D32;
    font-weight: 800;
    line-height: 1;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.amount {
    font-size: 3.5rem;
}

.payment-type {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 0.9rem;
}

.savings-tag {
    background-color: #2E7D32;
    color: #fff;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    margin-top: 15px;
    font-weight: 700;
    font-size: 0.9rem;
}

.full-width {
    width: 100%;
    text-align: center;
}

.payment-methods {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #777;
}

.payment-icons {
    font-size: 1.5rem;
    margin-top: 5px;
    color: #555;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.offer-footer {
    margin-top: 30px;
    font-style: italic;
    color: #777;
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials-section {
    padding: 80px 0;
    background-color: #fff;
}

.big-stars {
    font-size: 2rem;
    letter-spacing: 5px;
    color: #FFD700;
    margin-bottom: 10px;
}

.reviews-summary {
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Fazendo a grade de depoimentos se comportar bem com 5 itens */
.testimonial-card:nth-child(4),
.testimonial-card:nth-child(5) {
    grid-column: span 1;
}

/* Centralizar os dois últimos se a grid for de 3 colunas */
.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 1 1 300px;
    /* Cresce, encolhe, base de 300px */
    max-width: 350px;
    background-color: #F9F9F9;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
}

.review-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    background-color: #B2DFDB;
    color: #00796B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
    font-size: 0.9rem;
}

.name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #333;
}

/* =========================================
   GUARANTEE SECTION
   ========================================= */
.guarantee-section {
    padding: 50px 0;
    background-color: #F1F8E9;
    border-top: 1px solid #DCEDC8;
    border-bottom: 1px solid #DCEDC8;
}

.guarantee-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 900px;
}

.guarantee-badge-img {
    width: 120px;
}

.guarantee-content h2 {
    margin-bottom: 10px;
    color: #2E7D32;
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.team-img {
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
}

.section-tag {
    font-weight: 700;
    color: #FF6B6B;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.about-list {
    margin: 25px 0;
}

.about-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #555;
}

.about-list li i {
    color: #FF6B6B;
    margin-right: 15px;
    font-size: 1.1rem;
}

.about-footer-text {
    font-style: italic;
    color: #777;
    margin-top: 20px;
}

/* =========================================
   FINAL CTA SECTION
   ========================================= */
.final-cta-section {
    padding: 0 0 80px;
    background-color: #f0f8ff;
    /* AliceBlue */
    position: relative;
    overflow: hidden;
}

.wave-top-cta svg {
    display: block;
    background-color: #fff;
    /* Match previous section bg */
}

.final-price-text {
    font-size: 1.5rem;
    margin: 20px 0 10px;
}

.final-price-text strong {
    color: #2E7D32;
    font-size: 2rem;
}

.final-info {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

.big-btn {
    padding: 20px 60px;
    font-size: 1.5rem;
}

.scarcity-box {
    margin-top: 20px;
    display: inline-block;
    background-color: #FFEBEE;
    color: #D32F2F;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.faq-question {
    padding: 20px;
    background-color: #FAFAFA;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #F0F0F0;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.faq-answer p {
    padding: 20px 0;
    color: #666;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    padding: 40px 0;
    background-color: #37474F;
    color: #B0BEC5;
    font-size: 0.9rem;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    margin: 0 15px;
    color: #ECEFF1;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.disclaimer {
    font-size: 0.75rem;
    max-width: 600px;
    margin: 20px auto 0;
    opacity: 0.6;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .features-grid,
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offer-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .guarantee-container {
        flex-direction: column;
        text-align: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        order: -1;
    }

    /* Imagem acima no tablet */
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 40px;
    }

    /* Menos padding no mobile */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    /* Configuração de elementos visíveis/invisíveis */
    .show-mobile {
        display: block;
    }

    .hide-mobile {
        display: none;
    }

    .features-grid,
    .bonus-grid {
        grid-template-columns: 1fr;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .category-item {
        min-height: 60px;
        font-size: 0.95rem;
    }

    .offer-container {
        padding: 30px 20px;
    }

    .offer-header h2 {
        font-size: 2rem;
    }

    .amount {
        font-size: 3rem;
    }

    .cta-button {
        width: 100%;
        padding: 15px;
        font-size: 1.2rem;
    }

    .big-btn {
        font-size: 1.3rem;
    }
}