:root {
    --verde-oscuro: #0F4A32;
    --verde-medio:  #1F6B4C;
    --verde-claro:  #A7D7A2;
    --amarillo:     #F5C15A;
    --beige:        #F5E9D2;
    --blanco:       #FFFFFF;
    --texto:        #143329;
}

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

html, body {
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--blanco);
    color: var(--texto);
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
}

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

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

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(15,74,50,0.05);
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 30px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1.2;
    color: var(--verde-oscuro);
}

.logo-text span:first-child {
    font-size: 14px;
}

.nav-links {
    display: none;
    gap: 24px;
    font-size: 14px;
    font-weight: 500;
}

.nav-links a {
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--amarillo);
    transition: width 0.25s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    padding: 10px 22px;
    font-size: 14px;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

.btn:focus-visible {
    outline: 2px solid var(--amarillo);
    outline-offset: 2px;
}

.btn-primary {
    background: var(--verde-oscuro);
    color: var(--beige);
    box-shadow: 0 10px 25px rgba(15,74,50,0.3);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(15,74,50,0.35);
}

.btn-secondary {
    border: 1px solid rgba(15,74,50,0.18);
    background: var(--blanco);
    color: var(--verde-oscuro);
}

.btn-secondary:hover {
    background: var(--verde-oscuro);
    color: var(--beige);
}

.btn-outline-light {
    border: 1px solid rgba(245,233,210,0.7);
    color: var(--beige);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--beige);
    color: var(--verde-oscuro);
}

.nav-toggle {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(15,74,50,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: var(--blanco);
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.nav-toggle span {
    display: block;
    width: 16px;
    height: 2px;
    background: var(--verde-oscuro);
    position: relative;
    transition: background-color 0.2s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 16px;
    height: 2px;
    background: var(--verde-oscuro);
    transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.nav-toggle span::before {
    top: -5px;
}

.nav-toggle span::after {
    top: 5px;
}

.nav-toggle.active span {
    background: transparent;
}

.nav-toggle.active span::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.active span::after {
    transform: rotate(-45deg);
    top: 0;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 10px 0 16px;
    font-size: 14px;
}

.mobile-menu.is-open {
    display: flex;
}

.mobile-menu a {
    padding: 6px 0;
}

.mobile-menu .btn {
    width: 100%;
    justify-content: center;
}

.image-frame {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(15,74,50,0.18);
    position: relative;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 0.6s ease;
}

.image-frame:hover img {
    transform: scale(1.07);
}

.hero {
    position: relative;
    overflow: hidden;
    background: var(--blanco);
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0,1.3fr);
    gap: 32px;
    padding: 52px 0 56px;
}

.hero-bg-shape {
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.hero-bg-top {
    top: -180px;
    right: -120px;
    width: 420px;
    height: 320px;
    background: var(--verde-oscuro);
    border-bottom-left-radius: 280px;
    border-bottom-right-radius: 60px;
    border-top-left-radius: 80px;
    transform: rotate(-6deg);
}

.hero-bg-top::after {
    content: "";
    position: absolute;
    left: -120px;
    bottom: -60px;
    width: 260px;
    height: 220px;
    background: var(--amarillo);
    border-radius: 160px;
    transform: rotate(10deg);
}

.hero-bg-left {
    bottom: -140px;
    left: -160px;
    width: 340px;
    height: 340px;
    background: var(--verde-medio);
    border-radius: 260px;
}

.hero-content {
    max-width: 620px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(167,215,162,0.3);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--verde-oscuro);
    margin-bottom: 16px;
}

.hero-kicker-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--amarillo);
}

h1 {
    font-size: 2rem;
    line-height: 1.15;
    font-weight: 700;
    color: var(--verde-oscuro);
    margin-bottom: 14px;
}

.hero-subtitle {
    font-size: 0.98rem;
    color: rgba(20,51,41,0.85);
    margin-bottom: 22px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.hero-meta {
    font-size: 12px;
    color: rgba(20,51,41,0.7);
}

.hero-meta strong {
    color: var(--verde-oscuro);
}

.hero-media {
    position: relative;
    max-width: 480px;
    margin: 8px auto 0;
}

.hero-card {
    background: var(--verde-oscuro);
    border-radius: 26px;
    padding: 18px 18px 16px;
    color: var(--beige);
    box-shadow: 0 18px 40px rgba(15,74,50,0.45);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    right: -90px;
    top: -90px;
    width: 200px;
    height: 200px;
    background: var(--amarillo);
    border-radius: 50%;
    opacity: 0.9;
}

.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.hero-card-title {
    font-weight: 600;
    font-size: 14px;
}

.hero-card-pill {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(10,37,26,0.7);
    border: 1px solid rgba(245,233,210,0.35);
}

.hero-card-body {
    font-size: 12px;
    max-width: 230px;
}

.hero-card-body p + p {
    margin-top: 6px;
}

.hero-card-footer {
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
}

.hero-mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(10,37,26,0.8);
}

.hero-mini-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--verde-claro);
}

.hero-photo-placeholder {
    margin-top: 14px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 150px;
}

.hero-photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 0.5s ease;
}

.hero-photo-placeholder:hover img {
    transform: scale(1.07);
}

.hero-photo-label {
    position: absolute;
    left: 12px;
    bottom: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(15,74,50,0.75);
    color: var(--beige);
    font-size: 10px;
}

section {
    padding: 48px 0;
}

.section-header {
    margin-bottom: 28px;
}

.section-kicker {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(20,51,41,0.7);
    margin-bottom: 6px;
    font-weight: 600;
}

.section-kicker.section-kicker-light {
    color: rgba(245,233,210,0.9);
}

h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--verde-oscuro);
    margin-bottom: 10px;
}

.section-description {
    font-size: 0.95rem;
    color: rgba(20,51,41,0.8);
    max-width: 620px;
}

.about {
    position: relative;
}

.about-inner {
    display: grid;
    grid-template-columns: minmax(0,1.4fr);
    gap: 24px;
}

.about-text p + p {
    margin-top: 10px;
}

.about-highlight {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px;
    font-size: 12px;
}

.about-pill {
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(15,74,50,0.12);
    background: rgba(167,215,162,0.12);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.about-pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--verde-medio);
}

.about-media {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    min-height: 220px;
}

.about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 0.6s ease;
}

.about-media:hover img {
    transform: scale(1.07);
}

.about-media-caption {
    position: absolute;
    left: 14px;
    bottom: 12px;
    font-size: 11px;
    max-width: 70%;
    color: #174330;
    background: rgba(245,233,210,0.85);
    padding: 6px 10px;
    border-radius: 999px;
}

.services {
    background: linear-gradient(180deg, #f9fbf9 0%, #ffffff 70%);
}

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

.service-card {
    border-radius: 18px;
    padding: 18px 18px 16px;
    background: var(--blanco);
    border: 1px solid rgba(15,74,50,0.08);
    box-shadow: 0 12px 30px rgba(15,74,50,0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 140px;
    height: 140px;
    border-radius: 60% 40% 60% 40%;
    background: rgba(167,215,162,0.35);
    opacity: 0.6;
}

.service-card:nth-child(2)::before {
    background: rgba(245,193,90,0.35);
}

.service-card:nth-child(3)::before {
    background: rgba(15,74,50,0.25);
}

.service-image {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 12px;
    height: 150px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 0.5s ease;
}

.service-image:hover img {
    transform: scale(1.07);
}

.service-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--verde-oscuro);
    margin-bottom: 6px;
}

.service-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(20,51,41,0.65);
    margin-bottom: 6px;
}

.service-description {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.service-list {
    font-size: 0.9rem;
    padding-left: 18px;
    margin-bottom: 10px;
}

.service-list li + li {
    margin-top: 4px;
}

.service-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--verde-oscuro);
    margin-bottom: 10px;
}

.service-price span {
    font-weight: 400;
    color: rgba(20,51,41,0.7);
    font-size: 0.85rem;
}

.service-footer-note {
    font-size: 11px;
    color: rgba(20,51,41,0.65);
    margin-top: 4px;
}

.service-actions {
    margin-top: 10px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.reasons {
    background: radial-gradient(circle at left bottom, #f9f3df 0, #ffffff 54%);
}

.reasons-grid {
    display: grid;
    grid-template-columns: minmax(0,1fr);
    gap: 14px;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(167,215,162,0.14);
}

.reason-icon {
    min-width: 24px;
    height: 24px;
    border-radius: 999px;
    background: var(--verde-oscuro);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--beige);
}

.reason-text {
    font-size: 0.92rem;
}

.steps {
    position: relative;
}

.steps-grid {
    display: grid;
    grid-template-columns: minmax(0,1fr);
    gap: 10px;
    counter-reset: step-counter;
}

.step-item {
    position: relative;
    padding: 12px 12px 12px 44px;
    border-radius: 14px;
    border: 1px solid rgba(15,74,50,0.09);
    background: rgba(255,255,255,0.9);
}

.step-item::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: var(--verde-oscuro);
    color: var(--beige);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.steps-cta {
    margin-top: 18px;
}

.contact {
    background: linear-gradient(135deg, #0F4A32 0%, #1F6B4C 70%);
    color: var(--beige);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: "";
    position: absolute;
    left: -160px;
    bottom: -120px;
    width: 360px;
    height: 360px;
    border-radius: 60% 40% 60% 40%;
    background: rgba(245,193,90,0.7);
    opacity: 0.8;
}

.contact-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0,1fr);
    gap: 22px;
}

.contact-header h2 {
    color: var(--beige);
}

.contact-details p {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.contact-details a {
    text-decoration: underline;
    text-decoration-color: rgba(245,233,210,0.6);
}

.contact-form {
    background: rgba(10,37,26,0.85);
    border-radius: 18px;
    padding: 16px 16px 14px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.contact-form-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.field-group label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: rgba(245,233,210,0.9);
}

.field-group input,
.field-group textarea {
    border-radius: 10px;
    border: 1px solid rgba(245,233,210,0.4);
    background: rgba(6,27,18,0.7);
    padding: 8px 10px;
    font-size: 13px;
    color: var(--beige);
    outline: none;
}

.field-group input::placeholder,
.field-group textarea::placeholder {
    color: rgba(245,233,210,0.5);
}

.field-group input:focus,
.field-group textarea:focus {
    border-color: var(--amarillo);
    box-shadow: 0 0 0 1px rgba(245,193,90,0.7);
}

.contact-message {
    margin-top: 10px;
}

.contact-actions {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.contact-note {
    margin-top: 6px;
    font-size: 11px;
    color: rgba(245,233,210,0.85);
}

footer {
    padding: 18px 0 24px;
    font-size: 11px;
    color: rgba(20,51,41,0.68);
    text-align: center;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-cta {
        display: block;
    }

    .nav-toggle,
    .mobile-menu {
        display: none !important;
    }

    .hero-inner {
        grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
        align-items: center;
        padding: 72px 0 70px;
    }

    h1 {
        font-size: 2.3rem;
    }

    .hero-subtitle {
        font-size: 1.02rem;
    }

    section {
        padding: 64px 0;
    }

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

    .services-grid {
        grid-template-columns: repeat(3,minmax(0,1fr));
    }

    .reasons-grid {
        grid-template-columns: repeat(3,minmax(0,1fr));
    }

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

    .contact-inner {
        grid-template-columns: minmax(0,1.1fr) minmax(0,0.9fr);
        align-items: center;
    }

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

@media (min-width: 1024px) {
    h1 {
        font-size: 2.6rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
