/* ============================
   LANDING PAGES — Shared Components
   Dra. Viviane Rossi
   Imported AFTER shared.css
   ============================ */

/* ============================
   HERO (base)
   ============================ */
.hero {
    padding: 140px 0 100px;
    background: var(--color-bg-alt);
    overflow: hidden;
}
.hero-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-accent-hover);
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.hero-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--color-accent);
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 24px;
}
.hero-title em {
    font-style: italic;
    color: var(--color-accent-hover);
}
.hero-text {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 36px;
}
.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-image {
    position: relative;
}
.hero-image img {
    border-radius: 12px;
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center;
}
.hero-image::after {
    content: '';
    position: absolute;
    inset: 12px -12px -12px 12px;
    border: 2px solid var(--color-accent-light);
    border-radius: 12px;
    z-index: -1;
}

/* ============================
   DIFERENCIAIS (icon + text list)
   ============================ */
.diferenciais {
    display: grid;
    gap: 20px;
}
.diferencial {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.diferencial-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--color-accent);
}
.diferencial-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

/* ============================
   DEPOIMENTO (centered quote)
   ============================ */
.depoimento {
    padding: 80px 0;
    background: var(--color-bg-alt);
}
.depoimento .container {
    max-width: 700px;
    text-align: center;
}
.depoimento-stars {
    color: var(--color-accent);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.depoimento-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--color-text);
    position: relative;
}
.depoimento-quote::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--color-accent-light);
    line-height: 0;
    position: relative;
    top: 20px;
    margin-right: 4px;
}
.depoimento-author {
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-weight: 400;
}

/* ============================
   FAQ SECTION (LP override)
   ============================ */
.faq-section {
    padding: 100px 0;
    background: var(--color-bg-alt);
}
.faq-section .faq-list {
    margin-top: 0;
}

/* ============================
   CTA SECTION (dark footer CTA)
   ============================ */
.cta-section {
    padding: 100px 0;
    background: var(--color-text);
    text-align: center;
    color: var(--color-white);
}
.cta-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 400;
    margin-bottom: 16px;
}
.cta-section p {
    color: rgba(254, 254, 254, 0.6);
    margin-bottom: 36px;
    font-size: 0.95rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
.cta-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: rgba(254,254,254,0.5);
}
.cta-trust-item svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

/* ============================
   RESPONSIVE — Landing Pages
   ============================ */
@media (max-width: 768px) {
    .hero { padding: 80px 0 48px; }
    .hero-image { order: -1; }
    .hero-image img { height: 320px; }
    .hero-image::after { display: none; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn-primary,
    .hero-cta .btn-outline { width: 100%; justify-content: center; text-align: center; }
    .faq-section { padding: 60px 0; }
    .cta-section { padding: 60px 0; }
    .cta-trust { flex-direction: column; gap: 12px; align-items: center; }
    .depoimento { padding: 60px 0; }
}
