/* ===========================================
   MANUAL DOS CACHOS PERFEITOS - Landing Page
   =========================================== */

/* Override: Playfair Display para headlines */
.lp h1,
.lp h2,
.lp h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

.lp .accent {
    color: var(--accent);
}

/* ===========================================
   URGENCY BAR (Fixed top)
   =========================================== */

.urgency-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #e02020;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    padding: 0.6rem 1rem;
    letter-spacing: 0.02em;
}

.urgency-bar strong {
    font-weight: 700;
}

.lp main {
    padding-top: 38px;
}

/* ===========================================
   HERO SPLIT
   =========================================== */

.lp-hero {
    background: linear-gradient(135deg, #faf6f0 0%, #ffffff 60%);
    padding: 2rem 0 0;
    overflow: hidden;
}

.lp-hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .lp-hero .container {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }
}

.lp-hero__text {
    flex: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .lp-hero__text {
        text-align: left;
    }
}

.lp-hero__badge {
    display: inline-block;
    background-color: var(--accent);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.25rem;
}

.lp-hero h1 {
    font-size: 1.625rem;
    line-height: 1.25;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .lp-hero h1 {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .lp-hero h1 {
        font-size: 2.35rem;
    }
}

.lp-hero__sub {
    font-size: 1.05rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 500px;
}

@media (min-width: 768px) {
    .lp-hero__sub {
        font-size: 1.125rem;
    }
}

.lp-hero__price {
    margin-bottom: 1.5rem;
}

.lp-hero__price .price-old {
    font-size: 1rem;
    color: var(--muted-foreground);
    text-decoration: line-through;
}

.lp-hero__price .price-new {
    font-size: 2.25rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-top: 0.25rem;
}

@media (min-width: 640px) {
    .lp-hero__price .price-new {
        font-size: 2.75rem;
    }
}

.lp-hero__image {
    flex: 0 0 auto;
    width: 320px;
    height: 320px;
    overflow: hidden;
    border-radius: 1rem;
}

@media (min-width: 768px) {
    .lp-hero__image {
        width: 360px;
        height: 360px;
    }
}

@media (min-width: 1024px) {
    .lp-hero__image {
        width: 400px;
        height: 400px;
    }
}

.lp-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ===========================================
   CTA BUTTON (global para LP)
   =========================================== */

.lp-cta {
    display: inline-block;
    background-color: var(--primary);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.9rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 15px rgba(143, 82, 46, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

@media (min-width: 640px) {
    .lp-cta {
        font-size: 1rem;
        padding: 1rem 2.5rem;
    }
}

.lp-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(143, 82, 46, 0.45);
}

/* ===========================================
   WAVE DIVIDER
   =========================================== */

.wave-divider {
    width: 100%;
    line-height: 0;
    overflow: hidden;
    margin-top: -1px;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 30px;
}

@media (min-width: 768px) {
    .wave-divider svg {
        height: 50px;
    }
}

/* ===========================================
   DESCRICAO (Box destaque)
   =========================================== */

.lp-description {
    background-color: #1e1612;
    padding: 1.5rem 0 3rem;
}

.lp-description__box {
    max-width: 750px;
    margin: 0 auto;
    border: 2px solid var(--accent);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
}

@media (min-width: 640px) {
    .lp-description__box {
        padding: 2.5rem 3rem;
    }
}

.lp-description__box h2 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

@media (min-width: 640px) {
    .lp-description__box h2 {
        font-size: 1.75rem;
    }
}

.lp-description__box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
}

/* ===========================================
   BENEFICIOS (4 cards)
   =========================================== */

.lp-benefits {
    background-color: #fff;
    padding: 4rem 0;
}

.lp-benefits__title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--foreground);
    margin-bottom: 2.5rem;
    line-height: 1.3;
}

@media (min-width: 640px) {
    .lp-benefits__title {
        font-size: 1.875rem;
    }
}

.lp-benefits__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .lp-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.benefit-card {
    background: #fff;
    border: 2px solid var(--accent);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.benefit-card:hover {
    box-shadow: 0 8px 20px rgba(224, 179, 28, 0.15);
    transform: translateY(-3px);
}

.benefit-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: var(--accent);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    color: #fff;
}

.benefit-card__icon svg {
    width: 28px;
    height: 28px;
}

.benefit-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--foreground);
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--muted-foreground);
    line-height: 1.65;
}

/* ===========================================
   OFERTA + GARANTIA
   =========================================== */

.lp-offer {
    background-color: #1e1612;
    padding: 4rem 0;
}

.lp-offer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .lp-offer .container {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 4rem;
    }
}

.lp-offer__pricing {
    text-align: center;
    flex: 1;
    max-width: 400px;
}

.lp-offer__card {
    background: linear-gradient(145deg, #15100c, #1e1612);
    border: 2px solid rgba(224, 179, 28, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.lp-offer__card .product-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.lp-offer__card .product-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.lp-offer__card .price-old {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.lp-offer__card .price-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.lp-offer__card .price-new {
    font-size: 3rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin: 0.5rem 0;
}

.lp-offer__card .price-installment {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.lp-offer__guarantee {
    text-align: center;
    flex: 1;
    max-width: 400px;
}

.lp-offer__seal {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.25rem;
    background: conic-gradient(from 0deg, #D4AF37, #f5d060, #D4AF37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(224, 179, 28, 0.3);
}

.lp-offer__seal-inner {
    width: 120px;
    height: 120px;
    background: #1e1612;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lp-offer__seal-inner .days {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.lp-offer__seal-inner .label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
}

.lp-offer__guarantee h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.lp-offer__guarantee p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===========================================
   AUTORIDADE (Bio)
   =========================================== */

.lp-authority {
    background-color: #1e1612;
    padding: 4rem 0;
}

.lp-authority .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .lp-authority .container {
        flex-direction: row;
        align-items: flex-start;
        gap: 3rem;
    }
}

.lp-authority__text {
    flex: 1;
}

.lp-authority__text h2 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    font-style: italic;
}

@media (min-width: 640px) {
    .lp-authority__text h2 {
        font-size: 1.75rem;
    }
}

.lp-authority__text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 400;
}

.lp-authority__image {
    flex-shrink: 0;
    width: 280px;
    height: 340px;
    border-radius: 1rem;
    overflow: hidden;
    background: linear-gradient(135deg, #a8e6cf, #88d4ab);
}

@media (min-width: 768px) {
    .lp-authority__image {
        width: 320px;
        height: 400px;
    }
}

.lp-authority__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===========================================
   FAQ (Accordion)
   =========================================== */

.lp-faq {
    background-color: #15100c;
    padding: 4rem 0;
}

.lp-faq__title {
    text-align: left;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .lp-faq__title {
        font-size: 1.75rem;
    }
}

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

.faq-item {
    border-bottom: 1px solid var(--accent);
}

.faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    transition: color 0.2s;
}

.faq-item__question:hover {
    color: var(--accent);
}

.faq-item__question .arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--accent);
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

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

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

.faq-item.active .faq-item__answer {
    max-height: 300px;
    padding-bottom: 1.25rem;
}

.faq-item__answer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===========================================
   CTA FINAL
   =========================================== */

.lp-cta-final {
    background-color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.lp-cta-final h2 {
    font-size: 1.5rem;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .lp-cta-final h2 {
        font-size: 1.875rem;
    }
}

.lp-cta-final p {
    color: var(--muted-foreground);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.lp-cta-final__transform {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.lp-cta-final__risk {
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* ===========================================
   FOOTER LP
   =========================================== */

.lp-footer {
    background-color: #15100c;
    padding: 1.5rem 0;
    text-align: center;
}

.lp-footer p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}
