:root {
    --primary: #FF5A1F;
    --primary-hover: #E04A15;
    --accent: #FFB30F;
    --dark: #2D2A32;
    --light: #FEF9F5;
    --white: #FFFFFF;
    --gray: #6B6B6B;
    --bg-alt: #FFF1E6;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.2;
}

h1 { font-size: 2.5rem; margin-bottom: 1.5rem; font-weight: 800; }
h2 { font-size: 2rem; margin-bottom: 1rem; font-weight: 700; text-align: center; }
h3 { font-size: 1.5rem; font-weight: 700; }

p { margin-bottom: 1rem; }

/* Utilities */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.bg-light { background-color: var(--light); }
.bg-accent { background-color: var(--bg-alt); }

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

.shadow-lg {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-radius: 12px;
}

.rounded-img { border-radius: 12px; }

.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.justify-center { justify-content: center; }
.text-highlight { color: var(--primary); font-weight: 800; }

/* Top Bar */
.top-bar {
    background-color: var(--accent);
    color: var(--dark);
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 100;
}

.top-bar::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='50' viewBox='0 0 300 50'%3E%3Cpath d='M0,0 Q150,45 300,0' fill='none' stroke='%238B4513' stroke-width='1.5'/%3E%3Cpath d='M35,9.2 L55,13.4 L45,36.4 Z' fill='%23FF5A1F'/%3E%3Cpath d='M80,17.5 L100,19.9 L100,44.9 L90,36.9 L80,42.5 Z' fill='%23FFB30F'/%3E%3Cpath d='M140,22.3 L160,22.3 L150,47.3 Z' fill='%23E04A15'/%3E%3Cpath d='M200,19.9 L220,17.5 L220,42.5 L210,36.9 L200,44.9 Z' fill='%23FF5A1F'/%3E%3Cpath d='M245,13.4 L265,9.2 L255,36.4 Z' fill='%23FFB30F'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-position: top left;
    pointer-events: none;
    filter: drop-shadow(0 3px 3px rgba(0,0,0,0.1));
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-heading);
    width: 100%;
    max-width: 400px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 90, 31, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 90, 31, 0.5);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-lg {
    font-size: 1.25rem;
    padding: 1.25rem 2.5rem;
}

.pulse {
    animation: pulse 2s infinite;
}

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

/* Sections */
section {
    padding: 5rem 0;
}

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

.divider {
    height: 4px;
    width: 60px;
    background-color: var(--accent);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Hero */
.hero {
    background-color: var(--white); /* Changed to white for cleaner look */
    padding: 4rem 0 2rem;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    flex: 1;
}

.badge {
    display: inline-block;
    background-color: var(--accent);
    color: var(--dark);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-highlight {
    background-color: var(--bg-alt);
    color: var(--primary);
    border: 1px dashed var(--accent);
}

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

.text-center-layout .hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.text-center-layout h1 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.text-center-layout p {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.secure-checkout {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--gray);
    font-weight: 500;
}

.secure-checkout img { width: 20px; height: 20px; }

.hero-image {
    flex: 1;
    position: relative;
}

.hero-img-styled {
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    border: 8px solid var(--white);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.hero-img-styled:hover {
    transform: rotate(0deg);
}

/* Modelos Carousel */
.modelos {
    overflow: hidden;
    padding-bottom: 2rem;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
    padding: 1rem 0 3rem;
    position: relative;
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: scroll 15s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-img {
    height: 250px;
    width: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    margin: 0 0.5rem;
    transition: transform 0.3s;
}

.carousel-img:hover {
    transform: scale(1.02);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50%)); }
}

/* Value Stack */
.kit-grid-centered {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.kit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.kit-list li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Tema Junino */
.junina-theme li {
    border: 2px dashed var(--accent); /* Efeito de costura */
}

/* Pseudo-elementos para os retalhos e enfeites */
.junina-theme li::after {
    position: absolute;
    z-index: 10;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.15);
}

/* Retalho Xadrez Laranja */
.card-patch-right::after {
    content: '';
    top: -12px;
    right: -12px;
    width: 38px;
    height: 38px;
    background-color: var(--primary);
    background-image: 
      repeating-linear-gradient(transparent, transparent 8px, rgba(0,0,0,0.15) 8px, rgba(0,0,0,0.15) 16px),
      repeating-linear-gradient(90deg, transparent, transparent 8px, rgba(0,0,0,0.15) 8px, rgba(0,0,0,0.15) 16px);
    border: 2px dashed #fff;
    transform: rotate(15deg);
}

/* Retalho Xadrez Verde */
.card-patch-left::after {
    content: '';
    bottom: -12px;
    left: -12px;
    width: 40px;
    height: 40px;
    background-color: #27AE60;
    background-image: 
      repeating-linear-gradient(transparent, transparent 8px, rgba(255,255,255,0.3) 8px, rgba(255,255,255,0.3) 16px),
      repeating-linear-gradient(90deg, transparent, transparent 8px, rgba(255,255,255,0.3) 8px, rgba(255,255,255,0.3) 16px);
    border: 2px dashed #fff;
    transform: rotate(-12deg);
}

/* Retalho Xadrez Amarelo */
.card-patch-right-alt::after {
    content: '';
    bottom: -10px;
    right: 20px;
    width: 32px;
    height: 32px;
    background-color: var(--accent);
    background-image: 
      repeating-linear-gradient(transparent, transparent 6px, rgba(0,0,0,0.15) 6px, rgba(0,0,0,0.15) 12px),
      repeating-linear-gradient(90deg, transparent, transparent 6px, rgba(0,0,0,0.15) 6px, rgba(0,0,0,0.15) 12px);
    border: 2px dashed #fff;
    transform: rotate(20deg);
}

/* Chapéu de Palha SVG (Sem emoji) */
.junina-theme .card-hat::after {
    content: '';
    width: 70px;
    height: 55px;
    top: -28px;
    right: -30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cellipse cx='50' cy='75' rx='45' ry='12' fill='%23E6C27A' stroke='%23C5A15A' stroke-width='3'/%3E%3Cpath d='M25 70 C 25 30, 75 30, 75 70 Z' fill='%23F4D03F' stroke='%23C5A15A' stroke-width='3'/%3E%3Cpath d='M25 70 Q 50 82 75 70 L 73 60 Q 50 72 27 60 Z' fill='%23E74C3C'/%3E%3C/svg%3E");
    background-color: transparent !important;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: none !important;
    box-shadow: none !important;
    transform: rotate(15deg);
    filter: drop-shadow(2px 3px 5px rgba(0,0,0,0.3));
}

/* Retalho Xadrez Azul (substituindo o girassol) */
.card-flag::after {
    content: '';
    top: -12px;
    left: -10px;
    width: 35px;
    height: 35px;
    background-color: #2980B9;
    background-image: 
      repeating-linear-gradient(transparent, transparent 7px, rgba(255,255,255,0.3) 7px, rgba(255,255,255,0.3) 14px),
      repeating-linear-gradient(90deg, transparent, transparent 7px, rgba(255,255,255,0.3) 7px, rgba(255,255,255,0.3) 14px);
    border: 2px dashed #fff;
    transform: rotate(-15deg);
}

.kit-list li:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.kit-check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--accent);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.kit-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.kit-text strong {
    font-size: 1.125rem;
    color: var(--dark);
    line-height: 1.3;
}

.kit-text span {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.4;
}

/* Empathy - Costura Junina Niche */
.empathy {
    text-align: center;
    background-color: var(--light);
    padding: 5rem 0;
}

.empathy-container {
    max-width: 800px;
    background: var(--white);
    padding: 4rem 3rem;
    margin: 0 auto;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 3px dashed var(--accent);
}

/* Retalhos na borda de CIMA */
.empathy-container::before,
.empathy-container::after {
    content: '';
    position: absolute;
    top: -22px;
    width: 40px;
    height: 40px;
    border: 2px dashed #fff;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.15);
    z-index: 10;
}

.empathy-container::before {
    left: 40px;
    background-color: var(--primary);
    background-image: 
      repeating-linear-gradient(transparent, transparent 8px, rgba(0,0,0,0.15) 8px, rgba(0,0,0,0.15) 16px),
      repeating-linear-gradient(90deg, transparent, transparent 8px, rgba(0,0,0,0.15) 8px, rgba(0,0,0,0.15) 16px);
    transform: rotate(-10deg);
}

.empathy-container::after {
    right: 40px;
    background-color: #27AE60;
    background-image: 
      repeating-linear-gradient(transparent, transparent 8px, rgba(255,255,255,0.3) 8px, rgba(255,255,255,0.3) 16px),
      repeating-linear-gradient(90deg, transparent, transparent 8px, rgba(255,255,255,0.3) 8px, rgba(255,255,255,0.3) 16px);
    transform: rotate(15deg);
}

.empathy h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-weight: 800;
}

.empathy p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1rem;
}

/* Bloco dos benefícios mais clean */
.empathy-list {
    background-color: var(--light);
    border-left: 4px solid var(--accent);
    border-radius: 0 8px 8px 0;
    padding: 1.5rem 2rem;
    margin: 2rem auto;
    max-width: 600px;
    text-align: left;
}

.empathy-list p {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.impact-text {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark);
    background-color: var(--accent);
    padding: 0.8rem 2rem;
    margin-top: 2.5rem;
    border-radius: 6px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 4px 6px 15px rgba(0,0,0,0.08);
    transform: rotate(-1.5deg);
    transition: transform 0.3s ease;
}

.impact-text:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Criando o efeito de costura (linha tracejada interna) */
.impact-text::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 2px dashed rgba(0, 0, 0, 0.3); /* Linha de costura escura */
    pointer-events: none;
    border-radius: 3px;
}

/* Bonus */
/* Bonus - Lista Elegante (Sem Cards) */
.elegant-bonus-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.elegant-bonus-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background-color: transparent;
    border-bottom: 2px dashed rgba(255, 179, 15, 0.5);
}

.elegant-bonus-item:last-child {
    border-bottom: none;
}

.eb-check {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: rgba(39, 174, 96, 0.1);
    color: #27AE60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    padding: 10px;
}

.eb-content {
    flex: 1;
    text-align: left;
    padding-right: 1.5rem;
}

.eb-content h4 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 0.3rem;
    font-weight: 800;
}

.eb-content p {
    font-size: 1rem;
    color: #555;
    margin: 0;
    line-height: 1.4;
}

.eb-value {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.eb-strike {
    font-size: 0.95rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.2rem;
}

.eb-free {
    font-size: 1.3rem;
    color: #27AE60;
    font-weight: 900;
    text-transform: uppercase;
    background: rgba(39, 174, 96, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

@media (max-width: 600px) {
    .elegant-bonus-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem 0;
    }
    .eb-check {
        margin-bottom: 0.5rem;
    }
    .eb-content {
        padding-right: 0;
    }
    .eb-value {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 0.5rem;
    }
    .eb-strike {
        margin-bottom: 0;
    }
}

/* Offer */
.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    text-align: center;
    position: relative;
    border: 1px solid #eaeaea;
}

.pricing-card.vip {
    border: 3px solid var(--primary);
    transform: scale(1.05);
    background: linear-gradient(to bottom, #ffffff, #fffdfc);
}

.most-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.price-anchor {
    color: var(--gray);
    font-size: 0.875rem;
    text-decoration: line-through;
    margin-top: 1rem;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.price span {
    font-size: 1.5rem;
}

.vip .price { color: var(--primary); }

.features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.features li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #4a4a4a;
}

.features strong { color: var(--dark); }

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.trust-badges span {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray);
}

/* Social Proof */
.testimonials-carousel-wrapper {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonials-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE/Edge */
}

.testimonials-carousel::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.testimonials-carousel .screenshot-proof {
    flex: 0 0 100%;
    scroll-snap-align: center;
    margin: 0;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--primary);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.carousel-control:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev { left: -10px; }
.carousel-control.next { right: -10px; }

@media (max-width: 480px) {
    .testimonials-carousel-wrapper {
        padding: 0 20px;
    }
    .carousel-control.prev { left: -5px; }
    .carousel-control.next { right: -5px; }
}

.whatsapp-mockup {
    background: #E5DDD5;
    border-radius: 12px;
    width: 100%;
    max-width: 350px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.screenshot-proof {
    max-width: 320px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.screenshot-proof:hover {
    transform: translateY(-10px);
}

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

.wa-header {
    background: #075E54;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.wa-avatar {
    width: 40px;
    height: 40px;
    background: #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #333;
}

.wa-info strong {
    display: block;
    font-size: 1rem;
    font-family: sans-serif;
}

.wa-info span {
    font-size: 0.75rem;
    opacity: 0.8;
}

.wa-body {
    padding: 1rem;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    background-size: cover;
    display: flex;
    flex-direction: column;
}

.wa-message {
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #303030;
    position: relative;
    font-family: sans-serif;
    margin-bottom: 4px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
    max-width: 90%;
    line-height: 1.4;
}

.wa-message.received {
    background: #FFFFFF;
    align-self: flex-start;
    border-top-left-radius: 0;
    margin-left: 5px;
}

.wa-message.received::after {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 0;
    height: 0;
    border-top: 10px solid #FFFFFF;
    border-left: 10px solid transparent;
}

.wa-message.sent {
    background: #DCF8C6;
    align-self: flex-end;
    border-top-right-radius: 0;
    margin-right: 5px;
}

.wa-message.sent::after {
    content: '';
    position: absolute;
    top: 0;
    right: -8px;
    width: 0;
    height: 0;
    border-top: 10px solid #DCF8C6;
    border-right: 10px solid transparent;
}

/* Guarantee & FAQ */
.guarantee-box {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-left: 6px solid var(--primary);
}

.guarantee-icon {
    font-size: 4rem;
}

.guarantee-text h3 {
    margin-bottom: 0.5rem;
}

.guarantee-text p {
    margin: 0;
}

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

.faq-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.faq-item p {
    margin: 0;
    color: #555;
}

/* Final CTA */
.final-cta {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 6rem 0;
}

.final-cta h2 {
    color: var(--white);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Footer */
footer {
    background: #1a181d;
    color: #888;
    text-align: center;
    padding: 2rem 0;
    font-size: 0.875rem;
}

/* Responsive */
.mobile-break {
    display: none;
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero h1 { font-size: 2rem; }
    .text-center-layout h1 { font-size: 2.25rem; line-height: 1.2; }
    
    .secure-checkout {
        justify-content: center;
    }
    
    .pricing-card.vip {
        transform: scale(1);
    }
    
    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
    
    .btn { width: 100%; }

    .badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        white-space: nowrap;
        letter-spacing: 0.2px;
        display: inline-block;
        width: auto;
        max-width: 100%;
    }

    .mobile-break {
        display: inline;
    }

    .mobile-hide {
        display: none !important;
    }
/* Modal Upsell Costureira */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
    animation: fadeIn 0.3s;
}

.modal-costureira {
    background-color: var(--white);
    width: 90%;
    max-width: 450px;
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    position: relative;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border: none;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: #ccc;
    cursor: pointer;
    line-height: 1;
    z-index: 20;
    transition: color 0.2s;
}

.close-modal:hover {
    color: var(--primary);
}

.modal-title-cute {
    color: var(--dark);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    font-weight: 800;
}

.modal-subtitle-cute {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 1.8rem;
}

.modal-subtitle-cute strong {
    color: var(--primary);
    font-size: 1.15rem;
    font-weight: 800;
}

.modal-features-list {
    text-align: left;
    margin: 0 auto 1.5rem;
    padding: 0;
    list-style: none;
    display: inline-block;
    width: 100%;
}

.modal-features-list li {
    margin-bottom: 0.8rem;
    color: #444;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
}

.modal-features-list li:last-child {
    margin-bottom: 0;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-right: 0.8rem;
    flex-shrink: 0;
}

.modal-price-box {
    background: linear-gradient(135deg, #FFF9F0, #FFFcf5);
    border: 1px solid rgba(255, 179, 15, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.mph-old {
    text-decoration: line-through;
    color: #999;
    font-size: 0.95rem;
}

.mph-new {
    color: var(--dark);
    font-size: 1.1rem;
}

.mph-new strong {
    color: var(--primary);
    font-size: 1.6rem;
    font-weight: 900;
}

.btn-link {
    background: none;
    border: none;
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s;
    padding: 0.5rem;
}

.btn-link:hover {
    color: var(--dark);
}

.features li.disabled {
    color: #999;
    text-decoration: line-through;
    opacity: 0.7;
}

.text-bold {
    font-weight: 800;
    color: var(--dark);
}
