/* ===========================
   PALETA DE COLORES UI - GAMA VERDE Y NEUTRO
=========================== */

:root {
    --color-dark-nav: #121714;
    --color-sage-light: #9bb094;
    --color-cream-neutral: #e2ded4;
    --color-cream-alt: #ece8df;
    --color-green-sage: #5b8260;
    --color-green-forest: #36533c;
    --color-green-deep: #243828;
    --color-text-dark: #1e2620;
    --color-text-light: #f4f6f3;
    --color-white: #ffffff;
    --container: 1200px;
}

/* ===========================
   RESET
=========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--color-text-dark);
    line-height: 1.6;
    background-color: var(--color-cream-neutral);
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: var(--container);
    margin: auto;
}

/* ===========================
   SECCIONES CON COLORES ALTERNADOS
=========================== */

.section {
    padding: 70px 0;
}

.section-bg-cream {
    background-color: var(--color-cream-neutral);
    color: var(--color-text-dark);
}

.section-bg-alt {
    background-color: var(--color-cream-alt);
    color: var(--color-text-dark);
}

.section-bg-sage {
    background-color: var(--color-sage-light);
    color: var(--color-text-dark);
}

.section-bg-forest {
    background-color: var(--color-green-forest);
    color: var(--color-text-light);
}

.section-bg-deep {
    background-color: var(--color-green-deep);
    color: var(--color-text-light);
}

/* Secciones con Imagen de Fondo */
.section-image-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    padding: 85px 0;
}

.section-image-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(36, 56, 40, 0.88) 0%, rgba(54, 83, 60, 0.8) 100%);
    z-index: 1;
}

.section-image-bg>.container {
    position: relative;
    z-index: 2;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 35px;
}

.section-title-wrapper h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: inherit;
    margin-bottom: 8px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.section-subtitle {
    font-size: 1.1rem;
    opacity: 0.85;
    letter-spacing: 0.5px;
}

.section-cta-container {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

/* ===========================
   HEADER & NAVBAR OSCURO FIJO
=========================== */

.header {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 25;
    background-color: var(--color-dark-nav);
    border-bottom: 1px solid rgba(216, 199, 165, 0.2);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.brand-badge {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
}

.brand-top-row {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.brand-word-1 {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-white);
    letter-spacing: 1.5px;
    line-height: 1;
}

.brand-volcano-peak {
    width: 60px;
    height: 19px;
    color: #d8c7a5;
    opacity: 0.9;
    flex-shrink: 0;
    margin-bottom: 2px;
}

.brand-mid-row {
    margin-top: 2px;
}

.brand-word-2 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.95rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.5px;
    line-height: 1;
    display: block;
}

.brand-bottom-row {
    margin-top: 5px;
}

.brand-tagline {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d8c7a5;
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    gap: 25px;
    color: white;
}

.nav a {
    font-size: .95rem;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #d8c7a5;
}

.nav-cta-btn {
    background: #d8c7a5;
    color: var(--color-dark-nav) !important;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
}

.nav-cta-btn:hover {
    background: white;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

/* ===========================
   HERO SLIDER CON KEN BURNS
=========================== */

.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
    background-color: var(--color-dark-nav);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide.zoom-in .hero-image {
    animation: kenBurnsZoomIn 8s ease-out forwards;
}

.slide.zoom-out .hero-image {
    animation: kenBurnsZoomOut 8s ease-out forwards;
}

@keyframes kenBurnsZoomIn {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.12);
    }
}

@keyframes kenBurnsZoomOut {
    0% {
        transform: scale(1.12);
    }

    100% {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(18, 23, 20, 0.4) 0%, rgba(18, 23, 20, 0.75) 100%);
}

.hero-content {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 3;
    width: 100%;
    max-width: 950px;
    padding: 0 80px;
}

.hero-content h1,
.hero-content h2 {
    font-size: clamp(2.2rem, 4.8vw, 4rem);
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--color-white);
    font-family: 'Georgia', 'Times New Roman', serif;
}

.hero-buttons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* ===========================
   LANDSCAPE SECTION (BLOQUE DE TEXTO CON PADDING RESPONSIVO)
=========================== */

.landscape-section {
    position: relative;
    width: 100%;
}

.landscape-section img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.landscape-caption {
    background-color: var(--color-cream-neutral);
    color: var(--color-text-dark);
    padding: 50px 5%;
    width: 90%;
    max-width: var(--container);
    margin: -60px auto 0 auto;
    position: relative;
    z-index: 5;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(36, 56, 40, 0.1);
}

.landscape-caption h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 15px;
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--color-green-deep);
}

.landscape-caption p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* ===========================
   BOTONES CTA: HEADER VS SUBSECCIONES
=========================== */

.hero-content .btn-primary {
    padding: 12px 38px;
    border-radius: 50px;
    background: transparent;
    color: #d8c7a5;
    border: 2px solid #d8c7a5;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    display: inline-block;
    width: auto;
    max-width: fit-content;
    margin: 0 auto;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-content .btn-primary:hover {
    background: #d8c7a5;
    color: var(--color-dark-nav);
    transform: translateY(-2px);
}

.section-cta-container .btn-primary,
.section-cta-container .btn-secondary-light,
.feature-grid~.section-cta-container .btn-secondary-light {
    padding: 12px 38px;
    border-radius: 50px;
    display: inline-block;
    width: auto;
    max-width: fit-content;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    background: var(--color-green-forest);
    color: white;
    border: 2px solid var(--color-green-forest);
    box-shadow: 0 4px 12px rgba(36, 56, 40, 0.15);
    transition: all 0.3s ease;
}

.section-cta-container .btn-primary:hover,
.section-cta-container .btn-secondary-light:hover {
    background: var(--color-green-deep);
    border-color: var(--color-green-deep);
    transform: translateY(-2px);
    color: white;
}

.btn-primary-wide {
    padding: 12px 38px;
    border-radius: 50px;
    background: var(--color-green-forest);
    color: white;
    border: none;
    width: 100%;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary-wide:hover {
    background: var(--color-green-deep);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: var(--color-white);
    border: none;
    font-size: 1.8rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.75);
}

.slider-btn.prev {
    left: 15px;
}

.slider-btn.next {
    right: 15px;
}

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.dot.active,
.dot:hover {
    background: var(--color-white);
    transform: scale(1.15);
}

/* ===========================
   PAGE HEADERS
=========================== */

.page-header {
    position: relative;
    height: 60vh;
    min-height: 400px;
}

.page-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 23, 20, 0.6);
}

.page-header-content {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    width: 90%;
}

.page-header-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 15px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.page-header-content p {
    font-size: 1.15rem;
    color: #d8c7a5;
}

.wide-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.image-caption {
    margin-top: 15px;
    font-size: .9rem;
    color: #556b5d;
    text-align: center;
}

.image-caption a {
    color: var(--color-green-forest);
    text-decoration: underline;
}

/* ===========================
   PROJECT CONTENT GRID
=========================== */

.project-content-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.project-text p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.7;
    opacity: 0.9;
}

.project-highlight-box {
    background: rgba(255, 255, 255, 0.9);
    border-left: 4px solid var(--color-green-forest);
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(36, 56, 40, 0.08);
}

.section-bg-forest .project-highlight-box,
.section-bg-deep .project-highlight-box,
.section-image-bg .project-highlight-box {
    background: rgba(18, 23, 20, 0.75);
    border-left: 4px solid #d8c7a5;
    border: 1px solid rgba(216, 199, 165, 0.2);
}

.project-highlight-box h3 {
    color: var(--color-green-deep);
    margin-bottom: 15px;
    font-size: 1.25rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.section-bg-forest .project-highlight-box h3,
.section-bg-deep .project-highlight-box h3,
.section-image-bg .project-highlight-box h3 {
    color: var(--color-white);
}

.project-highlight-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.project-highlight-box li {
    position: relative;
    padding-left: 20px;
    opacity: 0.9;
}

.project-highlight-box li::before {
    content: "•";
    color: var(--color-green-forest);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.section-bg-forest .project-highlight-box li::before,
.section-bg-deep .project-highlight-box li::before,
.section-image-bg .project-highlight-box li::before {
    color: #d8c7a5;
}

/* ===========================
   FEATURE GRID & CARDS
=========================== */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.92);
    border-top: 5px solid var(--color-green-forest);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 20px rgba(36, 56, 40, 0.07);
    transition: transform 0.3s ease;
}

.section-bg-forest .feature-card,
.section-bg-deep .feature-card,
.section-image-bg .feature-card {
    background: rgba(18, 23, 20, 0.8);
    border-top: 5px solid #d8c7a5;
    border: 1px solid rgba(216, 199, 165, 0.15);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    color: var(--color-green-forest);
}

.section-bg-forest .feature-icon svg,
.section-bg-deep .feature-icon svg,
.section-image-bg .feature-icon svg {
    color: #d8c7a5;
}

.feature-card h3 {
    text-align: center;
    margin-bottom: 15px;
    color: var(--color-green-deep);
    font-size: 1.15rem;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.section-bg-forest .feature-card h3,
.section-bg-deep .feature-card h3,
.section-image-bg .feature-card h3 {
    color: var(--color-white);
}

.feature-card p {
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
}

/* ===========================
   GRILLA DE IMÁGENES DESTACADAS
=========================== */

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.highlight-item {
    position: relative;
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.highlight-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.highlight-item:hover img {
    transform: scale(1.06);
}

.highlight-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(36, 56, 40, 0.9) 0%, rgba(36, 56, 40, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
}

.highlight-overlay h3 {
    color: var(--color-white);
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.highlight-overlay p {
    color: #e2e8f0;
    font-size: 0.92rem;
}

/* ===========================
   PROCESO DE COMPRA
=========================== */

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-card {
    padding: 35px 25px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(36, 56, 40, 0.05);
}

.process-card span {
    display: inline-flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    background: var(--color-green-forest);
    color: white;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.process-card h3 {
    color: var(--color-green-deep);
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.process-card p {
    font-size: 0.95rem;
    opacity: 0.85;
}

.process-note {
    margin-top: 25px;
    font-style: italic;
    color: var(--color-green-forest);
    text-align: center;
}

/* ===========================
   ENTORNO CARDS
=========================== */

.entorno-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.entorno-card {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(36, 56, 40, 0.08);
    border-radius: 8px;
    overflow: hidden;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.entorno-card-img {
    position: relative;
    height: 220px;
    width: 100%;
}

.entorno-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.entorno-badge {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-green-forest);
    color: var(--color-white);
    padding: 8px 22px;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.entorno-list {
    list-style: none;
    padding: 35px 25px 0 25px;
    text-align: center;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0.85;
}

.distance-text-list {
    font-size: 0.9rem;
}

.distance-note {
    margin-top: 10px;
    font-style: italic;
    color: var(--color-green-forest);
}

/* ===========================
   LANDSCAPE GALLERY GRID
=========================== */

.landscape-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.landscape-gallery-card {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(36, 56, 40, 0.08);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.landscape-gallery-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 600 / 460;
    object-fit: cover;
}

.landscape-gallery-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.landscape-gallery-content h3 {
    font-size: 1.15rem;
    color: var(--color-green-deep);
    font-weight: bold;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.landscape-gallery-content p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.5;
}

/* ===========================
   GALERÍA FOTO GRID & LIGHTBOX
=========================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    cursor: pointer;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.03);
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 100;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    user-select: none;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 45px;
    background: none;
    border: 0;
    color: white;
    cursor: pointer;
    line-height: 1;
    z-index: 105;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 35px;
    padding: 15px 20px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s ease;
    z-index: 105;
}

.lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ===========================
   UBICACIÓN Y MAPAS
=========================== */

.map-section iframe {
    width: 100%;
    height: 380px;
    border: none;
    border-radius: 8px;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.location-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 6px;
}

/* ===========================
   CONTACTO LANDING & SECTIONS
=========================== */

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.contact-text h2 {
    color: var(--color-green-deep);
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.contact-text p {
    opacity: 0.85;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.contact-container-landing {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(36, 56, 40, 0.1);
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-side h3 {
    font-size: 2rem;
    color: var(--color-green-deep);
    margin-bottom: 10px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.contact-info-side p {
    opacity: 0.85;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.contact-highlight-text {
    color: var(--color-green-forest) !important;
    font-style: italic;
    margin-top: 15px;
    border-left: 3px solid var(--color-green-forest);
    padding-left: 15px;
}

.contact-form,
.contact-form-landing {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form label,
.contact-form-landing label {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--color-green-deep);
}

.contact-form input,
.contact-form textarea,
.contact-form-landing input,
.contact-form-landing textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(36, 56, 40, 0.2);
    background: #ffffff;
    color: var(--color-text-dark);
    font-size: 1rem;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form-landing input:focus,
.contact-form-landing textarea:focus {
    outline: none;
    border-color: var(--color-green-forest);
}

.contact-form textarea,
.contact-form-landing textarea {
    resize: vertical;
}

.honeypot-field {
    display: none !important;
}

/* ===========================
   BOTÓN ENVIAR FORMULARIO (CORREGIDO Y COMPACTO)
=========================== */

.contact-form .btn-primary,
.contact-form-landing .btn-primary,
.contact-form button[type="submit"],
.contact-form-landing button[type="submit"] {
    padding: 12px 38px;
    border-radius: 50px;
    display: inline-block;
    width: auto;
    max-width: fit-content;
    margin: 10px auto 0 auto;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    background: var(--color-green-forest);
    color: white;
    border: 2px solid var(--color-green-forest);
    box-shadow: 0 4px 12px rgba(36, 56, 40, 0.15);
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover,
.contact-form-landing .btn-primary:hover,
.contact-form button[type="submit"]:hover,
.contact-form-landing button[type="submit"]:hover {
    background: var(--color-green-deep);
    border-color: var(--color-green-deep);
    transform: translateY(-2px);
    color: white;
}

.form-feedback {
    margin-top: 10px;
    padding: 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    display: none;
}

.form-feedback.success {
    display: block;
    background-color: #e6f4ea;
    color: #137333;
    border: 1px solid #ceead6;
}

.form-feedback.error {
    display: block;
    background-color: #fce8e6;
    color: #c5221f;
    border: 1px solid #fad2cf;
}

/* ===========================
   CTA BANNER GENERAL
=========================== */

.cta {
    position: relative;
    background: linear-gradient(135deg, #36533c 0%, #243828 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 15px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.cta p {
    color: #e2e8f0;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* ===========================
   FOOTER
=========================== */

.footer {
    background: var(--color-dark-nav);
    color: #94a3b8;
    text-align: center;
    padding: 35px 0;
    border-top: 1px solid rgba(216, 199, 165, 0.1);
}

/* ===========================
   MOBILE / RESPONSIVE
=========================== */

@media(max-width:992px) {

    .project-content-grid,
    .location-benefits-grid,
    .contact-container,
    .contact-container-landing {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .highlights-grid,
    .entorno-cards-grid,
    .landscape-gallery-grid,
    .process-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container-landing,
    .contact-container {
        padding: 30px 20px;
    }
}

@media(max-width:768px) {
    .nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--color-dark-nav);
        flex-direction: column;
        padding: 25px;
        display: none;
        border-bottom: 1px solid rgba(216, 199, 165, 0.2);
    }

    .nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content {
        padding: 0 30px;
    }

    .slider-btn {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
    }

    .slider-btn.prev {
        left: 15px;
    }

    .slider-btn.next {
        right: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .brand-word-1 {
        font-size: 1.1rem;
    }

    .brand-word-2 {
        font-size: 1.6rem;
    }

    .brand-volcano-peak {
        width: 48px;
        height: 15px;
    }

    .brand-tagline {
        font-size: 0.55rem;
        letter-spacing: 2px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .landscape-caption {
        padding: 30px 20px;
        width: 92%;
        margin-top: -40px;
    }
}