/* =========================================================
   GUADALUPE DE LOS ÁNGELES
   PSICOLOGÍA PARA ADULTOS
   PREMIUM VISUAL SYSTEM
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
    --green: #66705A;
    --green-dark: #4E5745;
    --green-light: #DDE1D3;

    --cream: #F7F5EE;
    --cream-dark: #E9E4D8;

    --brown: #8A806B;
    --text: #30342D;
    --muted: #73786D;

    --white: #FFFFFF;

    --border: rgba(48, 52, 45, 0.10);

    --shadow-sm:
        0 8px 30px rgba(48, 52, 45, 0.06);

    --shadow-lg:
        0 30px 80px rgba(48, 52, 45, 0.12);

    --radius: 24px;

    --serif: "Playfair Display", Georgia, serif;
    --sans: "DM Sans", sans-serif;
}

/* =========================================================
   RESET
   ========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

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

button,
input,
select,
textarea {
    font-family: inherit;
}

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

::selection {
    background: var(--green);
    color: white;
}


/* =========================================================
   GLOBAL
   ========================================================= */

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.section {
    padding: 120px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;

    color: var(--green);

    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
}

.section h2 {
    font-family: var(--serif);
    font-weight: 500;

    font-size: clamp(40px, 5vw, 64px);

    line-height: 1.05;

    letter-spacing: -1.8px;
}

.skip-link {
    position: fixed;
    left: -9999px;
    top: 15px;
}

.skip-link:focus {
    left: 15px;
    z-index: 9999;

    background: white;
    padding: 12px 18px;
    border-radius: 8px;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;

    z-index: 100;

    background: rgba(250, 248, 243, 0.82);

    backdrop-filter: blur(20px);

    border-bottom: 1px solid rgba(36, 52, 49, 0.08);
}

.nav {
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* BRAND */

.brand {
    display: flex;
    align-items: center;

    gap: 12px;
}

.brand-mark {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            var(--green),
            var(--green-dark)
        );

    color: white;

    font-family: var(--serif);
    font-size: 25px;

    box-shadow:
        0 8px 20px rgba(49, 92, 88, 0.20);
}

.brand strong {
    display: block;

    font-size: 14px;

    letter-spacing: -0.3px;
}

.brand small {
    display: block;

    font-size: 10px;

    color: var(--muted);

    letter-spacing: 0.3px;
}


/* NAV */

.nav-links {
    display: flex;
    align-items: center;

    gap: 30px;

    font-size: 13px;
    font-weight: 600;
}

.nav-links a {
    transition:
        color .2s ease,
        transform .2s ease;
}

.nav-links a:hover {
    color: var(--green);
}

.nav-cta {
    background: var(--green);

    color: white;

    padding: 12px 21px;

    border-radius: 999px;

    box-shadow:
        0 8px 20px rgba(49, 92, 88, 0.18);
}

.nav-cta:hover {
    color: white !important;

    transform: translateY(-2px);
}


/* MOBILE MENU */

.menu-toggle {
    display: none;

    border: 1px solid var(--border);

    background: white;

    padding: 9px 14px;

    border-radius: 10px;

    cursor: pointer;
}


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

.hero {
    position: relative;

    min-height: calc(100vh - 82px);

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(176, 201, 190, .45),
            transparent 30%
        ),

        radial-gradient(
            circle at 5% 85%,
            rgba(217, 198, 175, .25),
            transparent 28%
        ),

        linear-gradient(
            135deg,
            #f7f4ed,
            #eef3ef
        );
}


/* DECORATIVE CIRCLE */

.hero::after {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    border: 1px solid rgba(49, 92, 88, .10);

    right: -260px;
    bottom: -280px;
}


/* HERO GRID */

.hero-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.05fr
        .95fr;

    gap: 90px;

    align-items: center;
}


/* HERO TEXT */

.hero-copy {
    animation: heroIn .8s ease both;
}

@keyframes heroIn {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


.hero h1 {
    font-family: var(--serif);

    font-weight: 500;

    font-size: clamp(
        52px,
        6vw,
        82px
    );

    line-height: .98;

    letter-spacing: -3px;

    max-width: 760px;

    margin-bottom: 28px;
}

.hero h1 em {
    font-style: normal;

    color: var(--green);
}

.hero-text {
    max-width: 620px;

    font-size: 18px;

    color: var(--muted);

    margin-bottom: 35px;
}


/* HERO BUTTONS */

.hero-actions {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;

    margin-bottom: 35px;
}

.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    padding: 15px 23px;

    border-radius: 999px;

    border: 1px solid transparent;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.button.primary {
    background: var(--green);

    color: white;

    box-shadow:
        0 14px 30px rgba(49, 92, 88, .20);
}

.button.primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 35px rgba(49, 92, 88, .28);

    background: var(--green-dark);
}

.button.secondary {
    background: rgba(255,255,255,.65);

    border-color: rgba(49,92,88,.15);

    color: var(--green);
}

.button.secondary:hover {
    transform: translateY(-3px);

    background: white;
}


/* TRUST */

.trust-row {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    color: #75827e;

    font-size: 11px;
}


/* =========================================================
   HERO CARD
   ========================================================= */

.hero-card {
    position: relative;

    background: white;

    border-radius: 30px;

    overflow: hidden;

    box-shadow: var(--shadow-lg);

    transform: rotate(1.5deg);

    animation: cardIn .9s ease .1s both;
}

@keyframes cardIn {

    from {
        opacity: 0;

        transform:
            translateY(30px)
            rotate(4deg);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            rotate(1.5deg);
    }

}


/* IMAGE */

.portrait-placeholder {
    position: relative;

    height: 420px;

    display: grid;

    place-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #cbd9d0,
            #e6ddd1
        );
}



/* LETTER */

.portrait-placeholder span {
    position: relative;

    z-index: 2;

    width: 145px;
    height: 145px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,.50);

    backdrop-filter: blur(10px);

    color: var(--green);

    font-family: var(--serif);

    font-size: 75px;

    box-shadow:
        0 20px 50px rgba(49,92,88,.10);
}


/* CARD BODY */

.hero-card-body {
    padding: 30px;
}

.hero-card-body h2 {
    font-family: var(--serif);

    font-weight: 500;

    font-size: 32px;

    line-height: 1.1;

    margin-bottom: 10px;
}

.hero-card-body p:not(.eyebrow) {
    color: var(--muted);

    font-size: 14px;

    margin-bottom: 20px;
}

.hero-card-body a {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--green);

    font-weight: 700;

    font-size: 13px;
}


/* =========================================================
   INTRO
   ========================================================= */

.soft {
    background: var(--cream-dark);
}

.two-col {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.section-copy {
    font-size: 18px;

    color: var(--muted);
}

.section-copy p + p {
    margin-top: 20px;
}


/* =========================================================
   SERVICES
   ========================================================= */

.section-heading {
    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 60px;

    margin-bottom: 55px;
}

.section-heading > p {
    max-width: 380px;

    color: var(--muted);

    font-size: 15px;
}

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.service-card {
    position: relative;

    min-height: 290px;

    padding: 35px;

    background: white;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    overflow: hidden;

    box-shadow: var(--shadow-sm);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.service-card::after {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    background: var(--green-light);

    right: -50px;
    bottom: -50px;

    transition: transform .3s ease;
}

.service-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 25px 50px rgba(35,70,66,.12);
}

.service-card:hover::after {
    transform: scale(1.3);
}

.number {
    display: inline-block;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    color: var(--green);

    margin-bottom: 45px;
}

.service-card h3 {
    position: relative;

    z-index: 2;

    font-family: var(--serif);

    font-size: 29px;

    line-height: 1.08;

    font-weight: 500;

    margin-bottom: 15px;
}

.service-card p {
    position: relative;

    z-index: 2;

    color: var(--muted);

    font-size: 14px;
}


/* =========================================================
   APPROACH
   ========================================================= */

.approach {
    position: relative;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(145,184,169,.25),
            transparent 25%
        ),

        var(--green);

    color: white;

    overflow: hidden;
}

.approach::after {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.10);

    right: -220px;
    bottom: -220px;
}

.approach-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr
        .85fr;

    gap: 100px;

    align-items: center;
}

.approach .eyebrow {
    color: #bcd0c8;
}

.approach-panel h2 {
    max-width: 650px;
}

.approach-panel > p:last-child {
    max-width: 600px;

    color: #d6e2dd;

    font-size: 18px;

    margin-top: 25px;
}

.principles {
    display: grid;

    gap: 25px;
}

.principles > div {
    display: grid;

    grid-template-columns: 45px 1fr;

    gap: 12px;

    padding-top: 20px;

    border-top:
        1px solid
        rgba(255,255,255,.18);
}

.principles span {
    font-size: 11px;

    opacity: .65;
}

.principles h3 {
    font-family: var(--serif);

    font-weight: 500;

    font-size: 27px;
}

.principles p {
    grid-column: 2;

    color: #cbdad5;

    font-size: 14px;
}


/* =========================================================
   PROCESS
   ========================================================= */

.centered {
    text-align: center;

    display: block;
}

.steps {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    margin-top: 65px;
}

.step {
    padding: 35px;

    background: white;

    border-radius: var(--radius);

    border: 1px solid var(--border);

    box-shadow: var(--shadow-sm);
}

.step > span {
    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--green-light);

    color: var(--green);

    font-weight: 700;

    font-size: 12px;

    margin-bottom: 25px;
}

.step h3 {
    font-family: var(--serif);

    font-size: 27px;

    font-weight: 500;

    margin-bottom: 10px;
}

.step p {
    color: var(--muted);

    font-size: 14px;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-grid {
    display: grid;

    grid-template-columns:
        .8fr
        1.2fr;

    gap: 100px;

    align-items: start;
}

.faq {
    border-top: 1px solid rgba(36,52,49,.15);
}

.faq details {
    border-bottom: 1px solid rgba(36,52,49,.15);

    padding: 22px 0;
}

.faq summary {
    cursor: pointer;

    font-weight: 700;

    padding-right: 30px;
}

.faq p {
    color: var(--muted);

    font-size: 14px;

    margin-top: 14px;
}


/* =========================================================
   BOOKING
   ========================================================= */

.booking {
    background:
        linear-gradient(
            135deg,
            #e7eee9,
            #f3eee6
        );
}

.booking-grid {
    display: grid;

    grid-template-columns:
        .85fr
        1.15fr;

    gap: 90px;

    align-items: start;
}

.booking-copy h2 {
    margin-bottom: 20px;
}

.booking-copy > p:not(.eyebrow) {
    color: var(--muted);

    font-size: 17px;
}

.booking-note {
    display: grid;

    gap: 4px;

    margin-top: 35px;

    padding: 20px;

    background: rgba(255,255,255,.55);

    border-left:
        3px solid
        var(--green);

    border-radius: 0 12px 12px 0;
}

.booking-note strong {
    font-size: 13px;
}

.booking-note span {
    color: var(--muted);

    font-size: 13px;
}


/* FORM */

.booking-form {
    padding: 35px;

    background: white;

    border-radius: 28px;

    border: 1px solid var(--border);

    box-shadow:
        0 30px 70px rgba(35,70,66,.10);
}

.form-row {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 16px;
}

label {
    display: grid;

    gap: 7px;

    color: #40524e;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 17px;
}

input,
select {
    width: 100%;

    padding: 13px 14px;

    border:
        1px solid
        #d9dfdb;

    background: #fbfcfa;

    border-radius: 11px;

    color: var(--text);

    outline: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

input:focus,
select:focus {
    border-color: var(--green);

    box-shadow:
        0 0 0 4px
        rgba(49,92,88,.10);
}

.check {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    font-weight: 500;

    color: var(--muted);

    font-size: 12px;
}

.check input {
    width: 17px;

    margin-top: 3px;

    accent-color: var(--green);
}

.error {
    color: #a74747;

    font-size: 11px;
}

.full {
    width: 100%;

    margin-top: 5px;
}

.form-disclaimer {
    color: #7a8582;

    font-size: 10px;

    margin-top: 14px;
}

.form-result {
    margin-top: 15px;

    font-size: 13px;

    font-weight: 700;
}


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

.footer {
    background: #1d3936;

    color: #dce7e2;

    padding: 65px 0 25px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        .7fr
        .7fr;

    gap: 70px;
}

.footer-brand strong {
    color: white;
}

.footer-brand small {
    color: #a8bab4;
}

.footer p {
    max-width: 390px;

    color: #aebfba;

    font-size: 13px;

    margin-top: 18px;
}

.footer h3 {
    color: #a8bab4;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1.7px;

    margin-bottom: 15px;
}

.footer-grid > div:not(:first-child) a {
    display: block;

    margin: 9px 0;

    color: #edf4f0;

    font-size: 13px;
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid
        rgba(255,255,255,.12);

    margin-top: 50px;

    padding-top: 18px;

    color: #9eb2ac;

    font-size: 10px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .nav-links {
        display: none;

        position: absolute;

        top: 82px;
        left: 0;
        right: 0;

        padding: 20px;

        background: var(--cream);

        border-bottom:
            1px solid
            var(--border);

        flex-direction: column;

        align-items: stretch;

        gap: 15px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-cta {
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding: 80px 0;
    }

    .hero-grid,
    .two-col,
    .approach-grid,
    .faq-grid,
    .booking-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .hero-card {
        max-width: 600px;

        margin-inline: auto;
    }

    .section-heading {
        flex-direction: column;

        align-items: start;

        gap: 20px;
    }

    .service-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 90px 0;
    }

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


@media (max-width: 600px) {

    .container {
        width:
            calc(100% - 28px);
    }

    .nav {
        height: 72px;
    }

    .nav-links {
        top: 72px;
    }

    .hero {
        min-height: auto;

        padding:
            70px 0
            60px;
    }

    .hero h1 {
        font-size: 47px;

        letter-spacing:
            -1.8px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .portrait-placeholder {
        height: 330px;
    }

    .section {
        padding: 75px 0;
    }

    .section h2 {
        font-size: 42px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 23px;
    }

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

    .footer-bottom {
        flex-direction: column;
    }
}
