:root {
    --ra-green-950: #153426;
    --ra-green-900: #1d4632;
    --ra-green-800: #24573d;
    --ra-green-700: #2f6a4a;
    --ra-green-100: #e8f0eb;
    --ra-cream: #f7f5ef;
    --ra-white: #ffffff;
    --ra-ink: #17201b;
    --ra-muted: #5e6962;
    --ra-border: #dbe2dd;
    --ra-accent: #d8ad5b;
    --ra-whatsapp: #167a3b;
    --ra-shadow: 0 18px 50px rgba(18, 43, 31, 0.12);
    --ra-radius: 24px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 9rem;
}

body {
    background: var(--ra-white);
    color: var(--ra-ink);
    font-family: raleway, Arial, sans-serif;
    line-height: 1.55;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
}

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

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 12px 18px;
    background: white;
    color: var(--ra-green-950);
    border-radius: 10px;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(29, 70, 50, 0.97);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.13);
    backdrop-filter: blur(10px);
}

.site-header__inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-brand {
    display: flex;
    flex: 0 0 auto;
}

.site-brand img {
    width: 176px;
    height: auto;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2vw, 32px);
    margin-left: auto;
}

.desktop-nav a,
.header-phone {
    color: white;
    font-size: 1.55rem;
    font-weight: 700;
    text-decoration: none;
}

.desktop-nav a {
    padding-block: 10px;
    position: relative;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 2px;
    height: 2px;
    background: var(--ra-accent);
    transition: right 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
    right: 0;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.header-phone svg {
    width: 20px;
    fill: currentColor;
}

.site-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 22px;
    border: 2px solid var(--ra-green-800);
    border-radius: 999px;
    background: var(--ra-green-800);
    color: white;
    font-family: spartan, Arial, sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.site-button:hover,
.site-button:focus-visible {
    background: var(--ra-green-950);
    border-color: var(--ra-green-950);
    box-shadow: 0 12px 28px rgba(20, 58, 40, 0.22);
    transform: translateY(-2px);
    color: white;
}

.site-button--light {
    background: white;
    border-color: white;
    color: var(--ra-green-950);
}

.site-button--outline {
    background: transparent;
    border-color: currentColor;
    color: white;
}

.site-button--small {
    min-height: 44px;
    padding: 10px 17px;
    border-color: white;
    background: white;
    color: var(--ra-green-950);
    font-size: 1.35rem;
}

.menu-toggle,
.menu-close {
    display: none;
    border: 0;
    background: transparent;
    color: white;
    cursor: pointer;
}

.menu-toggle svg,
.menu-close svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(10, 25, 17, 0.62);
}

.mobile-menu__panel {
    width: min(390px, 90vw);
    height: 100%;
    margin-left: auto;
    padding: 30px;
    background: var(--ra-green-950);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.28);
}

.mobile-menu__panel nav {
    display: grid;
    gap: 4px;
    margin-top: 45px;
}

.mobile-menu__panel nav a {
    padding: 15px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
}

.menu-close {
    display: block;
    margin-left: auto;
}

.layout {
    min-height: 50vh;
}

/* Home */
.ra-hero {
    position: relative;
    min-height: 690px;
    display: grid;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: var(--ra-green-950);
}

.ra-hero__media,
.ra-hero__media::after {
    position: absolute;
    inset: 0;
}

.ra-hero__media {
    z-index: -2;
}

.ra-hero__media::after {
    content: "";
    z-index: 1;
    background: linear-gradient(90deg, rgba(16, 42, 29, 0.94) 0%, rgba(20, 52, 36, 0.8) 48%, rgba(20, 52, 36, 0.25) 100%);
}

.ra-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ra-hero__content {
    width: min(720px, 100%);
    padding-block: 90px;
    color: white;
}

.ra-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--ra-accent);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ra-eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: currentColor;
}

.ra-hero h1 {
    max-width: 700px;
    margin: 0;
    color: white;
    font-family: spartan, Arial, sans-serif;
    font-size: clamp(4.2rem, 6vw, 7.2rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.ra-hero__lead {
    max-width: 650px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.8rem, 2.2vw, 2.25rem);
    line-height: 1.55;
}

.ra-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.ra-hero__microcopy {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    margin-top: 28px;
    padding: 0;
    list-style: none;
}

.ra-hero__microcopy li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 1.45rem;
    font-weight: 700;
}

.ra-hero__microcopy li::before {
    content: "✓";
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    color: var(--ra-accent);
}

.trust-strip {
    position: relative;
    z-index: 2;
    margin-top: -40px;
}

.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border-radius: 22px;
    background: white;
    box-shadow: var(--ra-shadow);
}

.trust-item {
    padding: 26px 22px;
    text-align: center;
}

.trust-item + .trust-item {
    border-left: 1px solid var(--ra-border);
}

.trust-item strong {
    display: block;
    color: var(--ra-green-900);
    font-family: spartan, Arial, sans-serif;
    font-size: 1.75rem;
}

.trust-item span {
    display: block;
    margin-top: 5px;
    color: var(--ra-muted);
    font-size: 1.35rem;
}

.ra-section {
    padding-block: 100px;
}

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

.ra-section--green {
    background: var(--ra-green-950);
    color: white;
}

.ra-section__heading {
    max-width: 760px;
    margin-bottom: 45px;
}

.ra-section__heading--center {
    margin-inline: auto;
    text-align: center;
}

.ra-section__heading h2,
.about-copy h2,
.lead-form-copy h2,
.faq-heading h2 {
    margin: 0;
    color: var(--ra-green-950);
    font-family: spartan, Arial, sans-serif;
    font-size: clamp(3.2rem, 4.5vw, 5rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.ra-section--green .ra-section__heading h2 {
    color: white;
}

.ra-section__heading p,
.about-copy > p,
.lead-form-copy > p,
.faq-heading p {
    margin-top: 18px;
    color: var(--ra-muted);
    font-size: 1.8rem;
}

.ra-section--green .ra-section__heading p {
    color: rgba(255, 255, 255, 0.75);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: var(--ra-radius);
    box-shadow: 0 16px 42px rgba(20, 46, 33, 0.13);
    text-decoration: none;
    isolation: isolate;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(0deg, rgba(13, 35, 23, 0.94), rgba(18, 45, 31, 0.05) 72%);
}

.service-card img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 350ms ease;
}

.service-card:hover img,
.service-card:focus-visible img {
    transform: scale(1.045);
}

.service-card__content {
    width: 100%;
    padding: 28px;
    color: white;
}

.service-card__content span {
    color: var(--ra-accent);
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-card__content h3 {
    margin: 8px 0 8px;
    color: white;
    font-family: spartan, Arial, sans-serif;
    font-size: 2.5rem;
}

.service-card__content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 70px;
    align-items: center;
}

.about-media {
    position: relative;
}

.about-media img {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--ra-shadow);
}

.about-badge {
    position: absolute;
    right: -25px;
    bottom: 32px;
    width: 170px;
    min-height: 150px;
    display: grid;
    place-items: center;
    padding: 18px;
    border-radius: 24px;
    background: var(--ra-green-900);
    color: white;
    text-align: center;
    box-shadow: var(--ra-shadow);
}

.about-badge strong {
    display: block;
    font-family: spartan, Arial, sans-serif;
    font-size: 4.4rem;
    line-height: 1;
}

.about-badge span {
    display: block;
    margin-top: 7px;
    font-size: 1.35rem;
}

.about-list {
    display: grid;
    gap: 18px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.about-list li {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 14px;
    align-items: start;
    font-size: 1.65rem;
}

.about-list li::before {
    content: "✓";
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--ra-green-100);
    color: var(--ra-green-800);
    font-weight: 900;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    counter-reset: process;
}

.process-card {
    position: relative;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    counter-increment: process;
}

.process-card::before {
    content: "0" counter(process);
    display: block;
    margin-bottom: 30px;
    color: var(--ra-accent);
    font-family: spartan, Arial, sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
}

.process-card h3 {
    margin: 0;
    color: white;
    font-family: spartan, Arial, sans-serif;
    font-size: 2rem;
}

.process-card p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.5rem;
}

.lead-section {
    background: var(--ra-cream);
}

.lead-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
    gap: 70px;
    align-items: start;
}

.lead-points {
    display: grid;
    gap: 14px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.lead-points li {
    display: flex;
    gap: 10px;
    color: var(--ra-green-950);
    font-size: 1.6rem;
    font-weight: 700;
}

.lead-points li::before {
    content: "✓";
    color: var(--ra-green-700);
    font-weight: 900;
}

.lead-direct {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.lead-form-card {
    padding: clamp(26px, 4vw, 42px);
    border-radius: 28px;
    background: white;
    box-shadow: var(--ra-shadow);
}

.lead-form-card h2,
.lead-form-card h3 {
    margin: 0 0 8px;
    color: var(--ra-green-950);
    font-family: spartan, Arial, sans-serif;
    font-size: 2.6rem;
}

.lead-form-card > p {
    margin: 0 0 25px;
    color: var(--ra-muted);
    font-size: 1.5rem;
}

.lead-form {
    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field {
    display: grid;
    gap: 7px;
}

.form-field label {
    color: var(--ra-green-950);
    font-size: 1.4rem;
    font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid #cbd5ce;
    border-radius: 12px;
    background: white;
    color: var(--ra-ink);
    font: inherit;
    font-size: 1.55rem;
    outline: none;
}

/* El campo de descripción comienza exactamente con la misma altura que los inputs. */
.form-field textarea.form-textarea-compact {
    display: block;
    height: 50px !important;
    min-height: 50px !important;
    padding-top: 12px;
    padding-bottom: 12px;
    line-height: 24px;
    overflow-y: auto;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--ra-green-700);
    box-shadow: 0 0 0 3px rgba(47, 106, 74, 0.14);
}

.privacy-check {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
    color: var(--ra-muted);
    font-size: 1.3rem;
}

.privacy-check input {
    margin-top: 3px;
}

.privacy-check a {
    color: var(--ra-green-800);
    font-weight: 700;
}

.form-message {
    padding: 13px 15px;
    border-radius: 12px;
    font-size: 1.45rem;
    font-weight: 700;
}

.form-message--success {
    background: #e2f4e7;
    color: #18542e;
}

.form-message--error {
    background: #fff0ee;
    color: #8b2b1d;
}

.form-submit {
    width: 100%;
    min-height: 54px;
    border: 0;
    border-radius: 999px;
    background: var(--ra-green-800);
    color: white;
    font-family: spartan, Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 160ms ease, transform 160ms ease;
}

.form-submit:hover,
.form-submit:focus-visible {
    background: var(--ra-green-950);
    transform: translateY(-1px);
}

.form-note {
    margin: 0;
    color: var(--ra-muted);
    font-size: 1.25rem;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 70px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-list details {
    padding: 0 22px;
    border: 1px solid var(--ra-border);
    border-radius: 16px;
    background: white;
}

.faq-list summary {
    padding: 21px 35px 21px 0;
    color: var(--ra-green-950);
    font-family: spartan, Arial, sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    cursor: pointer;
}

.faq-list details p {
    margin: 0;
    padding: 0 0 22px;
    color: var(--ra-muted);
    font-size: 1.5rem;
}

/* Footer */
.site-footer {
    background: var(--ra-green-950);
    color: rgba(255, 255, 255, 0.74);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.25fr 0.8fr 1fr 0.9fr;
    gap: 55px;
    padding-block: 65px;
}

.site-footer__logo {
    width: 190px;
    height: auto;
    margin-bottom: 18px;
}

.site-footer p,
.site-footer a,
.site-footer span,
.cookie-settings {
    display: block;
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1.4rem;
    text-decoration: none;
}

.site-footer h2 {
    margin: 0 0 18px;
    color: white;
    font-family: spartan, Arial, sans-serif;
    font-size: 1.65rem;
}

.site-footer a:hover,
.site-footer a:focus-visible,
.cookie-settings:hover,
.cookie-settings:focus-visible {
    color: white;
}

.cookie-settings {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.site-footer__bottom {
    padding-block: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 1.3rem;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 45;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--ra-whatsapp);
    box-shadow: 0 12px 30px rgba(13, 93, 43, 0.32);
    transition: transform 160ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
    transform: translateY(-3px) scale(1.03);
}

.floating-whatsapp svg {
    width: 34px;
    fill: white;
}

.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 200;
    width: min(920px, calc(100% - 40px));
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 20px 22px;
    border: 1px solid var(--ra-border);
    border-radius: 18px;
    background: white;
    box-shadow: 0 20px 70px rgba(12, 31, 21, 0.24);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner strong {
    display: block;
    color: var(--ra-green-950);
    font-size: 1.55rem;
}

.cookie-banner p,
.cookie-banner a {
    margin: 4px 0 0;
    color: var(--ra-muted);
    font-size: 1.3rem;
}

.cookie-banner a {
    color: var(--ra-green-800);
    font-weight: 700;
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex: 0 0 auto;
}

.cookie-banner button {
    min-height: 42px;
    padding: 9px 16px;
    border: 1px solid var(--ra-green-800);
    border-radius: 999px;
    background: white;
    color: var(--ra-green-900);
    font-weight: 800;
    cursor: pointer;
}

.cookie-banner .cookie-accept {
    background: var(--ra-green-800);
    color: white;
}

/* Existing internal pages: cleaner shell without rewriting every page */
.layout > .presupuesto,
.layout > .paginas {
    padding-top: 25px;
}

.reformas__title:first-child,
.header--title {
    color: var(--ra-green-950);
}

.button,
.presupuesto__submit {
    background: var(--ra-green-800) !important;
    color: white !important;
}

.button:hover,
.presupuesto__submit:hover {
    background: var(--ra-green-950) !important;
}

/* 404 */
.error-page {
    min-height: 65vh;
    display: grid;
    place-items: center;
    padding: 80px 20px;
    text-align: center;
}

.error-page h1 {
    margin: 0;
    color: var(--ra-green-950);
    font-family: spartan, Arial, sans-serif;
    font-size: clamp(4rem, 8vw, 8rem);
}

.error-page p {
    max-width: 600px;
    margin: 15px auto 25px;
    color: var(--ra-muted);
    font-size: 1.8rem;
}

@media (max-width: 1060px) {
    .desktop-nav,
    .header-phone span {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .site-header__actions {
        margin-left: auto;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    html {
        scroll-padding-top: 7.5rem;
    }

    .site-container {
        width: min(100% - 28px, 1180px);
    }

    .site-header__inner {
        min-height: 72px;
    }

    .site-brand img {
        width: 145px;
    }

    .site-button--small,
    .header-phone {
        display: none;
    }

    .ra-hero {
        min-height: 650px;
        align-items: end;
    }

    .ra-hero__media::after {
        background: linear-gradient(0deg, rgba(13, 37, 24, 0.98) 5%, rgba(18, 46, 31, 0.58) 100%);
    }

    .ra-hero__content {
        padding-block: 95px 65px;
    }

    .ra-hero h1 {
        font-size: clamp(3.8rem, 12vw, 5.7rem);
    }

    .ra-hero__lead {
        font-size: 1.75rem;
    }

    .ra-hero__actions {
        display: grid;
    }

    .ra-hero__actions .site-button {
        width: 100%;
    }

    .trust-strip {
        margin-top: 0;
    }

    .trust-strip .site-container {
        width: 100%;
    }

    .trust-strip__grid {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 0;
        box-shadow: none;
    }

    .trust-item {
        border-bottom: 1px solid var(--ra-border);
    }

    .trust-item + .trust-item {
        border-left: 1px solid var(--ra-border);
    }

    .ra-section {
        padding-block: 70px;
    }

    .service-grid,
    .about-grid,
    .lead-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 330px;
    }

    .about-grid,
    .lead-grid,
    .faq-grid {
        gap: 42px;
    }

    .about-badge {
        right: 14px;
        bottom: 14px;
        width: 140px;
        min-height: 125px;
    }

    .lead-grid {
        min-width: 0;
    }

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

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .cookie-banner {
        align-items: stretch;
        flex-direction: column;
        gap: 15px;
    }

    .cookie-banner__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
    }
}

@media (max-width: 520px) {
    .trust-strip__grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .trust-item + .trust-item {
        border-left: 0;
    }

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

    .ra-section__heading h2,
    .about-copy h2,
    .lead-form-copy h2,
    .faq-heading h2 {
        font-size: 3.25rem;
    }

    .cf-turnstile {
        max-width: 100%;
        transform: scale(0.88);
        transform-origin: left center;
    }
}
.page-main-title {
    margin: 0;
    color: var(--ra-green-950);
    font-family: spartan, Arial, sans-serif;
    font-size: clamp(3.7rem, 5vw, 5.8rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.site-button--outline-dark {
    background: transparent;
    border-color: var(--ra-green-800);
    color: var(--ra-green-800);
}
/* Service landing pages */
.service-hero {
    padding-block: 70px;
    background: linear-gradient(135deg, #f5f4ef 0%, #e9f0eb 100%);
}

.service-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
    gap: 65px;
    align-items: center;
}

.service-hero__copy h1 {
    max-width: 690px;
    margin: 0;
    color: var(--ra-green-950);
    font-family: spartan, Arial, sans-serif;
    font-size: clamp(4rem, 5.7vw, 6.6rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.service-hero__copy > p {
    max-width: 640px;
    margin: 24px 0 0;
    color: var(--ra-muted);
    font-size: 1.9rem;
}

.service-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
    margin-top: 32px;
}

.service-phone {
    color: var(--ra-green-900);
    font-size: 1.6rem;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.service-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.service-hero__trust li {
    color: var(--ra-green-800);
    font-size: 1.4rem;
    font-weight: 800;
}

.service-hero__trust li::before {
    content: "✓";
    margin-right: 7px;
}

.service-hero__media img {
    width: 100%;
    height: min(570px, 60vw);
    min-height: 440px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--ra-shadow);
}

.service-overview__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: start;
}

.service-overview__copy h2,
.service-included h2,
.service-cta h2 {
    margin: 0;
    color: var(--ra-green-950);
    font-family: spartan, Arial, sans-serif;
    font-size: clamp(3rem, 4vw, 4.5rem);
    line-height: 1.14;
    letter-spacing: -0.03em;
}

.service-overview__copy > p {
    margin-top: 22px;
    color: var(--ra-muted);
    font-size: 1.75rem;
}

.service-ideal {
    margin-top: 30px;
    padding: 23px;
    border-left: 4px solid var(--ra-accent);
    border-radius: 0 16px 16px 0;
    background: var(--ra-cream);
}

.service-ideal strong {
    display: block;
    color: var(--ra-green-950);
    font-size: 1.55rem;
}

.service-ideal p {
    margin: 8px 0 0;
    color: var(--ra-muted);
    font-size: 1.5rem;
}

.service-included {
    padding: 34px;
    border-radius: 26px;
    background: var(--ra-green-950);
    color: white;
    box-shadow: var(--ra-shadow);
}

.service-included h2 {
    color: white;
    font-size: 2.6rem;
}

.service-included ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 20px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.service-included li {
    display: flex;
    gap: 9px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.45rem;
}

.service-included li::before {
    content: "✓";
    color: var(--ra-accent);
    font-weight: 900;
}

.service-included > p {
    margin: 26px 0 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.3rem;
}

.process-grid--three {
    grid-template-columns: repeat(3, 1fr);
}

.service-cta {
    padding-block: 70px;
    background: var(--ra-green-800);
    color: white;
}

.service-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.service-cta h2 {
    color: white;
}

.service-cta p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.6rem;
}

.service-cta__actions {
    display: flex;
    flex: 0 0 auto;
    gap: 12px;
}

@media (max-width: 900px) {
    .service-hero__grid,
    .service-overview__grid {
        grid-template-columns: 1fr;
    }

    .service-hero__grid {
        gap: 42px;
    }

    .service-hero__media img {
        height: 480px;
        min-height: 0;
    }

    .service-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 650px) {
    .service-hero {
        padding-block: 55px;
    }

    .service-hero__copy h1 {
        font-size: 4rem;
    }

    .service-hero__actions,
    .service-cta__actions {
        display: grid;
        width: 100%;
    }

    .service-hero__media img {
        height: 350px;
    }

    .service-included ul,
    .process-grid--three {
        grid-template-columns: 1fr;
    }
}


/* ===== Ajustes de identidad, conversion y SEO local (v2) ===== */
:root {
    --ra-header-green: #5d695e;
    --ra-footer-green: #789883;
    --ra-footer-ink: #102d20;
}

html {
    scroll-padding-top: 11rem;
}

.site-header {
    background: rgba(93, 105, 94, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header__inner {
    min-height: 106px;
    padding-block: 12px;
}

.site-brand {
    padding: 7px 10px;
    margin-left: -10px;
}

.site-brand img {
    width: 205px;
}

.desktop-nav {
    gap: clamp(16px, 1.65vw, 27px);
}

.desktop-nav a,
.header-phone {
    font-size: 1.48rem;
}

.site-button--small {
    box-shadow: 0 7px 20px rgba(20, 40, 28, 0.18);
}

.site-footer {
    background: var(--ra-footer-green);
    color: var(--ra-footer-ink);
}

.site-footer p,
.site-footer a,
.site-footer span,
.site-footer .cookie-settings {
    color: var(--ra-footer-ink);
}

.site-footer h2 {
    color: #0c281b;
}

.site-footer a {
    text-underline-offset: 3px;
}

.site-footer a:hover,
.site-footer a:focus-visible,
.site-footer .cookie-settings:hover,
.site-footer .cookie-settings:focus-visible {
    color: #061a11;
    text-decoration: underline;
}

.site-footer__bottom {
    border-top: 0;
    background: var(--ra-header-green);
    color: white;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    padding-top: 24px;
    color: var(--ra-muted);
    font-size: 1.35rem;
}

.breadcrumbs a {
    color: var(--ra-green-800);
    font-weight: 800;
    text-decoration: none;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ra-location {
    padding-block: 42px;
    border-block: 1px solid var(--ra-border);
    background: linear-gradient(115deg, #eef2ed 0%, #f8f7f2 100%);
}

.ra-location__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 44px;
}

.ra-location h2 {
    margin: 4px 0 10px;
    color: var(--ra-green-950);
    font-family: spartan, Arial, sans-serif;
    font-size: clamp(2.7rem, 3.6vw, 4.1rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.ra-location p {
    max-width: 760px;
    margin: 0;
    color: var(--ra-muted);
    font-size: 1.65rem;
}

.ra-location__actions {
    display: grid;
    gap: 10px;
    min-width: 245px;
}

.mobile-contact-bar {
    display: none;
}

@media (max-width: 1150px) {
    .site-header__inner {
        gap: 18px;
    }

    .site-brand img {
        width: 188px;
    }

    .desktop-nav a,
    .header-phone {
        font-size: 1.4rem;
    }
}

@media (max-width: 760px) {
    html {
        scroll-padding-top: 8.8rem;
    }

    body {
        padding-bottom: calc(68px + env(safe-area-inset-bottom));
    }

    .site-header__inner {
        min-height: 86px;
        padding-block: 9px;
    }

    .site-brand {
        padding: 5px 7px;
        margin-left: -7px;
    }

    .site-brand img {
        width: 164px;
    }

    .ra-location__inner {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .ra-location__actions {
        min-width: 0;
    }

    .mobile-contact-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 90;
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 64px;
        padding: 7px max(10px, env(safe-area-inset-right)) calc(7px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
        border-top: 1px solid rgba(9, 37, 23, 0.14);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 -8px 30px rgba(15, 40, 26, 0.14);
        backdrop-filter: blur(12px);
    }

    .mobile-contact-bar a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 50px;
        border-radius: 13px;
        font-family: spartan, Arial, sans-serif;
        font-size: 1.45rem;
        font-weight: 900;
        text-decoration: none;
    }

    .mobile-contact-bar svg {
        width: 22px;
        height: 22px;
        fill: currentColor;
    }

    .mobile-contact-bar__call {
        color: var(--ra-header-green);
    }

    .mobile-contact-bar__whatsapp {
        background: var(--ra-whatsapp);
        color: white;
    }

    .floating-whatsapp {
        display: none;
    }

    .cookie-banner {
        bottom: 76px;
    }

    .site-footer__bottom {
        padding-bottom: 20px;
    }
}

@media (max-width: 390px) {
    .site-brand img {
        width: 150px;
    }

    .mobile-contact-bar a {
        font-size: 1.32rem;
    }
}
