@charset "utf-8";

/**
 * =============================================================================
 * Emiko Yamana Astrologia - Homepage Layout
 * -----------------------------------------------------------------------------
 * Premium landing page structure.
 * =============================================================================
 */

/* -----------------------------------------------------------------------------
 * General typography
 * -------------------------------------------------------------------------- */
body {
    font-family: 'Poppins', sans-serif;
}

.site-header {
    background-color: rgba(247, 243, 234, 0.96);
    border-bottom: 1px solid #dee2e6;
    padding: 1rem 0 0.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header__content {
    display: flex;
    flex-direction: row;
    width: 100vw;
    align-items: center; 
    height: 6rem;
    padding: 0.8rem 1.5rem 0 1.5rem;
}

/* -----------------------------------------------------------------------------
 * Header navigation — Tablet
 * Keep mobile navigation until desktop breakpoint
 * -------------------------------------------------------------------------- */

#mobile-menu-toggle-container {
    margin-right: 2rem;
}

@media (min-width: 768px) and (max-width: 991px) {

    #mobile-menu-toggle-container {
        display: block;
    }

    #desktop-main-nav,
    #topbar-lang-switcher {
        display: none;
    }

    .header-right-panel {
        width: auto;
        margin-left: auto;
    }
}

@media (min-width: 992px) {

    #mobile-menu-toggle-container {
        display: none;
    }

    #desktop-main-nav,
    #topbar-lang-switcher {
        display: flex;
        align-items: center;
    }

    .header-right-panel {
        width: 60%;
    }
}

/* -----------------------------------------------------------------------------
 * Base Page Structure
 * -------------------------------------------------------------------------- */
main {
    padding: 0;
}

.site-logo {
    margin-left: 2rem;
}

.site-header {
    padding: 2rem 0 2rem 0;
}

.site-main {
    width: 100%;
    overflow: hidden;
}

.site-link {
    color: var(--ks-color-primary, #007647);
}

.home-page {
    background: var(--ks-color-background, #ffffff);
}

.page-section {
    padding: clamp(4rem, 7vw, 7rem) 1.5rem;
}

.section-content {
    width: min(1120px, 100%);
    margin-inline: auto;
}

.section-header {
    max-width: 760px;
    margin-inline: auto;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
    text-align: center;
}

.section-kicker {
    margin: 0 0 0.75rem;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-header .section-title {
    max-width: 820px;
    margin-inline: auto;
}

.section-title {
    margin: 0 0 1.5rem;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 1.12;
    font-weight: 600;
}

.section-lead {
    max-width: 720px;
    margin: 0 auto 1.5rem;
    font-size: clamp(1.4rem, 2vw, 1.6rem);
    line-height: 1.75;
}

.section-text {
    margin: 1.5rem 0 0;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.8;
}

.section-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.ul-li-disc li {
    list-style: inside;
}

/* =============================================================================
 * Site Footer
 * ============================================================================= */

.site-footer {
    background: #181954;
    color: rgba(255, 255, 255, 0.82);
}

.site-footer__main {
    padding: 4rem 1.5rem;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.site-footer__column {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.site-footer__column--brand {
    
}

.site-footer__brand {
    margin: 0;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.3;
}

.site-footer__tagline {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.68);
}

.site-footer__heading {
    margin: 0;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.site-footer__links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__links li {
    margin: 0;
    padding: 0;
}

.site-footer__links a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.5;
    text-decoration: none;
    cursor: pointer;
    transition:
        color 180ms ease,
        opacity 180ms ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
    color: #ffffff;
    text-decoration: none;
}

.site-footer__bottom {
    padding: 0 1.5rem;
}

.site-footer__bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__copyright,
.site-footer__credits {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.58);
}

.site-footer__credits a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: color 180ms ease;
}

.site-footer__credits a:hover,
.site-footer__credits a:focus-visible {
    color: #ffffff;
    text-decoration: none;
}

.site-footer__credits-separator {
    color: rgba(255, 255, 255, 0.36);
}


/* -----------------------------------------------------------------------------
 * Tablet
 * -------------------------------------------------------------------------- */

@media (min-width: 768px) {

    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 3rem 4rem;
    }

    .site-footer__column--brand {
        grid-column: auto;
        max-width: 28rem;
        text-align: left;
    }

    .site-footer__column {
        text-align: right;
    }

    .site-footer__bottom-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
    }

    .site-footer__credits {
        justify-content: flex-end;
        text-align: right;
    }

    .site-footer__credits {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.4rem;
    }
}


/* -----------------------------------------------------------------------------
 * Desktop
 * -------------------------------------------------------------------------- */

@media (min-width: 992px) {

    .site-footer__main {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .site-footer__grid {
        grid-template-columns:
            minmax(0, 1.5fr)
            minmax(0, 1fr)
            minmax(0, 1fr)
            minmax(0, 1fr);
        gap: 4rem;
    }

    .site-footer__column--brand {
        grid-column: auto;
        text-align: left;
    }
}

/* -----------------------------------------------------------------------------
 * Hero Slider Wrapper
 * -------------------------------------------------------------------------- */

.home-hero-slider {
    width: 100%;
}

/* -----------------------------------------------------------------------------
 * Cards
 * -------------------------------------------------------------------------- */

.feature-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
}

.feature-card {
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}

.feature-card__title {
    margin: 0;
    font-size: 1.8rem;
    line-height: 1.35;
    font-weight: 600;
}

.feature-card__text {
    margin: 1rem 0 0;
    line-height: 1.75;
    font-size: 1.4rem;
}

/* -----------------------------------------------------------------------------
 * Two Column Layout
 * -------------------------------------------------------------------------- */

.two-column-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.two-column-layout__content {
    min-width: 0;
}

.two-column-layout__media {
    min-width: 0;
}

.image-placeholder {
    min-height: clamp(320px, 45vw, 520px);
    border-radius: 2rem;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.8), transparent 35%),
        linear-gradient(135deg, rgba(60, 39, 82, 0.16), rgba(165, 122, 81, 0.18));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

.home-about__image-wrap {
    overflow: hidden;
    padding: 0;
}

.home-about__image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: clamp(320px, 45vw, 520px);
    object-fit: cover;
    object-position: center center;
    border-radius: inherit;
}

/* -----------------------------------------------------------------------------
 * Difference Section
 * -------------------------------------------------------------------------- */

.home-difference {
    background:
        radial-gradient(circle at top left, rgba(165, 122, 81, 0.14), transparent 35%),
        linear-gradient(180deg, rgba(250, 247, 242, 0.9), rgba(255, 255, 255, 1));
}

.premium-note {
    padding: clamp(1.75rem, 4vw, 3rem);
    border-radius: 2rem;
    border: 1px solid rgba(165, 122, 81, 0.24);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
}

.premium-note__text {
    font-size: clamp(1.4rem, 2vw, 1.65rem);
    line-height: 1.55;
}

/* -----------------------------------------------------------------------------
 * About Section
 * -------------------------------------------------------------------------- */

.home-about {
    background: #ffffff;
}

/* -----------------------------------------------------------------------------
 * Benefits
 * -------------------------------------------------------------------------- */

.home-benefits {
    background:
        radial-gradient(circle at 15% 10%, rgba(155, 118, 83, 0.10), transparent 30%),
        rgba(250, 247, 242, 0.78);
}

.benefit-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.6rem);
}

.benefit-item {
    position: relative;
    padding: clamp(1.6rem, 3vw, 2.15rem);
    border-radius: 1.35rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88));
    border: 1px solid rgba(70, 46, 88, 0.10);
    box-shadow: 0 18px 46px rgba(42, 29, 58, 0.055);
    overflow: hidden;
}

.benefit-item::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, rgba(111, 77, 139, 0.65), rgba(155, 118, 83, 0.65));
    opacity: 0.75;
}

.benefit-item__title {
    margin: 0;
    font-size: 1.8rem;
    line-height: 1.35;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: rgba(42, 29, 58, 0.92);
}

.benefit-item__text {
    margin: 0.9rem 0 0;
    font-size: clamp(1.4rem, 1.5vw, 1.4rem);
    line-height: 1.72;
    color: rgba(18, 14, 24, 0.92);
}

/* -----------------------------------------------------------------------------
 * Final CTA
 * -------------------------------------------------------------------------- */

.home-final-cta {
    background:
        radial-gradient(circle at top right, rgba(165, 122, 81, 0.18), transparent 34%),
        linear-gradient(135deg, rgba(45, 38, 99, 0.96), rgb(25, 31, 119));
}

.premium-cta {
    max-width: 860px;
    margin-inline: auto;
    text-align: center;
    color: #ffffff;
}

.premium-cta__kicker {
    margin: 0 0 1rem;
    font-size: 1.4rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.premium-cta__title {
    margin: 0;
    font-size: clamp(2.8rem, 4vw, 3.6rem);
    font-weight: 600;
    line-height: 1.12;
}

.premium-cta__text {
    max-width: 720px;
    margin: 3rem auto 0;
    font-size: clamp(1.4rem, 1.7vw, 1.4rem);
    line-height: 1.75;
}

.premium-cta__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* -----------------------------------------------------------------------------
 * WhatsApp Button Fragment
 * -------------------------------------------------------------------------- */



/* -----------------------------------------------------------------------------
 * Responsive
 * -------------------------------------------------------------------------- */

@media (max-width: 900px) {
    .feature-card-grid,
    .benefit-list,
    .two-column-layout {
        grid-template-columns: 1fr;
    }

    .two-column-layout {
        gap: 2.5rem;
    }

    .home-about__layout .two-column-layout__media {
        order: -1;
    }
}

@media (max-width: 640px) {
    .page-section {
        padding: 3.5rem 1.1rem;
    }

    .section-header {
        text-align: left;
    }

    .section-lead {
        margin-inline: 0;
    }

    .section-actions,
    .premium-cta__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .section-actions .btn,
    .premium-cta__actions .btn,
    .premium-cta__actions .btn-whatsapp,
    .whatsapp-contact-section {
        width: 100%;
    }

    .btn-whatsapp {
        width: 100%;
    }

    .premium-cta {
        text-align: left;
    }

    .premium-cta__text {
        margin-inline: 0;
    }
}

/**
 * -----------------------------------------------------------------------------
 * Premium Buttons
 * -------------------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.85rem 1.45rem;
    border-radius: 10px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
    text-decoration: none;
}

.btn-primary {
    color: #2a1d3a;
    background: linear-gradient(135deg, #e3c581, #c9a24a);
    border: 1px solid rgba(227, 197, 129, 0.5);
    box-shadow: 0 14px 34px rgba(201, 162, 74, 0.3);
    padding: 2rem;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    color: #2a1d3a;
    box-shadow: 0 18px 42px rgba(201, 162, 74, 0.4);
}

.btn-secondary {
    color: #2a1d3a;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(42, 29, 58, 0.18);
    padding: 2rem;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    color: #2a1d3a;
    background: #ffffff;
    border-color: rgba(155, 118, 83, 0.38);
}

/* =============================================================================
 * Consultation Page — Componentes nuevos
 * icon-list, process-steps, faq-list, feature-card__icon
 * Agregar al final de custom-styles.css
 * ============================================================================= */

/* -----------------------------------------------------------------------------
 * Icon List — Para quem / Benefícios / Dados necessários
 * Grid de 2 columnas con ícono a la izquierda y texto a la derecha
 * -------------------------------------------------------------------------- */

.icon-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.4rem);
}

.icon-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: clamp(1.4rem, 2.5vw, 1.9rem);
    border-radius: 1.2rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88));
    border: 1px solid rgba(70, 46, 88, 0.09);
    box-shadow: 0 14px 38px rgba(42, 29, 58, 0.05);
}

.icon-item__icon {
    flex-shrink: 0;
    font-size: 3.6rem;
    line-height: 1;
    color: rgba(111, 77, 139, 0.75);
    margin-top: 0.15rem;
}

.icon-item__text {
    margin: 0;
    font-size: clamp(1.4rem, 1.5vw, 1.4rem);
    line-height: 1.72;
    color: rgba(18, 14, 24, 0.88);
}

/* -----------------------------------------------------------------------------
 * Process Steps — Como funciona o processo
 * Grid de 2 columnas, ícono + número + título + texto
 * -------------------------------------------------------------------------- */

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.6rem);
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: clamp(1.6rem, 3vw, 2.2rem);
    border-radius: 1.5rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.97), rgba(255,255,255,0.90));
    border: 1px solid rgba(70, 46, 88, 0.09);
    box-shadow: 0 18px 46px rgba(42, 29, 58, 0.055);
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, rgba(111, 77, 139, 0.65), rgba(155, 118, 83, 0.65));
    opacity: 0.75;
}

.process-step__icon-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(111, 77, 139, 0.12), rgba(155, 118, 83, 0.12));
    border: 1px solid rgba(111, 77, 139, 0.18);
}

.process-step__icon {
    font-size: 3.2rem;
    line-height: 1;
    color: rgba(111, 77, 139, 0.80);
}

.process-step__content {
    min-width: 0;
}

.process-step__number {
    display: inline-block;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(155, 118, 83, 0.85);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.process-step__title {
    margin: 0 0 0.6rem;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.3;
    color: rgba(42, 29, 58, 0.92);
}

.process-step__text {
    margin: 0;
    font-size: clamp(1.4rem, 1.5vw, 1.35rem);
    line-height: 1.72;
    color: rgba(18, 14, 24, 0.80);
}

/* -----------------------------------------------------------------------------
 * FAQ List — Perguntas frequentes
 * Lista de pregunta + respuesta con ícono de apoyo
 * -------------------------------------------------------------------------- */

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.4rem);
}

.faq-item {
    padding: clamp(1.6rem, 3vw, 2.2rem);
    border-radius: 1.35rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88));
    border: 1px solid rgba(70, 46, 88, 0.09);
    box-shadow: 0 14px 38px rgba(42, 29, 58, 0.05);
}

.faq-item__header {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    margin-bottom: 0.9rem;
}

.faq-item__icon {
    flex-shrink: 0;
    font-size: 2.4rem;
    line-height: 1.2;
    color: rgba(155, 118, 83, 0.80);
    margin-top: 0.1rem;
}

.faq-item__question {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.35;
    color: rgba(42, 29, 58, 0.92);
}

.faq-item__answer {
    margin: 0;
    font-size: clamp(1.4rem, 1.5vw, 1.35rem);
    line-height: 1.75;
    color: rgba(18, 14, 24, 0.80);
    padding-left: 2.5rem;
}

/* -----------------------------------------------------------------------------
 * Feature Card con ícono — Sección Inversión
 * -------------------------------------------------------------------------- */

.feature-card__icon {
    display: block;
    font-size: 4.8rem;
    line-height: 1;
    color: rgba(111, 77, 139, 0.70);
    margin-bottom: 1.2rem;
}

/* -----------------------------------------------------------------------------
 * Sección backgrounds
 * -------------------------------------------------------------------------- */

.consultation-for-whom {
    background:
        radial-gradient(circle at 15% 10%, rgba(155, 118, 83, 0.10), transparent 30%),
        rgba(250, 247, 242, 0.78);
}

.consultation-benefits {
    background: #ffffff;
}

.consultation-process {
    background:
        radial-gradient(circle at top left, rgba(165, 122, 81, 0.10), transparent 35%),
        linear-gradient(180deg, rgba(250, 247, 242, 0.9), rgba(255, 255, 255, 1));
}

.consultation-investment {
    background: #ffffff;
}
.consultation-investment .feature-card {
    text-align: center;
}

.consultation-investment__policy {
    margin-top: 2rem;
}

.consultation-faq {
    background:
        radial-gradient(circle at 15% 10%, rgba(155, 118, 83, 0.08), transparent 30%),
        rgba(250, 247, 242, 0.60);
}

/* -----------------------------------------------------------------------------
 * Responsive
 * -------------------------------------------------------------------------- */

@media (max-width: 900px) {
    .icon-list,
    .process-steps,
    .faq-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .faq-item__answer {
        padding-left: 0;
    }

    .process-step {
        gap: 1.2rem;
    }
}

/* -----------------------------------------------------------------------------
 * Contact
 * -------------------------------------------------------------------------- */
.btn-whatsapp {
    color: #2a1d3a;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(42, 29, 58, 0.18);
    padding: 2rem;
    border-radius: 999px;
}

.btn-whatsapp:hover {
    background-color: #e3c581;
}

.form-contact button[type="submit"] {
    background: linear-gradient(135deg, #e3c581, #c9a24a);
}

/* -----------------------------------------------------------------------------
 * Consulation
 * -------------------------------------------------------------------------- */
.consultation-hero__image-wrap {
    overflow: hidden;
    border-radius: 0.8rem;
}

.consultation-hero__image {
    display: block;
    width: 100%;
    height: auto;
}
