:root {
    --bg: #030303;
    --bg-soft: #090807;
    --gold: #a87427;
    --gold-light: #c9943f;
    --gold-dark: #6f4816;
    --text: #f3eee5;
    --muted: #b7b0a5;
    --line: rgba(170, 116, 39, 0.32);
    --max-width: 1180px;
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Montserrat", Arial, sans-serif;
    --script: "Parisienne", cursive;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
}

body.menu-open,
body.modal-open {
    overflow: hidden;
}


#logo{
    width: auto;
    max-height: 120px;
}
@media (max-width: 720px) {
    #logo{
    width: auto;
    max-height: 80px;
}
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

.section {
    padding: 72px 0;
}

.site-header {
    position: relative;
    z-index: 50;
    background: var(--bg);
}

.top-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    min-height: 38px;
}

.buy-book-link {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--gold);
    color: #080603;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.header-socials,
.footer-socials {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-socials a {
    color: var(--text);
    font-size: 0.78rem;
}

.brand-row {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0 14px;
    border-bottom: 1px solid var(--line);
}

.site-brand {
    font-family: var(--serif);
    color: var(--gold-light);
    font-size: clamp(2.6rem, 6vw, 5.6rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.03em;
}

.menu-toggle {
    display: none;
    position: absolute;
    right: 0;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--gold-light);
    border-radius: 50%;
    cursor: pointer;
}

.main-nav {
    border-bottom: 1px solid rgba(170, 116, 39, 0.12);
}

.nav-inner {
    display: flex;
    justify-content: center;
    gap: clamp(20px, 4vw, 52px);
    padding: 15px 0;
}

.main-nav a,
.footer-nav a {
    font-family: var(--serif);
    font-size: 1rem;
    transition: color 0.25s ease;
}

.main-nav a:hover,
.footer-nav a:hover {
    color: var(--gold-light);
}

.hero {
    position: relative;
    width: 100%;
    min-height: 360px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero img {
    width: 100%;
    height: clamp(360px, 58vw, 720px);
    object-fit: cover;
    object-position: center;
}

.btn-over-image {
    position: absolute;
    left: 50%;
    bottom: 8%;
    transform: translateX(-50%);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 24px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--gold-light), var(--gold));
    color: #130c03;
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.about {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
    gap: clamp(40px, 8vw, 100px);
    align-items: center;
    border-bottom: 1px solid var(--line);
}

.about-title {
    text-align: right;
}

.about-title p {
    margin: 0 0 -10px;
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.about-title h1 {
    margin: 0;
    font-family: var(--serif);
    color: var(--gold-light);
    font-size: clamp(4rem, 8vw, 7.2rem);
    font-weight: 500;
    line-height: 0.72;
}

.about-title span {
    display: block;
    margin-top: 25px;
    font-size: 0.82rem;
    font-weight: 600;
}

.about-copy {
    color: #ded8cf;
    font-size: 0.93rem;
}

.about-copy p {
    margin: 0 0 14px;
}

.section-heading {
    margin-bottom: 56px;
    text-align: center;
}

.section-heading::before,
.section-heading::after {
    content: "";
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.section-heading h2 {
    margin: 14px 0;
    font-family: var(--serif);
    color: var(--gold-light);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-style: italic;
    font-weight: 500;
}

.book-grid,
.talk-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 48px);
}

.book-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.book-card img {
    width: 100%;
    aspect-ratio: 0.69;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.55));
}

.podcast {
    padding-top: 25px;
}

.podcast-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.65fr) minmax(320px, 1.35fr);
    gap: 44px;
    align-items: center;
    padding: clamp(28px, 5vw, 58px);
    border: 1px solid var(--line);
    border-radius: 28px;
    background: radial-gradient(circle at 20% 10%, rgba(168, 116, 39, 0.12), transparent 34%), var(--bg-soft);
}

.podcast-image img {
    width: 100%;
    max-height: 330px;
    object-fit: contain;
}

.podcast-content > span {
    font-size: 0.8rem;
    font-weight: 600;
}

.podcast-content h2 {
    margin: 0 0 12px;
    font-family: var(--serif);
    color: var(--gold-light);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 500;
}

.podcast-content p {
    color: #ded8cf;
    font-size: 0.95rem;
}

.talk-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.talk-card h3 {
    min-height: 90px;
    align-self: stretch;
    margin: 0 0 16px;
    font-family: var(--serif);
    color: var(--gold-light);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1;
}

.talk-card img {
    width: 100%;
    aspect-ratio: 0.72;
    object-fit: cover;
    border: 1px solid rgba(170, 116, 39, 0.2);
}

.talk-card p {
    flex: 1;
    color: #c8c1b7;
    font-size: 0.84rem;
    line-height: 1.75;
}

.site-footer {
    padding: 45px 0 26px;
    border-top: 1px solid var(--line);
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px 32px;
}

.footer-socials {
    justify-content: center;
    margin: 30px 0 20px;
}

.footer-socials a {
    color: var(--gold-light);
    font-size: 2rem;
}

.site-footer address {
    color: var(--muted);
    font-style: normal;
    font-size: 0.74rem;
}

.site-footer address a {
    color: var(--gold-light);
}

.copyright {
    margin-top: 24px;
    color: #77716a;
    font-size: 0.66rem;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    place-items: center;
    padding: 24px;
}

.modal.is-visible {
    display: grid;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 850px);
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #0b0907;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.7);
    font-size: 14px;
}

.modal-dialog h2 {
    margin: 0 0 16px;
    color: var(--gold-light);
    font-family: var(--serif);
    font-size: 2.4rem;
    max-height: 85vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    color: var(--text);
    cursor: pointer;
}

.modal-note {
    color: var(--muted);
    font-size: 0.8rem;
}


#review-modal-copy p {
    margin: 0 0 18px;
    line-height: 1.7;
}

#review-modal-copy p:last-child {
    margin-bottom: 0;
}


@media (max-width: 900px) {
    .about,
    .podcast-card {
        grid-template-columns: 1fr;
    }

    .about-title {
        text-align: center;
    }

    .book-grid,
    .talk-grid {
        gap: 24px;
    }

    .talk-card h3 {
        min-height: auto;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(calc(100% - 28px), var(--max-width));
    }

    .top-actions {
        display: none;
    }

    .brand-row {
        justify-content: flex-start;
        padding-block: 18px;
    }

    .site-brand {
        font-size: clamp(2rem, 10vw, 3.1rem);
    }

    .menu-toggle {
        display: inline-grid;
        place-items: center;
    }

    .main-nav {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(82vw, 360px);
        padding-top: 95px;
        background: #090806;
        border-left: 1px solid var(--line);
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .main-nav.is-open {
        transform: translateX(0);
    }

    .nav-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 0 24px;
    }

    .main-nav a {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid rgba(170, 116, 39, 0.18);
        font-size: 1.35rem;
    }

    .hero img {
        height: auto;
        min-height: 280px;
        object-fit: cover;
    }

    .btn-over-image {
        bottom: 5%;
    }

    .section {
        padding: 52px 0;
    }

    .book-grid,
    .talk-grid {
        grid-template-columns: 1fr;
    }

    .book-card img {
        max-width: 360px;
    }

    .talk-card {
        max-width: 420px;
        margin-inline: auto;
    }

    .podcast-card {
        gap: 25px;
        padding: 24px;
    }

    .podcast-content {
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 420px) {
    .site-brand {
        font-size: 2rem;
    }

    .about-title h1 {
        font-size: 4rem;
    }

    .modal-dialog {
        padding: 32px 22px 24px;
    }
}



.payment-result-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 20px;
    background: #f5f3ef;
}

.payment-result-card {
    width: 100%;
    max-width: 720px;
    padding: 50px 45px;
    background: #ffffff;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.09);
}

.payment-result-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 34px;
}

.payment-result-success .payment-result-icon {
    color: #ffffff;
    background: #387551;
}

.payment-result-cancelled .payment-result-icon {
    color: #ffffff;
    background: #9b4141;
}

.payment-result-label {
    margin: 0 0 10px;
    color: #97743b;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.payment-result-card h1 {
    margin: 0 0 15px;
    color: #1d2c45;
    font-size: clamp(30px, 5vw, 44px);
    line-height: 1.2;
}

.payment-result-book {
    margin: 0 0 24px;
    color: #97743b;
    font-size: 20px;
    font-weight: 700;
}

.payment-result-text {
    max-width: 590px;
    margin: 0 auto 28px;
    color: #505050;
    font-size: 18px;
    line-height: 1.7;
}

.payment-result-notice {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 0 0 26px;
    padding: 20px;
    border: 1px solid #e3ded4;
    border-radius: 10px;
    background: #faf8f4;
    text-align: left;
}

.payment-result-notice i {
    flex: 0 0 auto;
    margin-top: 3px;
    color: #97743b;
    font-size: 24px;
}

.payment-result-notice p {
    margin: 0;
    color: #555555;
    font-size: 16px;
    line-height: 1.6;
}

.payment-result-help {
    margin: 0 0 30px;
    color: #666666;
    font-size: 15px;
    line-height: 1.6;
}

.payment-result-help a {
    color: #1d2c45;
    font-weight: 700;
    text-decoration: none;
}

.payment-result-help a:hover {
    text-decoration: underline;
}

.payment-result-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    padding: 14px 26px;
    border-radius: 6px;
    background: #1d2c45;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.payment-result-button:hover {
    opacity: 0.92;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .payment-result-page {
        padding: 45px 16px;
    }

    .payment-result-card {
        padding: 38px 22px;
    }

    .payment-result-icon {
        width: 68px;
        height: 68px;
        font-size: 29px;
    }

    .payment-result-text {
        font-size: 16px;
    }

    .payment-result-notice {
        padding: 17px;
    }

    .payment-result-button {
        width: 100%;
    }
}

.contact-page {
    padding: 70px 20px;
    background: #f5f3ef;
}

.contact-section {
    max-width: 850px;
}

.contact-heading {
    margin-bottom: 35px;
    text-align: center;
}

.contact-heading > p:first-child {
    margin-bottom: 8px;
    color: #97743b;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contact-heading h1 {
    margin: 0 0 14px;
    color: #1d2c45;
    font-size: clamp(34px, 6vw, 52px);
}

.contact-heading p {
    line-height: 1.7;
}

.contact-form,
.contact-message {
    padding: 38px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.contact-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.contact-field {
    margin-bottom: 20px;
}

.contact-field label {
    display: block;
    margin-bottom: 7px;
    color: #1d2c45;
    font-weight: 700;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #d5d1ca;
    border-radius: 6px;
    background: #ffffff;
    color: #222222;
    font: inherit;
}

.contact-field textarea {
    resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: #97743b;
    outline: 2px solid rgba(151, 116, 59, 0.18);
}

.contact-submit {
    border: 0;
    cursor: pointer;
}

.contact-message {
    text-align: center;
}

.contact-message-success h2 {
    color: #387551;
}

.contact-message-error {
    margin-bottom: 20px;
    padding: 16px 20px;
    color: #7f2929;
    background: #fff0f0;
    border: 1px solid #e0b8b8;
    box-shadow: none;
}

.contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 650px) {
    .contact-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form,
    .contact-message {
        padding: 28px 20px;
    }
}


/* =========================================================
   PROYECTO HORIZONTE
   ========================================================= */

.horizonte-page {
    background: #ffffff;
        color: #c6a15a;
}

.horizonte-hero {
    padding: 110px 20px;
    background: #1f2021;
    color: #ffffff;
}

.horizonte-hero-inner {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 70px;
    align-items: center;
}

.horizonte-eyebrow,
.horizonte-heading span,
.horizonte-heading-center span,
.horizonte-confidential span,
.horizonte-facilitator-title span {
    display: block;
    margin-bottom: 12px;
    color: #c6a15b;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.horizonte-hero h1 {
    margin: 0 0 20px;
    font-size: clamp(56px, 9vw, 105px);
    line-height: 0.88;
    font-weight: 700;
}

.horizonte-subtitle {
    max-width: 620px;
    margin: 0 0 14px;
    color: #c6a15b;
    font-size: clamp(21px, 3vw, 30px);
    font-weight: 700;
}

.horizonte-lead {
    max-width: 610px;
    margin: 0 0 32px;
    font-size: 18px;
    line-height: 1.7;
}

.horizonte-cta,
.horizonte-final-button {
    display: inline-flex;
}

.horizonte-hero-quote {
    padding: 45px;
    border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.horizonte-hero-quote p {
    margin: 0;
    font-family: Georgia, serif;
    font-size: clamp(27px, 4vw, 40px);
    font-style: italic;
    line-height: 1.4;
}

.horizonte-intro-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
}

.horizonte-heading h2,
.horizonte-heading-center h2,
.horizonte-confidential h2,
.horizonte-facilitator-title h2 {
    margin: 0;
    color: #1d2c45;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.1;
}

.horizonte-heading-center {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.horizonte-intro-copy {
    font-size: 18px;
    line-height: 1.8;
}

.horizonte-intro-copy p:first-child {
    color: #1d2c45;
    font-size: 23px;
    font-weight: 700;
}

.horizonte-objective {
    background: #f5f3ef;
}

.horizonte-objective-card {
    max-width: 980px;
    margin: auto;
    padding: 55px;
    border-left: 6px solid #c6a15b;
    background: #ffffff;
}

.horizonte-objective-card span {
    color: #c6a15b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.horizonte-objective-card h2 {
    margin: 14px 0 20px;
    color: #1d2c45;
    font-size: clamp(30px, 4vw, 46px);
}

.horizonte-objective-card p {
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
}

.horizonte-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}

.horizonte-service-card {
    position: relative;
    padding: 38px;
    border: 1px solid #dedbd4;
    border-radius: 12px;
    background: #ffffff;
}

.horizonte-service-card > i {
    margin-bottom: 25px;
    color: #c6a15b;
    font-size: 34px;
}

.horizonte-service-number {
    position: absolute;
    top: 25px;
    right: 28px;
    color: #dedbd4;
    font-size: 38px;
    font-weight: 700;
}

.horizonte-service-card h3 {
    margin: 0 0 14px;
    color: #1d2c45;
    font-size: 24px;
}

.horizonte-service-card p {
    line-height: 1.7;
}

.horizonte-topics {
    background: #0e0e0f;
    color: #ffffff;
}

.horizonte-topics .horizonte-heading-center h2 {
    color: #ffffff;
}

.horizonte-topic-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.horizonte-topic-list span {
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
}

.horizonte-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 35px;
}

.horizonte-benefit-column {
    padding: 42px;
    background: #f5f3ef;
    border-radius: 12px;
}

.horizonte-benefit-icon {
    margin-bottom: 18px;
    color: #c6a15b;
    font-size: 32px;
}

.horizonte-benefit-column h3 {
    margin: 0 0 25px;
    color: #1d2c45;
    font-size: 28px;
}

.horizonte-benefit-column ul {
    margin: 0;
    padding-left: 20px;
}

.horizonte-benefit-column li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.horizonte-confidential {
    background: #f5f3ef;
}

.horizonte-confidential-grid {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 45px;
    align-items: center;
    max-width: 980px;
}

.horizonte-confidential-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #1d2c45;
    color: #ffffff;
    font-size: 50px;
}

.horizonte-confidential p {
    font-size: 17px;
    line-height: 1.7;
}

.horizonte-coverage-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.horizonte-coverage-grid article {
    padding: 35px 20px;
    border-top: 4px solid #c6a15b;
    background: #f5f3ef;
    text-align: center;
}

.horizonte-coverage-grid strong {
    display: block;
    margin-bottom: 8px;
    color: #373a3f;
    font-size: 28px;
}

.horizonte-coverage-grid span {
    color: #555555;
}

.horizonte-coverage-note {
    max-width: 760px;
    margin: 30px auto 0;
    text-align: center;
    line-height: 1.7;
}

.horizonte-scope {
    padding-top: 20px;
}

.horizonte-scope-card {
    display: flex;
    gap: 25px;
    max-width: 950px;
    margin: auto;
    padding: 32px;
    border: 1px solid #dedbd4;
    border-radius: 10px;
}

.horizonte-scope-card > i {
    flex: 0 0 auto;
    color: #c6a15b;
    font-size: 30px;
}

.horizonte-scope-card h2 {
    margin-top: 0;
    color: #1d2c45;
}

.horizonte-scope-card p {
    line-height: 1.7;
}

.horizonte-facilitator {
    background: #f5f3ef;
}

.horizonte-facilitator-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
}

.horizonte-facilitator-role {
    color: #1d2c45;
    font-size: 22px;
    font-weight: 700;
}

.horizonte-facilitator-copy p {
    line-height: 1.8;
}

.horizonte-final {
    padding: 90px 20px;
    background: #161b22;
    color: #ffffff;
}

.horizonte-final-inner {
    max-width: 900px;
    text-align: center;
}

.horizonte-final-inner > p:first-child {
    color: #c6a15b;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.horizonte-final h2 {
    margin: 15px 0 20px;
    font-size: clamp(34px, 6vw, 58px);
    line-height: 1.15;
}

.horizonte-final-button {
    margin-top: 20px;
}

@media (max-width: 800px) {
    .horizonte-hero-inner,
    .horizonte-intro-grid,
    .horizonte-facilitator-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .horizonte-hero {
        padding: 75px 20px;
    }

    .horizonte-hero-quote {
        padding: 30px 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        border-left: 0;
    }

    .horizonte-services-grid,
    .horizonte-benefits-grid {
        grid-template-columns: 1fr;
    }

    .horizonte-coverage-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .horizonte-confidential-grid {
        grid-template-columns: 1fr;
    }

    .horizonte-confidential-icon {
        width: 90px;
        height: 90px;
        font-size: 36px;
    }
}

@media (max-width: 500px) {
    .horizonte-coverage-grid {
        grid-template-columns: 1fr;
    }

    .horizonte-service-card,
    .horizonte-benefit-column,
    .horizonte-objective-card {
        padding: 28px 22px;
    }

    .horizonte-scope-card {
        flex-direction: column;
    }
}

/* =========================================================
   CONTACTO - PROYECTO HORIZONTE
   ========================================================= */

.horizonte-contact-page {
    background: #f5f3ef;
}

.horizonte-contact-hero {
    padding: 80px 20px;
    background: #1d2c45;
    color: #ffffff;
    text-align: center;
}

.horizonte-contact-hero .container {
    max-width: 900px;
}

.horizonte-contact-eyebrow {
    margin: 0 0 12px;
    color: #c6a15b;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.horizonte-contact-hero h1 {
    margin: 0 0 20px;
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1.1;
}

.horizonte-contact-hero > .container > p:last-child {
    max-width: 720px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
}

.horizonte-contact-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.horizonte-contact-info {
    padding-top: 20px;
}

.horizonte-contact-info > span,
.horizonte-contact-form-heading span {
    display: block;
    margin-bottom: 10px;
    color: #a17f42;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.horizonte-contact-info h2 {
    margin: 0 0 20px;
    color: #1d2c45;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.15;
}

.horizonte-contact-info > p {
    margin: 0 0 35px;
    color: #555555;
    font-size: 17px;
    line-height: 1.7;
}

.horizonte-contact-feature {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
}

.horizonte-contact-feature > i {
    flex: 0 0 auto;
    width: 42px;
    padding-top: 3px;
    color: #c6a15b;
    font-size: 27px;
    text-align: center;
}

.horizonte-contact-feature strong {
    display: block;
    margin-bottom: 5px;
    color: #1d2c45;
    font-size: 17px;
}

.horizonte-contact-feature p {
    margin: 0;
    color: #666666;
    line-height: 1.6;
}

.horizonte-contact-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: #1d2c45;
    font-weight: 700;
    text-decoration: none;
}

.horizonte-contact-back:hover {
    text-decoration: underline;
}

.horizonte-contact-form-container {
    padding: 42px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.horizonte-contact-form-heading {
    margin-bottom: 30px;
}

.horizonte-contact-form-heading h2 {
    margin: 0;
    color: #1d2c45;
    font-size: 30px;
}

.horizonte-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.horizonte-form-field {
    margin-bottom: 20px;
}

.horizonte-form-field label {
    display: block;
    margin-bottom: 7px;
    color: #1d2c45;
    font-size: 14px;
    font-weight: 700;
}

.horizonte-form-field input,
.horizonte-form-field select,
.horizonte-form-field textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #d5d1ca;
    border-radius: 6px;
    background: #ffffff;
    color: #222222;
    font: inherit;
}

.horizonte-form-field textarea {
    min-height: 145px;
    resize: vertical;
}

.horizonte-form-field input:focus,
.horizonte-form-field select:focus,
.horizonte-form-field textarea:focus {
    border-color: #a17f42;
    outline: 2px solid rgba(161, 127, 66, 0.15);
}

.horizonte-contact-submit {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.horizonte-contact-privacy {
    margin: 15px 0 0;
    color: #777777;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

.horizonte-contact-error {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 25px;
    padding: 14px 16px;
    border: 1px solid #e0b8b8;
    border-radius: 6px;
    background: #fff0f0;
    color: #7f2929;
    font-size: 14px;
}

.horizonte-contact-success {
    padding: 30px 10px;
    text-align: center;
}

.horizonte-contact-success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: #387551;
    color: #ffffff;
    font-size: 30px;
}

.horizonte-contact-success h2 {
    margin: 0 0 14px;
    color: #1d2c45;
    font-size: 34px;
}

.horizonte-contact-success p {
    margin: 0 auto 28px;
    max-width: 460px;
    color: #555555;
    font-size: 17px;
    line-height: 1.7;
}

@media (max-width: 800px) {
    .horizonte-contact-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .horizonte-contact-hero {
        padding: 60px 20px;
    }
}

@media (max-width: 600px) {
    .horizonte-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .horizonte-contact-form-container {
        padding: 30px 20px;
    }
}

.talks-intro {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.talks-intro p {
    margin: 0 0 28px;
    font-size: 18px;
    line-height: 1.7;
}


.horizonte-home {
    background: #232324;
    color: #ffffff;
}

.horizonte-home-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.horizonte-home-copy span {
    display: block;
    margin-bottom: 10px;
    color: #c6a15b;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.horizonte-home-copy h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(36px, 5vw, 56px);
}

.horizonte-home-copy p {
    max-width: 650px;
    margin: 0 0 28px;
    font-size: 18px;
    line-height: 1.7;
}

.horizonte-home-highlight {
    padding: 35px;
    border-left: 3px solid #c6a15b;
}

.horizonte-home-highlight p {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 26px;
    font-style: italic;
    line-height: 1.5;
}

@media (max-width: 800px) {
    .horizonte-home-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .horizonte-home-highlight {
        padding: 25px 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        border-left: 0;
    }
}