/* ========================================
   MINI BOLOS LUCRATIVOS - Patricia Duarte
   Landing Page Styles
   ======================================== */

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #2d2d2d;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* === UTILITIES === */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.3;
    color: #2d2d2d;
}

.section-title.left { text-align: left; }
.section-title.light { color: #fff; }

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.highlight {
    color: #c2185b;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #c2185b, #e91e63);
    color: #fff;
    box-shadow: 0 6px 20px rgba(194, 24, 91, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ad1457, #c2185b);
    box-shadow: 0 8px 28px rgba(194, 24, 91, 0.5);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 48px;
    font-size: 1.05rem;
}

.btn-xl {
    padding: 22px 56px;
    font-size: 1.15rem;
}

.btn-full {
    width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
}

/* === HERO === */
.hero {
    background: #f5f5f5;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    display: block;
}

.hero-top-title {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    z-index: 2;
}

.hero-top-title span {
    display: block;
    font-size: 0.85rem;
    font-style: italic;
    letter-spacing: 1px;
}

.hero-top-title strong {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    line-height: 1.2;
}

.hero-badges-overlay {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 2;
}

.badge-overlay {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.hero-text-block {
    background: #fff;
    padding: 32px 20px 36px;
    text-align: center;
}

.hero-text-block h1 {
    font-family: 'Inter', sans-serif;
    font-size: 1.45rem;
    font-weight: 400;
    line-height: 1.4;
    color: #2d2d2d;
    margin-bottom: 16px;
}

.hero-text-block h1 strong {
    font-weight: 700;
}

.hero-sub {
    font-size: 1rem;
    color: #555;
    margin-bottom: 28px;
}

/* === PARA QUEM E === */
.para-quem {
    padding: 48px 0;
    background: #dceefb;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><text x="10" y="30" font-size="14" opacity="0.06">&#127856;</text><text x="40" y="50" font-size="10" opacity="0.05">&#127856;</text></svg>');
    background-size: 60px 60px;
}

.para-quem .section-title {
    font-size: 1.4rem;
    margin-bottom: 24px;
}

.check-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-card {
    background: #fff;
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.green-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #4caf50;
    color: #fff;
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.check-card p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.4;
}

/* === GIF PREVIEW === */
.gif-preview {
    padding: 48px 0 24px;
    background: #fff;
}

.gif-preview .section-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.gif-wrapper {
    max-width: 400px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.gif-wrapper img {
    width: 100%;
    margin-top: -8%;
    margin-bottom: -8%;
}

/* === GALERIA DE BOLOS === */
.galeria {
    padding: 0 0 48px;
    background: #fff;
}

.galeria-header {
    background: #2d2d2d;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-bottom: 32px;
}

.galeria-header p {
    font-size: 1rem;
    font-weight: 400;
}

.bolos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.bolo-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.bolo-card:hover {
    transform: scale(1.05);
}

.bolo-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.bolo-nome {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    padding: 20px 12px 12px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

/* === MODULOS === */
.modulos {
    padding: 80px 0;
    background: #fff;
}

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

.modulo-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.modulo-card:hover {
    transform: translateY(-4px);
}

.modulo-card img {
    width: 100%;
}

/* === BENEFICIOS === */
.beneficios {
    padding: 80px 0;
    background: #fff;
}

.beneficios-layout {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.beneficios-foto {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
}

.beneficios-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.beneficios-content {
    flex: 1;
    padding: 32px 24px;
}

.section-title.brown {
    color: #5d4037;
}

.beneficio-numbered {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.beneficio-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #5d4037;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 2px;
}

.beneficio-numbered h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 6px;
}

.beneficio-numbered p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* === O QUE VOCE RECEBE === */
.o-que-recebe {
    padding: 80px 0;
    background: linear-gradient(135deg, #880e4f, #c2185b);
}

.recebe-box {
    text-align: center;
}

.recebe-sub {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 32px;
    font-weight: 400;
}

.check-list {
    list-style: none;
    max-width: 560px;
    margin: 0 auto 32px;
    text-align: left;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    color: #fff;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    font-size: 0.9rem;
    flex-shrink: 0;
    color: #fff;
}

.urgency-text {
    color: #ffeb3b;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 28px;
}

/* === DEPOIMENTOS === */
.depoimentos {
    padding: 80px 0;
    background: #fff;
}

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

.depoimento-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.depoimento-card img {
    width: 100%;
}

/* === BONUS === */
.bonus {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff5f5 0%, #fff 100%);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.bonus-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-4px);
}

.bonus-card img {
    width: 100%;
}

/* === PRECO === */
.preco {
    padding: 80px 0;
    background: linear-gradient(135deg, #880e4f, #c2185b);
}

.preco-box {
    background: #fff;
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 12px 48px rgba(0,0,0,0.2);
}

.preco-de {
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 4px;
}

.riscado {
    text-decoration: line-through;
    color: #999;
}

.preco-por {
    font-size: 1rem;
    color: #666;
    margin-bottom: 8px;
}

.preco-valor {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.preco-parcelas {
    font-size: 1.4rem;
    font-weight: 600;
    color: #c2185b;
}

.preco-numero {
    font-size: 3.5rem;
    font-weight: 800;
    color: #c2185b;
    line-height: 1;
}

.preco-avista {
    color: #666;
    font-size: 1rem;
    margin-bottom: 28px;
}

.preco-acesso {
    color: #888;
    font-size: 0.9rem;
    margin-top: 16px;
}

.pagamentos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    color: #888;
    font-size: 0.85rem;
}

/* === GARANTIA === */
.garantia {
    padding: 80px 0;
    background: #fff;
}

.garantia-box {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    background: #f9f9f9;
    border-radius: 20px;
    padding: 40px;
    border: 2px solid #e8e8e8;
}

.garantia-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.garantia-badge {
    font-size: 3rem;
}

.garantia-icon span:last-child {
    font-weight: 800;
    font-size: 1.1rem;
    color: #c2185b;
}

.garantia-text h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #2d2d2d;
}

.garantia-text p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* === FAQ === */
.faq {
    padding: 80px 0;
    background: #fff5f5;
}

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

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: #2d2d2d;
    font-family: 'Inter', sans-serif;
    text-align: left;
}

.faq-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: #c2185b;
}

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

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

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

.faq-answer p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* === PROFESSORA === */
.professora {
    padding: 80px 0;
    background: #fff;
}

.professora-grid {
    display: flex;
    align-items: center;
    gap: 48px;
}

.professora-foto {
    flex: 0 0 300px;
    max-width: 300px;
}

.professora-foto img {
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.foto-916 {
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 20px;
}

.foto-916 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
}

.professora-bio {
    flex: 1;
}

.professora-bio p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 16px;
    line-height: 1.7;
}

.destaque-text {
    color: #c2185b;
    font-weight: 700;
    font-size: 1.1rem !important;
    margin-top: 24px !important;
    margin-bottom: 24px !important;
}

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

.footer p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-legal {
    margin-top: 12px;
    font-size: 0.8rem !important;
    color: rgba(255,255,255,0.4) !important;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* === FLOATING BAR === */
.floating-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 12px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: none;
}

.floating-bar.visible {
    transform: translateY(0);
}

/* ========================================
   RESPONSIVO
   ======================================== */

/* ========================================
   DESKTOP (min-width: 769px)
   ======================================== */
@media (min-width: 769px) {
    /* Hero desktop: side by side */
    .hero {
        display: flex;
        align-items: stretch;
    }

    .hero-image-wrapper {
        flex: 0 0 50%;
        max-height: 600px;
    }

    .hero-text-block {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 60px 48px;
        text-align: left;
    }

    .hero-text-block h1 {
        font-size: 2rem;
    }

    .hero-top-title strong {
        font-size: 2rem;
    }

    /* Para quem desktop: horizontal */
    .para-quem {
        padding: 64px 0;
    }

    .check-cards {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }

    .check-card {
        flex: 1 1 calc(50% - 8px);
    }

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

    /* GIF preview desktop */
    .gif-preview {
        padding: 64px 0 32px;
    }

    .gif-preview .section-title {
        font-size: 1.6rem;
    }

    .gif-wrapper {
        max-width: 500px;
    }

    /* Galeria desktop */
    .galeria {
        padding: 0 0 64px;
    }

    .bolos-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }

    /* Beneficios desktop */
    .beneficios-layout {
        flex-direction: row;
        align-items: stretch;
    }

    .beneficios-foto {
        flex: 0 0 380px;
        max-width: 380px;
        max-height: none;
    }

    .beneficios-content {
        padding: 48px 48px 48px 0;
    }

    /* Modulos desktop */
    .cards-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Depoimentos desktop */
    .depoimentos-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Bonus desktop */
    .bonus-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================================
   MOBILE (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
    .section-title { font-size: 1.4rem; }

    .bolos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .cards-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .depoimentos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .preco-box {
        padding: 36px 24px;
    }

    .preco-numero { font-size: 2.8rem; }

    .garantia-box {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

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

    .professora-foto {
        flex: 0 0 auto;
        max-width: 240px;
        margin: 0 auto;
    }

    .professora-bio .section-title { text-align: center; }

    .floating-bar {
        display: block;
    }

    .btn-lg {
        padding: 16px 36px;
        font-size: 0.95rem;
    }

    .btn-xl {
        padding: 18px 40px;
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .bolos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

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

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

    .preco-numero { font-size: 2.4rem; }
}

/* === ANIMACOES === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bolo-card,
.check-card,
.modulo-card,
.bonus-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Pulse no botao de checkout */
@keyframes pulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(194, 24, 91, 0.4); }
    50% { box-shadow: 0 6px 30px rgba(194, 24, 91, 0.6); }
}

#btn-checkout {
    animation: pulse 2s infinite;
}
