/* ========================================
   RESET E BASE
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #F5F3E7;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========================================
   TIPOGRAFIA
======================================== */
h1, h2, h3 {
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

h2 {
    font-size: 1.8rem;
    font-weight: 400;
    color: #5C4033;
}

h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
}

strong {
    font-weight: 700;
}

/* ========================================
   LOGO
======================================== */
.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-mini {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: #5C4033;
    font-weight: 500;
}

.logo-cardapio {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #5C4033;
    line-height: 1;
}

.logo-drama {
    font-family: 'Nanum Brush Script', cursive;
    font-size: 2rem;
    color: #8B6914;
    line-height: 0.8;
}

.logo-img {
    max-width: 180px;
    height: auto;
    display: block;
}

.hero-header .logo-img {
    max-width: 200px;
}

.oferta-header .logo-img {
    max-width: 200px;
}

.duvidas-box .logo-img {
    max-width: 180px;
    margin: 0 auto;
}

/* ========================================
   BOTÕES
======================================== */
.btn-scroll {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 50px;
    background-color: #355E3B;
    color: white;
    border-radius: 100px;
    font-size: 1.5rem;
    margin: 40px auto 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-scroll:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(53, 94, 59, 0.3);
}

.btn-scroll-light {
    background-color: #D4A574;
}

.btn-cta {
    display: inline-block;
    background-color: #355E3B;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(53, 94, 59, 0.3);
}

.btn-whatsapp {
    display: inline-block;
    background-color: #355E3B;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(53, 94, 59, 0.3);
}

/* ========================================
   SEÇÃO 1 - HERO
======================================== */
.hero {
    background-color: #F5F3E7;
    padding: 15px 0 30px;
    text-align: center;
}

.hero-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.hero-header .logo {
    align-items: center;
    text-align: center;
}

.hero-image {
    max-width: 420px;
    margin: 0 auto 15px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.sobre-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 10px;
}

.highlight-bold {
    font-weight: 700;
}

.highlight-yellow {
    background-color: #F0BD27;
    padding: 2px 8px;
    font-weight: 700;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.hero-bullets {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 22px auto 26px;
    max-width: 740px;
}

.hero-bullets li {
    position: relative;
    padding: 22px 18px 18px;
    font-size: 0.88rem;
    line-height: 1.45;
    color: #5C4033;
    font-weight: 500;
    text-align: center;
    background: white;
    border-radius: 14px;
    border: 1px solid #E8E4D9;
    box-shadow: 0 2px 12px rgba(92, 64, 51, 0.06), 0 1px 3px rgba(0,0,0,0.04);
    border-top: 3px solid #8B6914;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-bullets li:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(92, 64, 51, 0.1), 0 2px 6px rgba(0,0,0,0.05);
}

.hero-bullets li::before {
    content: '\2713';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: #355E3B;
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    margin: 0 auto 10px;
}

.hero-bullets li:last-child {
    border-right: none;
}

.hero .btn-cta {
    margin-top: 10px;
}

/* ========================================
   SEÇÃO 2 - DEPOIMENTOS
======================================== */
.depoimentos {
    background-color: #7B4B3A;
    padding: 80px 0 60px;
    position: relative;
}

.wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-top svg {
    width: 100%;
    height: 80px;
}

.depoimentos h2 {
    color: #F5F3E7;
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.depoimentos h2 strong {
    color: #F0BD27;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.depoimento-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    font-size: 0.9rem;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.depoimento-card p {
    margin-bottom: 10px;
}

.depoimento-card p:last-child {
    margin-bottom: 0;
}

.depoimento-card.depoimento-image {
    padding: 0;
    overflow: hidden;
}

.depoimento-card.depoimento-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   DEPOIMENTOS FULL (Seção Unificada)
======================================== */
.depoimentos-full {
    background: linear-gradient(180deg, #7B4B3A 0%, #5C4033 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.depoimentos-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 10% 90%, rgba(240, 189, 39, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 10%, rgba(139, 105, 20, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.depoimentos-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.depoimentos-wave-top svg {
    width: 100%;
    height: 80px;
}

.depoimentos-full .container {
    position: relative;
    z-index: 1;
}

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

.depoimentos-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #F0BD27;
    background: rgba(240, 189, 39, 0.15);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(240, 189, 39, 0.3);
}

.depoimentos-full h2 {
    color: #F5F3E7;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.depoimentos-full h2 strong {
    color: #F0BD27;
    font-weight: 700;
}

.depoimentos-subtitle {
    color: rgba(245, 243, 231, 0.7);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

.depoimentos-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.depoimentos-masonry .depoimento-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}

.depoimentos-masonry .depoimento-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.depoimentos-masonry .depoimento-card:nth-child(1) { grid-column: span 1; }
.depoimentos-masonry .depoimento-card:nth-child(2) { grid-column: span 1; }
.depoimentos-masonry .depoimento-card:nth-child(3) { grid-column: span 1; }
.depoimentos-masonry .depoimento-card:nth-child(4) { grid-column: span 1; }
.depoimentos-masonry .depoimento-card:nth-child(5) { grid-column: span 1; }
.depoimentos-masonry .depoimento-card:nth-child(6) { grid-column: span 1; }
.depoimentos-masonry .depoimento-card:nth-child(7) { grid-column: span 1; }
.depoimentos-masonry .depoimento-card:nth-child(8) { grid-column: span 1; }
.depoimentos-masonry .depoimento-card:nth-child(9) { grid-column: span 1; }
.depoimentos-masonry .depoimento-card:nth-child(10) { grid-column: span 1; }
.depoimentos-masonry .depoimento-card:nth-child(11) { grid-column: span 1; }
.depoimentos-masonry .depoimento-card:nth-child(12) { grid-column: span 1; }

.btn-scroll-gold {
    background: linear-gradient(135deg, #F0BD27 0%, #D4A017 100%);
    color: #5C4033;
    box-shadow: 0 4px 20px rgba(240, 189, 39, 0.4);
}

.btn-scroll-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(240, 189, 39, 0.5);
}

/* ========================================
   SEÇÃO 2 - PROPOSTA (Nova 2a dobra)
======================================== */
.proposta {
    background: linear-gradient(165deg, #5C4033 0%, #4A3328 50%, #3D2A21 100%);
    padding: 100px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.proposta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(139, 105, 20, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(240, 189, 39, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.proposta-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.proposta-wave-top svg {
    width: 100%;
    height: 100px;
}

.proposta .container {
    position: relative;
    z-index: 1;
}

.proposta h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #F5F3E7;
    font-weight: 400;
}

.proposta h2 strong {
    color: #F0BD27;
}

.proposta-destaque {
    margin: 35px 0;
    position: relative;
}

.proposta-destaque p {
    font-size: 1.6rem;
    margin: 5px 0;
    color: #F0BD27;
    font-weight: 600;
}

.proposta-texto {
    max-width: 700px;
    margin: 20px auto;
    font-size: 1.05rem;
    color: rgba(245, 243, 231, 0.9);
    line-height: 1.7;
}

.proposta-texto strong {
    color: #F0BD27;
}

/* ========================================
   CUSTO EMOCIONAL - Editorial Typography
======================================== */
.custo-emocional {
    max-width: 800px;
    margin: 50px auto 40px;
    padding: 0 20px;
}

.custo-abertura {
    font-size: 1.4rem;
    color: #F5F3E7;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
    letter-spacing: 0.02em;
    position: relative;
}

.custo-abertura::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #F0BD27, transparent);
    margin: 25px auto 0;
}

.custo-lista {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.custo-item {
    color: rgba(245, 243, 231, 0.85);
    line-height: 1.5;
    position: relative;
    transition: all 0.4s ease;
}

.custo-item strong {
    color: #F0BD27;
    font-weight: 600;
}

/* Centered layout */
.custo-item-1 {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 18px;
}

.custo-item-2 {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 22px;
}

.custo-item-3 {
    font-size: 1.15rem;
    text-align: center;
    margin-bottom: 22px;
}

.custo-item-4 {
    font-size: 1.15rem;
    text-align: center;
    margin-bottom: 30px;
}

.custo-item-5 {
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.8;
    padding: 30px 25px;
    margin-top: 10px;
    background: linear-gradient(135deg, rgba(240, 189, 39, 0.08) 0%, rgba(240, 189, 39, 0.03) 100%);
    border-radius: 16px;
    border-left: 3px solid #F0BD27;
    border-right: 3px solid #F0BD27;
}

.proposta-lista {
    list-style: none;
    max-width: 600px;
    margin: 20px auto 30px;
    text-align: left;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 25px 30px;
    border: 1px solid rgba(240, 189, 39, 0.2);
}

.proposta-lista li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 14px;
    font-size: 1rem;
    color: rgba(245, 243, 231, 0.9);
}

.proposta-lista li:last-child {
    margin-bottom: 0;
}

.proposta-lista li::before {
    content: '\2022';
    position: absolute;
    left: 8px;
    color: #F0BD27;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.3;
}

.proposta-contas {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    padding: 30px 35px;
    max-width: 500px;
    margin: 35px auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(240, 189, 39, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.proposta-contas-titulo {
    font-size: 1.15rem;
    font-weight: 600;
    color: #F5F3E7;
    margin-bottom: 10px;
}

.proposta-contas-valor {
    font-size: 1.3rem;
    color: #F0BD27;
}

.proposta-contas-valor strong {
    font-size: 1.5rem;
    color: #FF6B6B;
}

.wave-top-brown {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-top-brown svg {
    width: 100%;
    height: 80px;
}

/* ========================================
   SEÇÃO 4 - CONTEÚDO
======================================== */
.conteudo {
    background-color: #F5F3E7;
    padding: 60px 0;
    text-align: center;
}

.selo-logo {
    margin-bottom: 30px;
}

.selo-circular {
    width: 120px;
    height: 120px;
    border: 2px solid #8B6914;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.selo-iniciais {
    font-family: 'Nanum Brush Script', cursive;
    font-size: 2.5rem;
    color: #8B6914;
}

.selo-circular-img {
    width: 120px;
    height: auto;
}

.conteudo h2 {
    color: #8B6914;
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.card {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #E8E4D9;
}

.card-icon {
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
}

.card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 10px;
}

.conteudo-extra {
    font-size: 1rem;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
}

.conteudo-bonus-intro {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.bonus-box {
    background: white;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #E8E4D9;
}

.bonus-content {
    text-align: left;
}

.bonus-content p {
    margin-bottom: 10px;
}

/* ========================================
   PASSOS (3 Steps)
======================================== */
.passos-titulo {
    font-size: 1.5rem;
    color: #8B6914;
    margin: 50px 0 30px;
}

.passos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.passo-card {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #E8E4D9;
    position: relative;
}

.passo-numero {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #8B6914;
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.passo-card h3 {
    margin-bottom: 12px;
}

.passo-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 8px;
}

.passo-lista {
    list-style: none;
    margin-top: 8px;
}

.passo-lista li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: #555;
}

.passo-lista li::before {
    content: '\2022';
    position: absolute;
    left: 4px;
    color: #8B6914;
    font-weight: 700;
}

/* ========================================
   iPHONE VIDEO MOCKUP
======================================== */
.iphone-showcase {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px auto 40px;
    max-width: 320px;
}

/* Ambient glow behind phone */
.iphone-ambient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 560px;
    background: radial-gradient(ellipse at center,
        rgba(139, 105, 20, 0.18) 0%,
        rgba(139, 105, 20, 0.08) 40%,
        transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

/* Device container */
.iphone-device {
    position: relative;
    z-index: 1;
}

/* The phone frame */
.iphone-frame {
    position: relative;
    width: 270px;
    height: 568px;
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 50%, #1a1a1a 100%);
    border-radius: 42px;
    padding: 12px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 20px 60px rgba(0, 0, 0, 0.25),
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

/* Subtle metallic edge reflection */
.iphone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 42px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
    z-index: 10;
}

/* Dynamic Island / Notch */
.iphone-notch {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 26px;
    background: #000;
    border-radius: 20px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 14px;
}

.iphone-notch-cam {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #1a2a3a, #0a1520);
    box-shadow: inset 0 0 2px rgba(0, 100, 200, 0.3);
}

/* Screen */
.iphone-screen {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    background: #000;
    position: relative;
}

.iphone-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Home Bar Indicator */
.iphone-home-bar {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    z-index: 5;
}

/* Physical side buttons */
.iphone-btn-side {
    position: absolute;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 50%, #2a2a2a 100%);
    border-radius: 2px;
}

.iphone-btn-power {
    right: -2px;
    top: 140px;
    width: 3px;
    height: 55px;
    box-shadow: 1px 0 2px rgba(0,0,0,0.3);
}

.iphone-btn-volup {
    left: -2px;
    top: 120px;
    width: 3px;
    height: 32px;
    box-shadow: -1px 0 2px rgba(0,0,0,0.3);
}

.iphone-btn-voldown {
    left: -2px;
    top: 162px;
    width: 3px;
    height: 32px;
    box-shadow: -1px 0 2px rgba(0,0,0,0.3);
}

.iphone-btn-silent {
    left: -2px;
    top: 85px;
    width: 3px;
    height: 18px;
    box-shadow: -1px 0 2px rgba(0,0,0,0.3);
}

/* Caption below phone */
.iphone-caption {
    margin-top: 28px;
    font-size: 0.95rem;
    color: #8B6914;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.01em;
    opacity: 0.85;
}

/* ========================================
   COMPARAÇÃO (ChatGPT vs CSD)
======================================== */
.comparacao {
    background-color: #F5F3E7;
    padding: 60px 0;
    text-align: center;
}

.comparacao h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.comparacao h2 strong {
    color: #8B6914;
}

.comparacao-subtitulo {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 35px;
}

.comparacao-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 750px;
    margin: 0 auto 40px;
}

.comparacao-coluna {
    border-radius: 16px;
    padding: 30px 25px;
    text-align: left;
}

.comparacao-coluna h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-align: center;
}

.comparacao-coluna ul {
    list-style: none;
}

.comparacao-coluna li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.comparacao-chatgpt {
    background: white;
    border: 2px solid #E8E4D9;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.comparacao-chatgpt h3 {
    color: #999;
}

.x-icon {
    color: #C41E3A;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.comparacao-csd {
    background: #355E3B;
    color: white;
    box-shadow: 0 4px 20px rgba(53, 94, 59, 0.2);
}

.comparacao-csd h3 {
    color: #F0BD27;
}

.comparacao-csd li {
    color: white;
}

.comparacao-csd .check {
    color: #F0BD27;
}

.comparacao-closing {
    font-size: 1.15rem;
    color: #5C4033;
    max-width: 600px;
    margin: 0 auto;
}

/* Comparação Visual Section */
.comparacao-visual {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.comparacao-visual-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #5C4033;
    font-weight: 600;
    margin: 50px 0 40px;
    letter-spacing: 0.02em;
}

/* Screenshot Grid */
.comparacao-screenshots {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 50px;
}

.screenshot-wrapper {
    position: relative;
}

/* Badges */
.screenshot-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.badge-lose {
    background: #E8E4D9;
    color: #999;
    border: 1px solid #ddd;
}

.badge-win {
    background: linear-gradient(135deg, #355E3B 0%, #2A4A2F 100%);
    color: #F0BD27;
    box-shadow: 0 4px 15px rgba(53, 94, 59, 0.3);
}

/* Screenshot Cards */
.screenshot-card {
    border-radius: 16px;
    overflow: hidden;
    background: #F5F3E7;
    height: 500px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-chatgpt {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #E8E4D9;
    opacity: 0.85;
}

.screenshot-csd {
    box-shadow:
        0 20px 50px rgba(53, 94, 59, 0.2),
        0 8px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #355E3B;
}

.screenshot-wrapper-win:hover .screenshot-card {
    transform: translateY(-5px);
}

/* Winner Glow Effect */
.winner-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(53, 94, 59, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Screenshot Header */
.screenshot-header {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

.screenshot-chatgpt .screenshot-header {
    background: #FAFAFA;
}

.screenshot-header-csd {
    background: linear-gradient(135deg, #355E3B 0%, #2A4A2F 100%);
    border-bottom: none;
}

.screenshot-dots {
    display: flex;
    gap: 6px;
}

.screenshot-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
}

.dot-csd {
    background: rgba(255, 255, 255, 0.3);
}

.dot-csd:first-child {
    background: #F0BD27;
}

.screenshot-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #999;
    letter-spacing: 0.5px;
}

.screenshot-header-csd .screenshot-title {
    color: rgba(255, 255, 255, 0.9);
}

/* Screenshot Body */
.screenshot-body {
    flex: 1;
    overflow-y: auto;
    background: #F5F3E7;
}

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

/* Scrollbar */
.screenshot-body::-webkit-scrollbar {
    width: 5px;
}

.screenshot-body::-webkit-scrollbar-track {
    background: transparent;
}

.screenshot-body::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

.screenshot-csd .screenshot-body::-webkit-scrollbar-thumb {
    background: #355E3B;
}

/* VS Badge */
.comparacao-vs-badge {
    width: 55px;
    height: 55px;
    background: linear-gradient(145deg, #F0BD27 0%, #D4A017 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 25px rgba(240, 189, 39, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    z-index: 20;
    flex-shrink: 0;
}

.comparacao-vs-badge span {
    font-size: 0.95rem;
    font-weight: 800;
    color: #5C4033;
    letter-spacing: 0.5px;
}

/* ========================================
   IA FUNÇÕES
======================================== */
.ia-funcoes {
    background-color: white;
    padding: 60px 0;
    text-align: center;
}

.ia-funcoes h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.ia-funcoes h2 strong {
    color: #8B6914;
}

.funcoes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.funcao-item {
    background: #F5F3E7;
    border-radius: 16px;
    padding: 25px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid #E8E4D9;
}

.funcao-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}

.funcao-item p {
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
}

/* ========================================
   OFERTA SEGURANÇA
======================================== */
.oferta-seguranca {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #999;
    letter-spacing: 0.5px;
}

/* ========================================
   SEÇÃO 5 - OFERTA
======================================== */
.oferta {
    background-color: #F5F3E7;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
}

.urgencia {
    margin-bottom: 30px;
}

.urgencia-icon {
    margin-bottom: 15px;
}

.urgencia-titulo {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #C41E3A;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.urgencia-subtitulo {
    display: block;
    font-size: 1.5rem;
    color: #8B6914;
    margin-top: 10px;
}

.oferta-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 550px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #E8E4D9;
}

.oferta-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E8E4D9;
}

.oferta-lista {
    text-align: left;
    margin-bottom: 20px;
}

.oferta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
}

.check {
    color: #2AAA8A;
    font-size: 1.2rem;
    font-weight: bold;
}

.oferta-ainda {
    text-align: left;
    font-size: 1rem;
    color: #666;
    margin: 20px 0 15px;
}

.oferta-bonus {
    text-align: left;
    margin-bottom: 30px;
}

.oferta-bonus-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.gift {
    font-size: 1.2rem;
}

.preco {
    margin: 30px 0;
    padding-top: 20px;
    border-top: 1px solid #E8E4D9;
}

.preco-de {
    display: block;
    font-size: 1rem;
    color: #999;
}

.preco-de s {
    color: #C41E3A;
}

.preco-hoje {
    display: block;
    font-size: 1.5rem;
    color: #333;
    margin: 10px 0;
}

.preco-valor {
    font-size: 2.5rem;
    color: #333;
}

.preco-parcela {
    display: block;
    font-size: 0.95rem;
    color: #666;
}

/* ========================================
   SEÇÃO 6 - GARANTIA
======================================== */
.garantia {
    background-color: #F5F3E7;
    padding: 60px 0;
    text-align: center;
}

.garantia-selo {
    margin-bottom: 30px;
}

.selo-garantia {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #8B6914 0%, #5C4033 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    position: relative;
    box-shadow: 0 5px 20px rgba(92, 64, 51, 0.3);
}

.selo-garantia::before {
    content: '';
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, transparent 60%, #7B4B3A 60%, #7B4B3A 65%, transparent 65%);
    z-index: -1;
}

.selo-garantia-texto {
    font-size: 0.7rem;
    letter-spacing: 2px;
}

.selo-garantia-numero {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.selo-garantia-texto2 {
    font-size: 0.6rem;
    letter-spacing: 1px;
}

.selo-garantia-img {
    width: 150px;
    height: auto;
}

.garantia h2 {
    color: #8B6914;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.garantia p {
    font-size: 1.1rem;
    color: #555;
}

/* ========================================
   SEÇÃO 7 - SOBRE
======================================== */
.sobre {
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.sobre-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
}

.sobre-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, transparent 25%, #F5F3E7 55%);
}

.sobre-texto {
    position: relative;
    z-index: 2;
    margin-left: 50%;
    width: 50%;
    text-align: left;
    max-width: none;
    padding: 60px 60px 60px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 600px;
}

.sobre-texto h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.sobre-texto h2 strong {
    color: #8B6914;
}

.sobre-texto p {
    margin-bottom: 15px;
    color: #555;
}

.sobre-texto .btn-cta {
    margin-top: 20px;
    align-self: flex-start;
}

.sobre-mobile-img {
    display: none;
}

/* ========================================
   SEÇÃO 8 - FAQ
======================================== */
.faq {
    background-color: white;
    padding: 60px 0;
}

.faq-label {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    color: #999;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.faq h2 {
    text-align: center;
    color: #8B6914;
    font-size: 2rem;
    margin-bottom: 40px;
}

.faq-lista {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #E8E4D9;
}

.faq-pergunta {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #5C4033;
}

.faq-icon {
    font-size: 0.8rem;
    color: #999;
    transition: transform 0.3s ease;
}

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

.faq-resposta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-resposta {
    max-height: 500px;
    padding-bottom: 20px;
}

.faq-resposta p {
    color: #666;
    margin-bottom: 10px;
}

/* ========================================
   SEÇÃO 9 - DÚVIDAS
======================================== */
.duvidas {
    background-color: white;
    padding: 60px 0;
}

.duvidas-box {
    background-color: #F5F3E7;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.duvidas-box .logo {
    align-items: center;
    margin-bottom: 30px;
}

.duvidas-box h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.duvidas-box h2 strong {
    color: #8B6914;
}

.duvidas-box p {
    color: #666;
    margin-bottom: 20px;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background-color: #F5F3E7;
    padding: 40px 0;
    text-align: center;
}

.footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.footer-logos .logo {
    align-items: center;
}

.footer-divisor {
    font-size: 2rem;
    color: #ccc;
}

.footer-assinatura {
    font-family: 'Nanum Brush Script', cursive;
    font-size: 1.8rem;
    color: #5C4033;
    line-height: 1;
}

/* ========================================
   RESPONSIVO - MOBILE
======================================== */
@media (max-width: 800px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .hero {
        padding: 10px 0 20px;
    }

    .hero-header {
        margin-bottom: 10px;
    }

    .hero-header .logo-cardapio {
        font-size: 1.5rem;
    }

    .hero-header .logo-drama {
        font-size: 1.6rem;
    }

    .hero-image {
        max-width: 280px;
        margin: 0 auto 10px;
    }

    .hero h1 {
        font-size: 1.35rem;
        margin-bottom: 8px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 0;
    }

    .hero-bullets {
        margin: 14px auto 18px;
        gap: 8px;
    }

    .hero-bullets li {
        padding: 12px 10px 10px;
        font-size: 0.8rem;
    }

    .hero-bullets li::before {
        width: 22px;
        height: 22px;
        font-size: 0.65rem;
        margin-bottom: 6px;
    }

    .hero .btn-cta {
        padding: 14px 30px;
        font-size: 0.9rem;
        margin-top: 5px;
    }

    .hero-header {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

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

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

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

    .bonus-content {
        text-align: center;
    }

    .oferta-box {
        padding: 30px 20px;
    }

    .urgencia-titulo {
        font-size: 1.2rem;
    }

    .urgencia-subtitulo {
        font-size: 1.2rem;
    }

    .preco-valor {
        font-size: 2rem;
    }

    .btn-cta,
    .btn-whatsapp {
        display: block;
        width: 100%;
        text-align: center;
    }

    .footer-logos {
        flex-direction: column;
        gap: 10px;
    }

    .footer-divisor {
        display: none;
    }

    .sobre {
        min-height: auto;
    }

    .sobre-bg,
    .sobre-overlay {
        display: none;
    }

    .sobre-mobile-img {
        display: block;
        width: 100%;
        overflow: hidden;
    }

    .sobre-mobile-img img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 0;
    }

    .sobre-texto {
        margin-left: 0;
        width: 100%;
        min-height: auto;
        padding: 30px 20px 40px;
        text-align: center;
    }

    .sobre-texto .btn-cta {
        align-self: center;
    }

    .faq-pergunta {
        font-size: 0.95rem;
    }

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

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

    .comparacao-screenshots {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .comparacao-vs-badge {
        width: 45px;
        height: 45px;
        margin: -10px auto;
    }

    .comparacao-vs-badge span {
        font-size: 0.85rem;
    }

    .screenshot-card {
        height: 420px;
    }

    .screenshot-badge {
        font-size: 0.7rem;
        padding: 5px 16px;
    }

    .screenshot-chatgpt {
        opacity: 1;
    }

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

    .proposta-contas {
        padding: 20px;
    }

    .proposta {
        padding: 80px 0 50px;
    }

    .proposta h2 {
        font-size: 1.6rem;
    }

    .proposta-destaque p {
        font-size: 1.3rem;
    }

    .proposta-lista {
        padding: 20px;
    }

    .depoimentos-full {
        padding: 80px 0 60px;
    }

    .depoimentos-full h2 {
        font-size: 1.6rem;
    }

    .depoimentos-masonry {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .depoimentos-masonry .depoimento-card {
        grid-column: span 1 !important;
    }

    /* Custo Emocional Mobile */
    .custo-emocional {
        margin: 35px auto 30px;
    }

    .custo-abertura {
        font-size: 1.2rem;
        margin-bottom: 35px;
    }

    .custo-item-1,
    .custo-item-2 {
        padding-left: 0;
        text-align: center;
        font-size: 1.15rem;
    }

    .custo-item-3 {
        font-size: 1.05rem;
        padding: 0;
    }

    .custo-item-4 {
        padding-right: 0;
        text-align: center;
        font-size: 1.1rem;
    }

    .custo-item-5 {
        font-size: 1.1rem;
        padding: 25px 20px;
    }

    .hero-bullets {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 10px;
        padding: 0 10px;
    }

    .hero-bullets li {
        padding: 16px 14px 14px;
    }

    /* iPhone Mockup Mobile */
    .iphone-showcase {
        margin: 35px auto 30px;
        max-width: 260px;
    }

    .iphone-frame {
        width: 230px;
        height: 484px;
        border-radius: 36px;
        padding: 10px;
    }

    .iphone-frame::before {
        border-radius: 36px;
    }

    .iphone-screen {
        border-radius: 27px;
    }

    .iphone-notch {
        width: 76px;
        height: 22px;
        top: 14px;
    }

    .iphone-notch-cam {
        width: 7px;
        height: 7px;
    }

    .iphone-home-bar {
        width: 85px;
        height: 3px;
        bottom: 16px;
    }

    .iphone-btn-power {
        top: 120px;
        height: 46px;
    }

    .iphone-btn-volup {
        top: 100px;
        height: 28px;
    }

    .iphone-btn-voldown {
        top: 136px;
        height: 28px;
    }

    .iphone-btn-silent {
        top: 72px;
        height: 16px;
    }

    .iphone-ambient {
        width: 220px;
        height: 460px;
    }

    .iphone-caption {
        font-size: 0.85rem;
        margin-top: 22px;
    }
}

/* ========================================
   ANIMAÇÕES
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.depoimentos h2,
.proposta h2,
.conteudo h2 {
    animation: fadeInUp 0.6s ease-out;
}
