/* CSS Variables */
:root {
    --primary-color: #2e7d32;
    --secondary-color: #4caf50;
    --accent-color: #81c784;
    --text-dark: #1b5e20;
    --text-light: #ffffff;
    --text-gray: #666666;
    --text-gray-dark: #1B1B1B;
    --text-green-nv: #4a9c2D;
    --background-light: #f8f9fa;
    --background-section: #f1f8e9;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --max-width: 1500px;
    --transition: all 0.3s ease;
    --font-family: 'Lato', sans-serif;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-gray);
    background-color: #ffffff;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
}

.header.scrolled .nav-menu a {
    color: var(--text-gray-dark);
}

.header.scrolled .hamburger span {
    background-color: var(--text-gray-dark);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0 0.5rem;
}

.logo {
    flex: 1;
}

.logo-img {
    height: 70px;
    width: auto;
    transition: height 0.3s ease;
}

.header.scrolled .logo-img {
    height: 50px;
}

/* Contenedor del menú - Desktop */
.nav-wrapper {
    display: flex;
    justify-content: center;
    flex: 2;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    justify-content: center;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: flex-end;
}

.header-social a {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.header-social a:hover {
    opacity: 0.7;
}

.social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Ocultar RRSS mobile en desktop */
.mobile-social,
.mobile-logo {
    display: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.header.scrolled .nav-menu a {
    text-shadow: none;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: var(--transition);
}

/* ----------------- Breadcrumb - Inicio ----------------- */
.breadcrumb-section {
    padding: 15px 0;
    margin-top: 40px; /* Para compensar el header fijo */
}
.breadcrumb-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
/* Promo Subsidio a la Tasa en breadcrumb */
.breadcrumb-promo {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.breadcrumb-promo-texto {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}
.breadcrumb-promo-titulo {
    color: #2e7d32;
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    white-space: nowrap;
}
.breadcrumb-promo-badge {
    display: inline-block;
    background-color: #2e7d32;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 6px 16px;
    border-radius: 4px;
    text-transform: uppercase;
    white-space: nowrap;
}
.breadcrumb-promo-img {
    width: 90px;
    height: auto;
    display: block;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.breadcrumb-item {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item:hover {
    color: #4CAF50;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #333;
    font-weight: 600;
}

.breadcrumb-separator {
    color: #999;
    user-select: none;
}

@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 12px 0;
        margin-top: 60px;
    }
    
    .breadcrumb {
        font-size: 13px;
        gap: 8px;
    }
    .breadcrumb-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .breadcrumb-promo {
        width: 100%;
        justify-content: flex-start;
    }
    .breadcrumb-promo-texto {
        align-items: flex-start;
    }
    .breadcrumb-promo-titulo {
        font-size: 1.5rem;
        white-space: normal;
    }
    .breadcrumb-promo-badge {
        white-space: normal;
    }
}
/* ----------------- Breadcrumb - Fin ----------------- */

/* Hero Slider */
.hero-slider {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
}

.hero-swiper {
    height: 100%;
}

.swiper-slide {
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-swiper .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 10;
    pointer-events: none;
}

/* Hero Slides - Las imágenes se asignan dinámicamente via style inline en el HTML */

/* Hero Video Slide */
.slide-video {
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.slide-video .titularIzquierdo {
    z-index: 20;
}

.titularIzquierdo {
    position: absolute;
    bottom: 30%;
    left: 10%;
    margin-left: 20px;
    margin-bottom: 10px;
    color: #fff;
    font-size: 72px;
    line-height: 62px;
    z-index: 20;
}

.titularIzquierdo a {
    color: #fff;
    text-decoration: none;
}

.titularIzquierdo .titulo{
    padding-bottom:10px;
}

.titularIzquierdo .subtitulo {
    font-size: 72px;
    line-height: 40px;
}

/* Mouse scroll indicator */
.hero-mouse-indicator {
    position: absolute;
    bottom: 27px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-mouse-indicator img {
    height: 50px;
    width: auto;
    opacity: 0.8;
    transition: var(--transition);
}

.hero-mouse-indicator span {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.8;
    transition: var(--transition);
}

.hero-mouse-indicator:hover img,
.hero-mouse-indicator:hover span {
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: -25px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
}

.swiper-pagination-bullet {
    background: var(--text-light);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-color);
}

/* Hero Slider - Contenedor de navegación */
.hero-nav-container {
    position: absolute;
    bottom: 60px;
    left: 78%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.hero-nav-arrows {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    position: static !important;
    width: 48px !important;
    height: 48px !important;
    margin: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    color: var(--text-light) !important;
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    content: '' !important;
    display: block;
    width: 48px;
    height: 48px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-swiper .swiper-button-next::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='2' y1='12' x2='22' y2='12'/%3E%3Cpolyline points='13.6 5 22 12 13.6 19'/%3E%3C/svg%3E");
}

.hero-swiper .swiper-button-prev::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='22' y1='12' x2='2' y2='12'/%3E%3Cpolyline points='10.4 19 2 12 10.4 5'/%3E%3C/svg%3E");
}

.hero-swiper .swiper-pagination {
    position: static !important;
    width: auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px;
}

.hero-swiper .swiper-pagination-bullet {
    width: 120px !important;
    height: 5px !important;
    border-radius: 0 !important;
    background: rgba(255, 255, 255, 0.5) !important;
    opacity: 1 !important;
    margin: 0 !important;
    transition: var(--transition);
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--text-light) !important;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.section-header {
    margin-bottom: 4rem;
}

/* Section Header con línea */
.section-header-line {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    margin-bottom: 2rem;
}

.section-title-link {
    font-size: 5.8rem;
    font-weight: 800;
    font-style: italic;
    color: #006d46;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
}

.section-title-link:hover {
    color: var(--primary-color);
}

.section-line {
    flex-grow: 1;
    height: 2px;
    background-color: #f5f5f5;
}

.section-view-all {
    font-size: 1.3rem;
    font-weight: 600;
    color: #006d46;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
}

.section-view-all:hover {
    color: var(--primary-color);
}

/* Logos Section */
.logos-section {
    padding: 80px 0;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    transition: var(--transition);
    min-height: 100px;
    width:120px;
}

/*
.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}
*/

.logo-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: var(--transition);
}

.logo-item:hover img {
    filter: grayscale(0%);
}

/* Logo Mini Slider */
.logo-mini-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-slides {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-slide {
    display: none;
    max-width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
}

.logo-slide.active {
    display: block;
}

.logo-bullets {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    justify-content: center;
}

.logo-bullet {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #006d46;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.logo-bullet:hover {
    background-color: rgba(0, 109, 70, 0.3);
}

.logo-bullet.active {
    background-color: #006d46;
    border-color: #006d46;
}

/* Projects Section */
.projects-section {
    padding: 100px 0;
    background-color: var(--text-light);
}

.projects-section .container {
    position: relative;
}

.projects-swiper {
    padding: 0 50px;
}

.projects-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.projects-swiper .project-card {
    background: none;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: var(--transition);
    height: 100%;
    width: 100%;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.projects-swiper .project-card:hover {
    transform: translateY(-8px);
    box-shadow: none;
}

.projects-swiper .project-image {
    height: 485px;
    overflow: hidden;
    position: relative;
    background: none;
}

.projects-swiper .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.projects-swiper .project-status {
    display: block;
    background-color: #ffffff;
    color: #000000;
    padding: 5px 12px;
    font-size: 1.2rem;
    font-weight: bold;
    width: 180px;
    text-align: left;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

/* Project Header - Franja Negra */
.projects-swiper .project-header {
    background-color: #000000;
    color: #ffffff;
    padding: 1rem 1.25rem;
    min-height: 85px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.projects-swiper .project-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    min-height: 3rem;
}

.projects-swiper .project-sector {
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.9;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Project Info - Franja Blanca */
.projects-swiper .project-info {
    background-color: #f5f5f5;
    display: flex;
    padding: 1.25rem;
    gap: 1rem;
    height: 117px;
}

.proyectos-sector-section .project-card-cta {
    display: block;
    width: 100%;
    margin-top: 1rem;
    padding: 0.6rem 1.25rem;
    border-radius: 10px;
    background-color: #ffa400;
    color: #ffffff;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
}

.proyectos-sector-section .project-card:hover .project-card-cta {
    background-color: #f09b00;
}

.projects-swiper .project-price-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.projects-swiper .price-label {
    font-size: 1.7rem;
    color: #666666;
    font-weight: 500;
    margin-bottom: 0.25rem;
    letter-spacing: 0.5px;
    line-height: 1.1rem;
}

.projects-swiper .project-price {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.projects-swiper .project-details-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: flex-start;
}

.projects-swiper .detail-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.projects-swiper .detail-text {
    font-size: 1.1rem;
    color: #666666;
    font-weight: 400;
    line-height: 1.3;
}

.projects-swiper img.detail-icon {
    width: 20px;
}

.projects-next,
.projects-prev {
    color: var(--primary-color);
    background: var(--text-light);
    box-shadow: var(--shadow-light);
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

/* News Section */
.news-section {
    padding: 100px 0;
    background-color: transparent;
}

.news-section .container {
    position: relative;
}

.news-swiper {
    padding: 0 50px;
}

.news-card {
    display: block;
    text-decoration: none;
    background: var(--text-light);
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: var(--transition);
    height: 100%;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: none;
}

.news-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

/* Círculo gris oscuro semi-transparente */
.news-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(50, 50, 50, 0.7);
    border-radius: 50%;
    z-index: 2;
    transition: var(--transition);
}

/* Triángulo blanco (botón play) */
.news-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-left: 33px solid #ffffff;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    z-index: 3;
    transition: var(--transition);
}

.news-card:hover .news-image::before {
    background-color: rgba(50, 50, 50, 0.9);
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 1.5rem;
    background-color: #F5F5F5;
}

.news-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: #1D1D1B;
    line-height: 1.3;
}

.news-date {
    color: #499C2D;
    font-size: 0.9rem;
    font-weight: 500;
    font-style: italic;
}

.news-next,
.news-prev {
    color: var(--primary-color);
    background: var(--text-light);
    box-shadow: var(--shadow-light);
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.bptl-section {
    background: #F5F6F8;
    text-align: center;
}

/* Footer */
.footer {
    background: #F5F6F8;
    color: #383838;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 60px;
    width: 120px;
    margin-bottom: 1rem;
    background-image: url('../images/icono-norte-verde-verde.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
}

.footer-company {
    font-weight: 700;
    font-size: 12px;
    color: #383838;
    margin-bottom: 0.25rem;
}

.footer-rut {
    font-weight: 700;
    font-size: 12px;
    color: #383838;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.footer-social a:hover {
    opacity: 0.7;
}

.footer-social img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.footer-title {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #000000;
    margin-bottom: 1rem;
}

.footer-office-name {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 12px;
    color: #383838;
    margin-bottom: 0.5rem;
}

.footer-office-name a {
    color: #383838;
    text-decoration: none;
    transition: var(--transition);
}

.footer-office-name a:hover {
    color: var(--primary-color);
}

.footer-text {
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #383838;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.footer-text a{
    text-decoration: none;
    color: #383838;
}

.footer-text a:hover {
    color: var(--primary-color);
}

.footer-col-serena {
    padding-top: 32px;
}

.footer-col-contacto {
    border-left: 2px solid #cccccc;
    padding-left: 2rem;
}

.footer-bottom {
    text-align: center;
    color: #383838;
    font-size: 12px;
}

/* Estilos para flechas de navegación circulares */
.circular-nav .swiper-button-next,
.circular-nav .swiper-button-prev {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.55) !important;
    width: 88px !important;
    height: 88px !important;
    border-radius: 50%;
    position: absolute;
    top: calc(50% + 60px);
    margin-top: -44px;
    transition: var(--transition);
    z-index: 10;
}

.circular-nav .swiper-button-next {
    right: -27px;
}

.circular-nav .swiper-button-prev {
    left: -27px;
}

.circular-nav .swiper-button-next:hover,
.circular-nav .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.85) !important;
}

.circular-nav .swiper-button-next::after,
.circular-nav .swiper-button-prev::after {
    content: '' !important;
    display: block;
    width: 56px;
    height: 56px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.circular-nav .swiper-button-next::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 32 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='2' y1='12' x2='28' y2='12'/%3E%3Cpolyline points='18 3 28 12 18 21'/%3E%3C/svg%3E");
}

.circular-nav .swiper-button-prev::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 32 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='30' y1='12' x2='4' y2='12'/%3E%3Cpolyline points='14 21 4 12 14 3'/%3E%3C/svg%3E");
}

.widgetBPTL, #widgetBPTL {
    height: 441px;
    position: relative;
    top: 4px;
}

@media screen and (max-width: 565px) {
    .widgetBPTL, #widgetBPTL {
        height: 584px;
    }
}

/* Responsive Design */
@media (max-width: 1655px) {
    .projects-swiper .detail-text {
        font-size: 0.9rem;
    }
}
@media (max-width: 1610px) {
    .projects-swiper .project-price {
        font-size: 2rem;
    }
}
/* Responsive Design */
@media (max-width: 1570px) {
    .circular-nav .swiper-button-next {
        right: -4px;
    }

    .circular-nav .swiper-button-prev {
        left: -4px;
    }
}
/* Responsive Design */
@media (max-width: 1500px) {
    .hero-swiper .swiper-pagination-bullet {
        width: 60px !important;
    }
     .hero-nav-container {
        left: 84%;
    }
    .projects-swiper .project-price{
        font-size: 2rem;
    }
    .projects-swiper .detail-text {
        font-size: 0.8rem;
    }
}
@media (max-width: 1435px) {
    .projects-swiper .project-price {
        font-size: 1.9rem;
    }
}
/* Responsive Design */
@media (max-width: 1330px) {
    .nav-menu a {
        font-size: 0.8rem;
    }
}
/* Responsive Design */
@media (max-width: 1140px) {
    .nav-menu a {
        font-size: 0.7rem;
    }
}
@media (max-width: 1112px) {
    .projects-swiper .project-price {
        font-size: 1.7rem;
    }
}
/* Responsive Design */
@media (max-width: 1060px) {
    .projects-swiper .project-price {
        font-size: 1.8rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .projects-swiper .project-price {
        font-size: 2rem;
    }
    .projects-swiper .detail-text {
        font-size: 0.9rem;
    }
}

/* Responsive Design */
@media (max-width: 801px) {
    .nav-menu a {
        font-size: 0.6rem;
    }
}

/* Responsive Design */
@media (max-width: 1610px) {
    .nav-menu {
        gap: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 1450px) {
    .nav-menu {
        gap: 0.7rem;
    }
}

/* Responsive Design */
@media (max-width: 870px) {
    .nav-menu {
        gap: 0.5rem;
    }
}

/* Responsive Design */
@media (max-width: 1100px) {
     .hero-nav-container {
        left: 75%;
    }
}

/* Responsive Design */
@media (max-width: 1500px) {
    .titularIzquierdo {
        font-size: 40px;
        line-height: 35px;
    }
    .titularIzquierdo .subtitulo {
        font-size: 40px;
        line-height: 35px;
    }
}

/* Responsive Design */
@media (max-width: 900px) {
    .titularIzquierdo {
        left:0;
        font-size: 30px;
        line-height: 25px;
    }
    .titularIzquierdo .subtitulo {
        font-size: 30px;
        line-height: 25px;
    }
}

/* Responsive Design */
@media (max-width: 700px) {
    .hero-mouse-indicator{
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 1080px) {
     .hero-nav-container {
        left: 77%;
    }
}

@media (max-width: 1200px) {
    .section-title-link {
        font-size: 4.8rem;
    }
}

@media (max-width: 1000px) {
    .section-title-link {
        font-size: 3.8rem;
    }
}

@media (max-width: 768px) {
    /* Ocultar bullets del hero en mobile */
    .hero-swiper .swiper-pagination {
        display: none !important;
    }
    
    /* Ajuste de alineación para header de sección en mobile */
    .section-header-line {
        gap: 1.2rem;
        padding-right: 0;
    }
    .section-line {
        min-width: 0;
        max-width: 100%;
    }
    .section-view-all {
        font-size: 1.1rem;
        margin-right: 0;
    }
    /* Mobile background image for hero slider */
    .hero-swiper .slide-1 {
        background-image: url('slide-header.png');
    }

    .hero-swiper .slide-2 {
        background-image: url('slide-header.png');
    }

    .hero-swiper .slide-3 {
        background-image: url('slide-header.png');
    }

    .container {
        padding: 0 15px;
    }

    /* Header Mobile */
    .header-social {
        display: none;
    }

    /* Contenedor del menú mobile */
    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding-top: 25px;
        box-shadow: var(--shadow-medium);
        transition: var(--transition);
        z-index: 999;
        transform: translateX(0);
    }

    .nav-wrapper.active {
        left: 0;
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 0;
        list-style: none;
    }

    .nav-menu a {
        color: var(--text-gray) !important;
        text-shadow: none !important;
        font-size: 1.2rem;
    }

    .nav-menu a:hover {
        color: var(--primary-color) !important;
    }

    /* Logo del menú mobile */
    .mobile-logo {
        display: block !important;
        text-align: center;
        margin-bottom: 20px;
        padding-top: 25px;
    }
    
    .mobile-logo a {
        display: inline-block;
    }
    
    .mobile-logo img {
        width: 120px;
        height: 60px;
        object-fit: contain;
    }

    /* RRSS dentro del menú mobile */
    .mobile-social {
        display: flex !important;
        gap: 20px;
        margin-top: 2rem;
    }

    .mobile-social img {
        width: 30px;
        height: 30px;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span {
        background-color: var(--text-gray-dark);
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Hero Mobile */
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }

    .slide-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .slide-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .btn-primary {
        padding: 12px 24px;
        font-size: 1rem;
    }

    /* Sections Mobile */
    .section-title {
        font-size: 2rem;
    }

    .logos-section,
    .projects-section,
    .news-section {
        padding: 60px 0;
    }

    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .projects-swiper,
    .news-swiper {
        padding: 0 20px;
        padding-bottom: 20px;
        position: relative;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .section-title-link {
        font-size: 2.5rem;
    }

    /* Contenedor de flechas en mobile */
    .projects-section .container,
    .news-section .container {
        padding-bottom: 80px;
    }

    /* Flechas debajo del slider en mobile */
    .circular-nav .swiper-button-next,
    .circular-nav .swiper-button-prev {
        display: flex !important;
        position: absolute !important;
        top: auto !important;
        bottom: 10px !important;
        margin-top: 0 !important;
        width: 60px !important;
        height: 60px !important;
    }

    .circular-nav .swiper-button-next {
        right: calc(50% - 70px) !important;
        left: auto !important;
    }

    .circular-nav .swiper-button-prev {
        left: calc(50% - 70px) !important;
        right: auto !important;
    }

    .circular-nav .swiper-button-next::after,
    .circular-nav .swiper-button-prev::after {
        width: 40px !important;
        height: 40px !important;
    }

    /* Project cards mobile adjustments */
    .projects-swiper .project-info {
        padding: 1rem;
        gap: 0.75rem;
    }

    .projects-swiper .project-price {
        font-size: 1.2rem;
    }

    .projects-swiper .detail-text {
        font-size: 0.75rem;
    }

    .projects-swiper .project-header {
        padding: 0.75rem 1rem;
    }

    .projects-swiper .project-name {
        font-size: 1rem;
    }

    .projects-swiper .project-sector {
        font-size: 0.8rem;
    }

    .bptl-section img{
        width: 70%
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 1rem;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-col-serena {
        padding-top: 0;
    }

    .footer-col-contacto {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid #cccccc;
        padding-top: 2rem;
    }
}

@media (max-width: 638px) {
    .projects-swiper .project-price {
        font-size: 2.2rem;
    }
    .projects-swiper .detail-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 1.75rem;
    }

    .slide-description {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .logos-grid .logo-item {
        width: 100% !important;
        max-width: 140px;
        left: 0 !important;
        margin: 0 auto;
    }

    .project-content,
    .news-content {
        padding: 1.5rem;
    }
}

/* Large screens - 140px padding on sides */
@media (min-width: 1400px) {
    .container {
        max-width: none;
        margin: 0 140px;
        padding: 0 20px;
    }

    .projects-swiper,
    .news-swiper {
        padding: 0 50px;
    }

    .projects-swiper {
        margin: 0 -140px;
        padding: 0 190px;
    }

    .news-swiper {
        margin: 0 -140px;
        padding: 0 190px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    left: auto !important;
    z-index: 9999 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

/* ===========================
   PÁGINA DE PROYECTO
   =========================== */

/* Hero Image Full Width */
/* Altura proporcional: 1000px en 1920px de ancho -> 600px en 768px -> fijo 600px debajo */
.proyecto-hero {
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: clamp(600px, calc(600px + (100vw - 768px) * 0.347), 900px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Overlay oscuro para legibilidad del texto */
.proyecto-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

/* Contenido del Hero */
.proyecto-hero-content {
    position: absolute;
    left: 10%;
    bottom: 15%;
    color: #fff;
    z-index: 2;
}

.proyecto-subtitulo {
    display: block;
    font-size: clamp(2.0rem, 4vw, 4rem);
    font-style: italic;
    font-weight: 400;
    margin-bottom: 0;
}

.proyecto-titulo {
    font-size: clamp(2.0rem, 5vw, 5rem);
    font-style: italic;
    font-weight: 900;
    margin: 0 0 15px 0;
    line-height: 1.1;
}

.proyecto-ubicacion {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-style: italic;
}

.icono-ubicacion,
.icono-precio {
    font-size: 1rem;
    margin-right: 5px;
}

.proyecto-separador {
    width: 200px;
    height: 1px;
    background-color: #fff;
    margin-bottom: 15px;
}

.proyecto-precio {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4rem;
    font-weight: 500;
}

.icono-ubicacion img, .icono-precio img{
    width:30px;
}

/* Badge Barrio Vertical */
.proyecto-hero-badge {
    position: absolute;
    right: 5%;
    bottom: 15%;
    z-index: 2;
}

.proyecto-hero-badge img {
    height: 60px;
    width: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .proyecto-hero-content {
        left: 50%;
        transform: translateX(-50%);
        bottom: 18%;
        text-align: center;
        width: 90%;
    }
    
    .proyecto-ubicacion,
    .proyecto-precio {
        justify-content: center;
    }
    
    .proyecto-separador {
        margin-left: auto;
        margin-right: auto;
        width: 150px;
    }
    
    .proyecto-hero-badge {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 5%;
        right: auto;
    }
    
    .proyecto-hero-badge img {
        height: 50px;
    }
    
    .proyecto-subtitulo {
        font-size: 1.5rem;
    }
}

/* ===========================
   SECCIÓN INFO PROYECTO
   =========================== */
.proyecto-info-section {
    padding: 60px 0;
    background-color: #fff;
}

.proyecto-info-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1.3fr;
    gap: 40px;
    align-items: start;
}

/* Columna 1: Logo */
.proyecto-info-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.proyecto-info-logo img {
    max-width: 100%;
    height: auto;
}

/* Columna 2: Descripción */
.proyecto-info-descripcion {
    color: var(--text-gray-dark);
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 30px;
}

.proyecto-info-descripcion p {
    margin-bottom: 1rem;
}

.proyecto-info-descripcion p:last-child {
    margin-bottom: 0;
}

/* Columna 3: Características */
.proyecto-info-caracteristicas {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.caracteristica-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 7px 0;
    border-bottom: 1px solid #e0e0e0;
}

.caracteristica-icono {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.caracteristica-texto {
    font-size: 1rem;
    color: var(--text-gray-dark);
}

/* Responsive Info Section */
@media (max-width: 992px) {
    .proyecto-info-grid {
        grid-template-columns: 1fr 1.3fr;
        gap: 30px;
    }
    
    .proyecto-info-logo {
        grid-column: 1 / -1;
        margin-bottom: 20px;
    }
    
    .proyecto-info-logo img {
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .proyecto-info-section {
        padding: 40px 0;
    }
    
    .proyecto-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .proyecto-info-logo {
        grid-column: auto;
    }
    
    .proyecto-info-logo img {
        max-width: 180px;
    }
    
    .proyecto-info-descripcion {
        margin-top: 0;
        padding: 0 20px;
    }
    
    .proyecto-info-caracteristicas {
        margin-top: 0;
    }

.caracteristica-row {
        padding: 5px 20px;
    }
}

/* ===========================
   SECCIÓN BOTONES DE ACCIÓN
   =========================== */
.proyecto-acciones-section {
    padding: 40px 0;
    background-color: #fff;
}

.proyecto-acciones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.proyecto-accion-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 20px;
    border: 1px solid #b5b5b5;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-gray-dark);
    font-size: 0.95rem;
    transition: var(--transition);
    background-color: #f5f5f5;
}

.proyecto-accion-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.proyecto-accion-btn img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

/* Responsive Botones */
@media (max-width: 992px) {
    .proyecto-acciones-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .proyecto-acciones-grid {
        grid-template-columns: 1fr;
    }
    
    .proyecto-accion-btn {
        justify-content: flex-start;
        padding: 12px 20px;
    }
}

/* ===========================
   SECCIÓN ÁREAS COMUNES
   =========================== */
.proyecto-areas-section {
    padding-top: 60px;
}

.proyecto-areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

/* Galería izquierda */
.proyecto-areas-galeria {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.areas-swiper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.areas-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.areas-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navegación personalizada de la galería */
.areas-swiper .swiper-navigation-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.areas-swiper .swiper-button-next,
.areas-swiper .swiper-button-prev {
    position: relative;
    background: transparent;
    width: 40px;
    height: 40px;
    margin: 0;
    top: auto;
    left: auto;
    right: auto;
}

.areas-swiper .swiper-button-next::after,
.areas-swiper .swiper-button-prev::after {
    content: '' !important;
    display: block;
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.areas-swiper .swiper-button-next::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='2' y1='12' x2='22' y2='12'/%3E%3Cpolyline points='13.6 5 22 12 13.6 19'/%3E%3C/svg%3E");
}

.areas-swiper .swiper-button-prev::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='22' y1='12' x2='2' y2='12'/%3E%3Cpolyline points='10.4 19 2 12 10.4 5'/%3E%3C/svg%3E");
}

/* Contenedor de navegación centrado abajo */
.areas-nav-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Contenedor flechas arriba de bullets */
.areas-nav-arrows {
    display: flex;
    gap: 50px;
}

/* Bullets como líneas horizontales */
.areas-swiper .swiper-pagination {
    position: relative;
    bottom: auto;
    width: auto;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.areas-swiper .swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 !important;
}

.areas-swiper .swiper-pagination-bullet-active {
    background: #fff;
}

/* Contenido derecha */
.proyecto-areas-content {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.proyecto-areas-titulo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-green-nv);
    margin-bottom: 30px;
    font-style: italic;
}

/* Checklist con bullets personalizados */
.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
}

.checklist li {
    position: relative;
    padding-left: 35px;
    font-size: 1.2rem;
    color: var(--text-gray-dark);
    line-height: 1.5;
    padding-bottom: 10px;
}

.checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 26px;
    height: 26px;
    background-image: url('../images/list-check-verde.png');
    background-size: contain;
    background-repeat: no-repeat;
}

/* Responsive Áreas Comunes */
@media (max-width: 768px) {
    .proyecto-areas-grid {
        grid-template-columns: 1fr;
    }
    
    .proyecto-areas-galeria {
        min-height: 400px;
        position: relative;
    }
    
    .proyecto-areas-content {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .proyecto-areas-galeria {
        min-height: 300px;
    }
    
    .proyecto-areas-content {
        padding: 30px 20px;
    }
    
    .proyecto-areas-titulo {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .checklist {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* ===========================
   SECCIÓN TERMINACIONES
   =========================== */
.proyecto-terminaciones-section {
    padding-top: 60px;
}

.proyecto-terminaciones-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

/* Contenido izquierda */
.proyecto-terminaciones-content {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Galería derecha */
.proyecto-terminaciones-galeria {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.terminaciones-swiper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.terminaciones-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.terminaciones-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.terminaciones-swiper .swiper-button-next,
.terminaciones-swiper .swiper-button-prev {
    position: relative;
    background: transparent;
    width: 40px;
    height: 40px;
    margin: 0;
    top: auto;
    left: auto;
    right: auto;
}

.terminaciones-swiper .swiper-button-next::after,
.terminaciones-swiper .swiper-button-prev::after {
    content: '' !important;
    display: block;
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.terminaciones-swiper .swiper-button-next::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='2' y1='12' x2='22' y2='12'/%3E%3Cpolyline points='13.6 5 22 12 13.6 19'/%3E%3C/svg%3E");
}

.terminaciones-swiper .swiper-button-prev::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='22' y1='12' x2='2' y2='12'/%3E%3Cpolyline points='10.4 19 2 12 10.4 5'/%3E%3C/svg%3E");
}

.terminaciones-swiper .swiper-pagination {
    position: relative;
    bottom: auto;
    width: auto;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.terminaciones-swiper .swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 !important;
}

.terminaciones-swiper .swiper-pagination-bullet-active {
    background: #fff;
}

/* Responsive Terminaciones */
@media (max-width: 768px) {
    .proyecto-terminaciones-grid {
        grid-template-columns: 1fr;
    }
    
    .proyecto-terminaciones-content {
        order: 2;
        padding: 30px 20px;
    }
    
    .proyecto-terminaciones-galeria {
        order: 1;
        min-height: 300px;
    }
}

/* ===========================
   SECCIÓN CERCANÍA
   =========================== */
.proyecto-cercania-section {
    margin-top: 60px;
    padding: 60px 0;
    background-color: #F5F6F8;
}

.proyecto-cercania-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.cercania-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.cercania-numero {
    font-size: 8rem;
    color: var(--text-green-nv);
    line-height: 1;
}

.cercania-info {
    display: flex;
    flex-direction: column;
    padding-top: 10px;
}

.cercania-icono {
    width: 40px;
    height: auto;
}

.cercania-texto {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #333;
    margin: 0;
}

.cercania-texto strong {
    color: #1d1d1b;
}

/* Responsive Cercanía */
@media (max-width: 992px) {
    .proyecto-cercania-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cercania-item {
        justify-content: center;
    }
    
    .cercania-numero {
        font-size: 7rem;
    }
}

@media (max-width: 768px) {
    .proyecto-cercania-section {
        padding: 40px 0;
    }
    
    .cercania-item {
        justify-content: space-evenly;
    }

    .cercania-numero {
        font-size: 7rem;
    }
    
    .cercania-icono {
        width: 35px;
    }
    
    .cercania-texto {
        font-size: 0.9rem;
    }
}

/* ===========================
   SECCIÓN TOUR 360 (Solo Desktop)
   =========================== */
.proyecto-tour-section {
    display: block;
    width: 100%;
    background-color: #333;
}

.tour-swiper {
    width: 100%;
    height: 450px;
}

.tour-slide {
    display: grid;
    grid-template-columns: 2fr 1fr;
    height: 100%;
    width: 100%;
}

.tour-slide-image {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.tour-slide-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 2;
    pointer-events: none;
}

.tour-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-slide-image:hover img {
    transform: scale(1.02);
}

/* Overlay Tour 360 */
.tour-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 5;
    pointer-events: none;
}

.tour-overlay img {
    width: 90px;
    height: auto;
    margin-bottom: 10px;
}

.tour-overlay span {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
}

.tour-slide-content {
    display: flex;
    align-items: center;
    justify-content: left;
    background-color: #1d1d1b;
    padding: 40px;
}

.tour-slide-title{
    color: var(--text-green-nv);
    font-weight: 700;
}

.tour-slide-content p {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.2;
    text-align: left;
    font-style: italic;
    padding-left: 15%;
}

/* Navegación Tour */
.tour-nav-container {
    position: absolute;
    bottom: 20px;
    right: 10%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.tour-swiper .swiper-button-next,
.tour-swiper .swiper-button-prev {
    position: relative;
    background: transparent;
    width: 40px;
    height: 40px;
    margin: 0;
    top: auto;
    left: auto;
    right: auto;
}

.tour-swiper .swiper-button-next::after,
.tour-swiper .swiper-button-prev::after {
    content: '' !important;
    display: block;
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.tour-swiper .swiper-button-next::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='2' y1='12' x2='22' y2='12'/%3E%3Cpolyline points='13.6 5 22 12 13.6 19'/%3E%3C/svg%3E");
}

.tour-swiper .swiper-button-prev::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='22' y1='12' x2='2' y2='12'/%3E%3Cpolyline points='10.4 19 2 12 10.4 5'/%3E%3C/svg%3E");
}

.tour-swiper .swiper-pagination {
    position: relative;
    bottom: auto;
    width: auto;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.tour-swiper .swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 !important;
}

.tour-swiper .swiper-pagination-bullet-active {
    background: #fff;
}

/* Ocultar en mobile */
@media (max-width: 768px) {
    .proyecto-tour-section {
        display: none;
    }
}

/* ==================== TOUR 360 MOBILE ==================== */
.link-360-mobile {
    display: none;
}
.proyecto-tour-section-mobile {
    display: none;
}

@media (max-width: 768px) {
    .link-360-mobile {
        display: flex;
    }

    .link-360-desktop {
        display: none;
    }

    .proyecto-tour-section-mobile {
        display: block;
        width: 100%;
    }

    .tour-swiper-mobile {
        width: 100%;
        position: relative;
    }

    .tour-slide-mobile {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .tour-slide-image-mobile {
        position: relative;
        display: block;
        width: 100%;
        aspect-ratio: 16/9;
        overflow: hidden;
        min-height: 400px;
    }

    .tour-slide-image-mobile::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.35);
        z-index: 2;
        pointer-events: none;
    }

    .tour-slide-image-mobile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .tour-slide-image-mobile .tour-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        z-index: 5;
        pointer-events: none;
    }

    .tour-slide-image-mobile .tour-overlay img {
        width: 90px;
        height: auto;
        margin-bottom: 8px;
    }

    .tour-slide-image-mobile .tour-overlay span {
        color: #fff;
        font-size: 1.2rem;
        font-weight: 500;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .tour-slide-content-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #1d1d1b;
        padding: 30px 20px;
    }

    .tour-slide-content-mobile p {
        color: #fff;
        font-size: 1.8rem;
        font-weight: 300;
        line-height: 1.2;
        text-align: center;
        font-style: italic;
        margin: 0;
    }

    .tour-slide-content-mobile .tour-slide-title {
        color: var(--text-green-nv);
        font-weight: 700;
    }

    .tour-nav-container-mobile {
        position: relative;
        background-color: #1d1d1b;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .tour-nav-container-mobile .areas-nav-arrows {
        display: flex;
        gap: 15px;
    }

    .tour-swiper-mobile .swiper-button-prev,
    .tour-swiper-mobile .swiper-button-next {
        position: relative;
        background: transparent;
        width: 35px;
        height: 35px;
        margin: 0;
        top: auto;
        left: auto;
        right: auto;
    }

    .tour-swiper-mobile .swiper-button-next::after,
    .tour-swiper-mobile .swiper-button-prev::after {
        content: '' !important;
        display: block;
        width: 35px;
        height: 35px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .tour-swiper-mobile .swiper-button-next::after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='2' y1='12' x2='22' y2='12'/%3E%3Cpolyline points='13.6 5 22 12 13.6 19'/%3E%3C/svg%3E");
    }

    .tour-swiper-mobile .swiper-button-prev::after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='22' y1='12' x2='2' y2='12'/%3E%3Cpolyline points='10.4 19 2 12 10.4 5'/%3E%3C/svg%3E");
    }

    .tour-swiper-mobile .swiper-pagination {
        position: relative;
        bottom: auto;
        width: auto;
        display: flex;
        justify-content: center;
        gap: 8px;
    }

    .tour-swiper-mobile .swiper-pagination-bullet {
        width: 25px;
        height: 3px;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.5);
        opacity: 1;
        margin: 0 !important;
    }

    .tour-swiper-mobile .swiper-pagination-bullet-active {
        background: #fff;
    }
}

/* ===========================
   SECCIÓN PLANTAS
   =========================== */
.proyecto-plantas-section {
    padding: 80px 0;
    background-color: #fff;
}

.plantas-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.plantas-titulo {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #54565A;
    font-style: italic;
    margin: 0;
}

.plantas-titulo-destacado {
    color: var(--text-green-nv);
    font-weight: 700;
}

.plantas-separador-header {
    width: 50%;
    height: 2px;
    background-color: #f5f5f5;
    margin: 20px 0;
}

.programa-select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.programa-select-label {
    font-size: 1rem;
    color: #1d1d1b;
    white-space: nowrap;
}

.programa-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    border: 2px solid var(--text-green-nv);
    border-radius: 10px;
    padding: 12px 50px 12px 20px;
    font-size: 1rem;
    color: #1d1d1b;
    cursor: pointer;
    min-width: 200px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a9c2D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    width: 300px;
}

.programa-select:focus {
    outline: none;
    border-color: #3d8526;
}

.plantas-slider-container {
    position: relative;
}

.plantas-swiper {
    padding: 0 60px;
}

.planta-slide {
    display: grid;
    grid-template-columns: 0.4fr 1.2fr 2fr;
    gap: 30px;
    background-color: #fff;
    padding: 30px;
    align-items: center;
}

.planta-esquicio {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    height: 100%;
}

.planta-esquicio img {
    max-width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
}

.planta-imagen {
    display: flex;
    align-items: center;
    justify-content: center;
}

.planta-imagen img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

.planta-info {
    padding: 20px;
}

.planta-tipo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-green-nv);
    margin-bottom: 15px;
    font-style: italic;
}

.planta-tipo span {
    font-weight: 400;
    color: #1D1D1B;
    margin-left:20px;
    font-style: normal;
}

.planta-separador {
    height: 1px;
    background-color: #ddd;
    margin: 15px 0;
}

.planta-tabla {
    width: 100%;
    border-collapse: collapse;
}

.planta-tabla th {
    font-size: 0.75rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    text-align: left;
    padding: 8px 5px;
}

.planta-tabla td {
    font-size: 1rem;
    color: #1D1D1B;
    padding: 8px 5px;
    border-bottom: 1px solid #eee;
}

.planta-tabla .total-row td {
    font-weight: 700;
    color: #1d1d1b;
    border-bottom: none;
}

.planta-precio-row {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.planta-precio {
    display: flex;
    flex-direction: column;
    flex: 0.7;
}

.precio-label {
    font-size: 0.95rem;
    color: #54565A;
}

.precio-valor {
    font-size: 2rem;
    font-weight: 700;
    color: #1D1D1B;
}

.planta-btn {
    display: inline-block;
    padding: 6px 35px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.planta-btn-cotizar {
    background-color: var(--text-green-nv);
    color: #fff;
    border: 2px solid var(--text-green-nv);;
}

.planta-btn-cotizar:hover {
    background-color: #3d8526;
    border-color: #3d8526;
}

.planta-btn-reservar {
    background-color: transparent;
    color: var(--text-green-nv);
    border: 2px solid var(--text-green-nv);
}

.planta-btn-reservar:hover {
    background-color: var(--text-green-nv);
    color: #fff;
}

/* Navegación Plantas */
.plantas-prev,
.plantas-next {
    color: var(--primary-color);
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    width: 70px !important;
    height: 70px !important;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    z-index: 10;
}

.plantas-prev {
    left: -10px;
}

.plantas-next {
    right: -10px;
}

.plantas-prev:hover,
.plantas-next:hover {
    background: #f5f5f5 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.plantas-prev::after,
.plantas-next::after {
    content: '' !important;
    display: block;
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.plantas-next::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 32 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='2' y1='12' x2='28' y2='12'/%3E%3Cpolyline points='18 3 28 12 18 21'/%3E%3C/svg%3E");
}

.plantas-prev::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 32 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='30' y1='12' x2='4' y2='12'/%3E%3Cpolyline points='14 21 4 12 14 3'/%3E%3C/svg%3E");
}

/* Contenedor de navegación plantas */
.plantas-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.plantas-nav .plantas-prev,
.plantas-nav .plantas-next {
    pointer-events: auto;
}

/* Paginación Plantas */
.plantas-pagination {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 20px;
    width: 100%;
}

.plantas-pagination.swiper-pagination-bullets {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
}

.plantas-pagination .swiper-pagination-bullet {
    width: 30px !important;
    height: 4px !important;
    border-radius: 0 !important;
    background: rgba(0, 0, 0, 0.25) !important;
    opacity: 1 !important;
    margin: 0 4px !important;
    cursor: pointer;
    transition: background 0.3s ease;
}

.plantas-pagination .swiper-pagination-bullet-active {
    background: var(--text-green-nv) !important;
}

.plantas-legal {
    text-align: center;
    margin-top: 40px;
    padding: 0 20px;
}

.plantas-legal p {
    font-size: 0.75rem;
    line-height: 1.4;
    color: #666;
    margin: 0 auto;
    text-align: justify;
}

/* ===========================
   SECCIÓN UBICACIÓN
   =========================== */
.proyecto-ubicacion-section {
    padding: 0;
}

.proyecto-ubicacion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    gap: 0;
}

/* Mapa izquierda */
.proyecto-ubicacion-mapa {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.mapa-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.mapa-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Galería derecha */
.proyecto-ubicacion-galeria {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

.ubicacion-swiper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.ubicacion-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.ubicacion-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ubicacion-swiper .swiper-button-next,
.ubicacion-swiper .swiper-button-prev {
    position: relative;
    background: transparent;
    width: 40px;
    height: 40px;
    margin: 0;
    top: auto;
    left: auto;
    right: auto;
}

.ubicacion-swiper .swiper-button-next::after,
.ubicacion-swiper .swiper-button-prev::after {
    content: '' !important;
    display: block;
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.ubicacion-swiper .swiper-button-next::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='2' y1='12' x2='22' y2='12'/%3E%3Cpolyline points='13.6 5 22 12 13.6 19'/%3E%3C/svg%3E");
}

.ubicacion-swiper .swiper-button-prev::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='22' y1='12' x2='2' y2='12'/%3E%3Cpolyline points='10.4 19 2 12 10.4 5'/%3E%3C/svg%3E");
}

.ubicacion-swiper .swiper-pagination {
    position: relative;
    bottom: auto;
    width: auto;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.ubicacion-swiper .swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 !important;
}

.ubicacion-swiper .swiper-pagination-bullet-active {
    background: #fff;
}

/* Responsive Ubicación */
@media (max-width: 768px) {
    .proyecto-ubicacion-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .proyecto-ubicacion-mapa,
    .proyecto-ubicacion-galeria {
        min-height: 400px;
    }
}

/* Responsive Plantas */
@media (max-width: 1710px) {
    .planta-precio {
        flex: 1;
    }

/* Responsive Plantas */
@media (max-width: 1690px) {
    .plantas-separador-header {
            width: 37%;
    }
}

/* Responsive Plantas */
@media (max-width: 1120px) {
    .plantas-separador-header {
            width: 25%;
    }
}

/* Responsive Plantas */
@media (max-width: 990px) {
    .plantas-separador-header {
        display: none;
    }

    .planta-slide {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 20px;
        padding: 20px;
    }
    
    .planta-imagen {
        grid-column: 1;
        grid-row: 1;
    }
    
    .planta-esquicio {
        grid-column: 1;
        grid-row: 2;
        justify-content: center;
        align-items: center;
    }
    
    .planta-info {
        grid-column: 1;
        grid-row: 3;
    }
}

@media (max-width: 992px) {
    .plantas-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .programa-select-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .plantas-titulo {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .proyecto-plantas-section {
        padding: 50px 0;
    }
    
    .plantas-swiper {
        padding: 0 20px 60px;
    }
    
    .planta-tipo span {
        display: block;
        margin-left: 0;
    }
    .planta-precio-row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .planta-precio {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .planta-btn {
        width: 100%;
        margin-top: 0px;
    }
    
    .plantas-swiper {
        padding: 0;
    }
    
    .plantas-slider-container {
        position: relative;
    }
    
    .plantas-nav {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        margin-top: 20px;
        gap: 30px !important;
        pointer-events: auto;
        width: 100%;
    }
    
    .plantas-nav .plantas-prev,
    .plantas-nav .plantas-next {
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 50px !important;
        height: 50px !important;
        margin: 0 !important;
        flex-shrink: 0;
    }
    
    .plantas-prev::after,
    .plantas-next::after {
        width: 28px;
        height: 28px;
    }
}

}

/* Sección Ejecutivos */
.proyecto-ejecutivos-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.ejecutivos-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.proyecto-ejecutivos-titulo {
    text-align: left;
    font-size: 48px;
    color: #54565A;
    margin: 0;
    font-weight: 400;
    line-height: 1.2;
    font-style: italic;
    flex-shrink: 0;
}

.proyecto-ejecutivos-titulo span{
    color: var(--text-green-nv);
    font-weight: 600;
}

.ejecutivos-titulo-linea {
    height: 2px;
    background-color: #f5f5f5;
    flex: 1;
}

.proyecto-ejecutivos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.ejecutivo-card {
    background: #F5F6F8;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition);
    width: 100%;
}

.ejecutivo-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.ejecutivo-imagen {
    flex-shrink: 0;
}

.ejecutivo-imagen img {
    width: 100px !important;
    height: 100px !important;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.ejecutivo-info {
    flex: 1;
}

.ejecutivo-nombre {
    font-size: 20px;
    font-weight: 700;
    color: #1D1D1B;
    margin-bottom: 6px;
}

.ejecutivo-email {
    color: #54565A;
    font-size: 15px;
    margin-bottom: 3px;
    font-weight: 500;
}

.ejecutivo-telefono {
    color: #54565A;
    font-size: 15px;
    margin-bottom: 6px;
    font-weight: 500;
}

.ejecutivo-horario {
    color: #54565A;
    font-size: 15px;
    margin-bottom: 14px;
    line-height: 1.3;
}

.ejecutivo-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--text-green-nv);
    color: white;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
}

.ejecutivo-btn:hover {
    background: #245a28;
    transform: translateY(-1px);
}

.ejecutivo-btn img {
    width: 16px;
    height: 16px;
}

/* Mobile */
@media (max-width: 768px) {
    .proyecto-ejecutivos-section {
        padding: 60px 0;
    }
    
    .ejecutivos-header {
        display: block;
        margin-bottom: 60px;
    }
    
    .proyecto-ejecutivos-titulo {
        font-size: 32px;
        margin: 0 0 15px 0;
        text-align: left;
    }
    
    .ejecutivos-titulo-linea {
        width: 100%;
    }
    
    .proyecto-ejecutivos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ejecutivo-card {
        flex-direction: column;
        text-align: left;
        padding: 24px;
        gap: 20px;
    }
    
    .ejecutivo-imagen img {
        width: 100px !important;
        height: 100px !important;
        border-radius: 50%;
        object-fit: cover;
        object-position: center;
    }
    
    .ejecutivo-nombre {
        font-size: 18px;
    }
    
    .ejecutivo-btn {
        align-self: flex-start;
    }
}

/* Pestaña Sticky Cotizar */
.sticky-cotiza {
    position: fixed;
    top: 35%;
    right: 0;
    background: var(--text-green-nv);
    color: white;
    writing-mode: sideways-lr;
    text-orientation: mixed;
    padding: 29px 6px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    z-index: 1000;
    border-radius: 8px 0 0 8px;
    transition: all 0.3s ease;
    transform: translateX(0);
}

.sticky-cotiza:hover {
    background: #3e8625;
}

/* Mobile */
@media (max-width: 768px) {
    .sticky-cotiza {
        top: 40%;
        padding: 30px 10px;
        font-size: 14px;
    }
}

/* ===========================
   PROYECTOS HERO SECTION
   =========================== */
.proyectos-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    height: clamp(600px, calc(600px + (100vw - 768px) * 0.347), 900px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 0 10%;
    padding-bottom: 80px;
}

/* Overlay oscuro para legibilidad del texto */
.proyectos-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

/* Contenido del Hero - Título a la izquierda */
.proyectos-hero-content {
    position: relative;
    color: #fff;
    z-index: 2;
}

.proyectos-titulo {
    font-size: clamp(3rem, 6vw, 6rem);
    font-style: italic;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.proyectos-subtitulo {
    font-size: clamp(2rem, 4vw, 4rem);
    font-style: italic;
    font-weight: 400;
    margin: 0;
    line-height: 1;
}

/* Filtros a la derecha */
.proyectos-filtros {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 20px;
}

.proyectos-filtro-estado,
.proyectos-filtro-sector {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #54565A;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 1rem;
    color: #54565A;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.proyectos-filtro-estado:hover,
.proyectos-filtro-sector:hover {
    border: 2px solid var(--text-green-nv);
}

.proyectos-filtro-estado:focus,
.proyectos-filtro-sector:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(74, 156, 45, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .proyectos-hero {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        text-align: left;
        padding: 60px 10%;
        gap: 40px;
    }
    
    .proyectos-hero-content {
        order: 1;
        align-self: flex-start;
        text-align: left;
        width: 100%;
    }
    
    .proyectos-filtros {
        order: 2;
        flex-direction: column;
        width: 100%;
        gap: 15px;
        align-self: stretch;
    }
    
    .proyectos-filtro-estado,
    .proyectos-filtro-sector {
        width: 100%;
        min-width: auto;
    }
}

/* ===========================
   PROYECTOS SECTOR SECTION
   =========================== */
.proyectos-sector-section {
    padding: 60px 0;
    background-color: #fff;
}

.proyectos-sector-section .proyectos-sector-header {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.proyectos-sector-section .proyectos-sector-titulo {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #54565A;
    margin: 0;
    white-space: nowrap;
    font-style: italic;
}

.proyectos-sector-section .proyectos-sector-linea {
    flex: 1;
    height: 2px;
    background-color: #f5f5f5;
}

/* Grid de proyectos */
.proyectos-sector-section .proyectos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    width: 100%;
    margin-top: 40px;
    justify-content: center;
    justify-items: stretch;
}

@media (min-width: 769px) {
    .proyectos-sector-section .proyectos-grid {
        grid-template-columns: repeat(3, 1fr);
        justify-content: space-between;
    }
}

@media (max-width: 1079px) and (min-width: 769px) {
    .proyectos-sector-section .proyectos-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-content: space-between;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .proyectos-sector-section .proyectos-sector-section {
        padding: 40px 0;
    }
    
    .proyectos-sector-section .proyectos-sector-header {
        gap: 20px;
    }
    
    .proyectos-sector-section .proyectos-sector-titulo {
        font-size: 1.5rem;
    }
    
    .proyectos-sector-section .proyectos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
}

/* ===========================
   PROJECT CARDS ESPECÍFICAS PARA PROYECTOS-SECTOR
   =========================== */
.proyectos-sector-section .project-card {
    background: none;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: var(--transition);
    height: 100%;
    width: 100%;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.proyectos-sector-section .project-card:hover {
    transform: translateY(-8px);
    box-shadow: none;
}

.proyectos-sector-section .project-image {
    height: 485px;
    overflow: hidden;
    position: relative;
    background: none;
}

.proyectos-sector-section .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.proyectos-sector-section .project-labels {
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 3;
    width: 200px;
}

.proyectos-sector-section .project-entrega {
    display: block;
    background-color: #ffffff;
    color: #000000;
    padding: 5px 12px;
    font-size: 1.2rem;
    width: 100%;
    text-align: left;
}

.proyectos-sector-section .project-entrega-fecha {
    font-weight: bold;
}

.proyectos-sector-section .project-tipo-unidad { 
    display: block;
    background-color: #ffffff;
    color: #000000;
    padding: 5px 12px;
    font-size: 1.2rem;
    width: 100%;
    text-align: left;
    margin-top: 10px;
}

.proyectos-sector-section .project-card:hover .project-image img {
    transform: scale(1.05);
}

/* Project Header - Franja Negra */
.proyectos-sector-section .project-header {
    background-color: #000000;
    color: #ffffff;
    padding: 1rem 1.25rem;
    min-height: 85px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.proyectos-sector-section .project-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    min-height: 3rem;
}

.proyectos-sector-section .project-sector {
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.9;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Project Info - Franja Blanca */
.proyectos-sector-section .project-info {
    background-color: #f5f5f5;
    display: flex;
    padding: 1.25rem;
    gap: 1rem;
    height: 117px;    
}

.proyectos-sector-section .project-price-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.25rem;
}

.proyectos-sector-section .price-info {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 0.5rem;
    padding-bottom:5px;
    border-bottom: 1px solid #ccc;
}

.proyectos-sector-section .price-label {
    font-size: 1.2rem;
    color: #1D1D1B;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.1rem;
}

.proyectos-sector-section .project-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.proyectos-sector-section .entrega-info {
    font-size: 1rem;
    color: #1D1D1B;
    font-weight: 400;
}

.proyectos-sector-section .project-details-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: flex-start;
}

.proyectos-sector-section .detail-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.proyectos-sector-section .detail-text {
    font-size: 1.1rem;
    color: #666666;
    font-weight: 400;
    line-height: 1.3;
}

.proyectos-sector-section img.detail-icon {
    width: 20px;
}

.proyectos-sector-section .sello-1 {
    position: absolute;
    width: 85px !important;
    height: 85px !important;
    left: 60%;
    top: 10px;
    z-index: 100;
}

.proyectos-sector-section .sello-2 {
    position: absolute;
    width: 85px !important;
    height: 85px !important;
    left: 80%;
    top: 10px;
    z-index: 100;
}

.proyectos-sector-section .sello-3 {
    position: absolute;
    width: auto !important;
    height: 100px !important;
    right: 10px;
    top: 10px;
    z-index: 100;
    width:auto;
}

@media (max-width: 1630px) {
    .proyectos-sector-section .sello-1 {
        width: 70px !important;
        height: 70px !important;
    }
    .proyectos-sector-section .sello-2 {
        width: 70px !important;
        height: 70px !important;
    }
}

@media (max-width: 1540px) and (min-width: 1400px) {
    .proyectos-sector-section .sello-3 {
        height: 75px !important;
    }
}

@media (max-width: 1255px) and (min-width: 1130px) {
    .proyectos-sector-section .sello-3 {
        height: 75px !important;
    }
}

@media (max-width: 1130px) and (min-width: 1080px) {
    .proyectos-sector-section .sello-3 {
        height: 66px !important;
    }
}

@media (max-width: 840px) and (min-width: 767px) {
    .proyectos-sector-section .sello-3 {
        height: 80px !important;
    }
}


@media (max-width: 1130px) and (min-width: 1080px) {
    .proyectos-sector-section .sello-1 {
        width: 60px !important;
        height: 60px !important;
        left: 61%;
    }
    .proyectos-sector-section .sello-2 {
        width: 60px !important;
        height: 60px !important;
    }
}

@media (max-width: 1560px)  {
    .proyectos-sector-section .project-price {
        font-size: 1.2rem;
    }
}

@media (max-width: 1500px) and (min-width: 1400px) {
    .proyectos-sector-section .price-label {
        font-size: 1.1rem;
    }
    .proyectos-sector-section .detail-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 1445px) and (min-width: 1400px) {
    .proyectos-sector-section .project-price {
        font-size: 1rem;
    }
}

@media (max-width: 1280px)  {
    .proyectos-sector-section .project-price {
        font-size: 1.2rem;
    }
}

@media (max-width: 1220px) {
    .proyectos-sector-section .detail-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 1210px) {
    .proyectos-sector-section .price-label {
        font-size: 1rem;
    }
    .proyectos-sector-section .project-price {
        font-size: 1.2rem;
    }
}

@media (max-width: 1140px)  {
    .proyectos-sector-section .project-price {
        font-size: 1rem;
    }
}

@media (max-width: 1079px) {
    .proyectos-sector-section .price-label {
        font-size: 1.2rem;
    }
    .proyectos-sector-section .project-price {
        font-size: 1.4rem;
    }
    .proyectos-sector-section .detail-text {
        font-size: 1rem;
    }
}

@media (max-width: 860px) {
    .proyectos-sector-section .project-price {
        font-size: 1.2rem;
    }
}

@media (max-width: 815px) {
    .proyectos-sector-section .price-label {
        font-size: 1.1rem;
    }
    .proyectos-sector-section .detail-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 770px) {
    .proyectos-sector-section .price-label {
        font-size: 1.2rem;
    }
    .proyectos-sector-section .project-price {
        font-size: 1.4rem;
    }
    .proyectos-sector-section .detail-text {
        font-size: 1rem;
    }
}

@media (max-width: 500px) {
    .proyectos-sector-section .price-label {
        font-size: 1.1rem;
    }
    .proyectos-sector-section .project-price {
        font-size: 1.2rem;
    }
    .proyectos-sector-section .detail-text {
        font-size: 0.9rem;
    }
}


/* =======================================================
   PÁGINA OPORTUNIDADES INMIBILIARIAS + PROYECTO CON CYBER
   ======================================================= */

/* ===========================
   SECCIÓN FILTROS DE PROYECTOS
   =========================== */
.proyectos-filtros-section {
    background-color: var(--text-green-nv);
    padding: 50px 0;
    width: 100%;
}

.proyectos-filtros-section .filtros-titulo {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    font-style: italic;
    text-align: center;
    margin-bottom: 30px;
}

.proyectos-filtros-section .filtros-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.proyectos-filtros-section .filtro-dropdown {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 15px 50px 15px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-green-nv);
    cursor: pointer;
    min-width: 220px;
    text-align: center;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a8f3e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    transition: all 0.3s ease;
}

.proyectos-filtros-section .filtro-dropdown:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.proyectos-filtros-section .filtro-dropdown:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .proyectos-filtros-section {
        padding: 30px 15px;
    }
    
    .proyectos-filtros-section .filtros-titulo {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .proyectos-filtros-section .filtros-grid {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .proyectos-filtros-section .filtro-dropdown {
        width: 100%;
        max-width: 300px;
    }
}

/* Clases para ocultar cards con filtros */
.hidecomunas,
.hideprecios,
.hideplazos {
    display: none !important;
}

/* ===========================
   HEADER BLACK INMOBILIARIO
   =========================== */
.black-header-section {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 600px;
    background: #000;
}
.black-header-img-col {
    flex: 0 0 50%;
    max-width: 50%;
    overflow: hidden;
    line-height: 0;
}
.black-header-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.black-header-form-col {
    flex: 0 0 50%;
    max-width: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 36px;
    box-sizing: border-box;
}
.black-form-inner {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
}
.black-form-texto-top {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin-bottom: 16px;
}
.black-form-card {
    background: #fff;
    box-shadow: 0 -2px 6px rgba(0,0,0,0.04), 4px 4px 20px rgba(0,0,0,0.15), -4px 4px 20px rgba(0,0,0,0.08);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.black-form-texto-card {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 30px;
}
.black-form {
    padding: 20px 24px 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.black-form-row {
    display: flex;
    gap: 10px;
}
.black-form-row input,
.black-form-row select {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1.3rem;
    color: #444;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
    width: 100%;
}
.black-form-row input:focus,
.black-form-row select:focus {
    border-color: #aaa;
}
.black-form-row input::placeholder {
    color: #aaa;
}
.black-form-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.black-form-btn {
    width: 100%;
    background: #ffa400;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 14px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.black-form-btn:hover {
    background: #e09300;
}
.black-form-privacidad {
    font-size: 1.1rem;
    color: #aaa;
    text-align: center;
    margin: 0;
}
.black-form-privacidad a {
    color: #aaa;
    text-decoration: underline;
}


/* ===========================
   CF7 BLACK FORM STYLING
   =========================== */
.wpcf7 .screen-reader-response {
    display: none;
}
.wpcf7 .wpcf7-form {
    padding: 20px 24px 16px 24px;
}
.wpcf7 .form-cyberday {
    display: block;
    text-align: left;
}
.wpcf7 .form-cyberday .row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.wpcf7 .form-cyberday .row > div {
    flex: 0 0 100%;
    width: 100% !important;
    box-sizing: border-box;
    padding: 0;
}
.wpcf7 .form-cyberday .row > .col-6 {
    flex: 0 0 calc(50% - 5px);
    width: calc(50% - 5px) !important;
}
.wpcf7 .form-cyberday .row p,
.wpcf7 .checks p,
.wpcf7 .btn-submit p {
    margin: 0;
}
.wpcf7 .form-cyberday input.wpcf7-form-control:not([type="checkbox"]):not([type="submit"]):not([type="hidden"]),
.wpcf7 .form-cyberday select.wpcf7-form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1.3rem;
    color: #444;
    background: #fff;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s;
    appearance: auto;
}
.wpcf7 .form-cyberday input.wpcf7-form-control:focus,
.wpcf7 .form-cyberday select.wpcf7-form-control:focus {
    border-color: #aaa;
}
.wpcf7 .form-cyberday input.wpcf7-form-control::placeholder {
    color: #aaa;
}
.wpcf7 .checks {
    margin: 6px 0;
}
.wpcf7 .checks .wpcf7-list-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 1.2rem;
    color: #444;
    margin: 0 10px 0 0;
}
.wpcf7 .checks .wpcf7-list-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #ffa400;
}
.wpcf7 .btn-submit {
    margin-top: 4px;
}
.wpcf7 .btn-submit input[type="submit"] {
    width: 100%;
    background: #ffa400;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 14px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.wpcf7 .btn-submit input[type="submit"]:hover {
    background: #e09300;
}
.wpcf7 .wpcf7-response-output {
    margin: 8px 0 0 0;
    font-size: 1.1rem;
    text-align: center;
    border: none !important;
    padding: 0 !important;
}
@media (max-width: 500px) {
    .wpcf7 .form-cyberday .row > .col-6 {
        flex: 0 0 100%;
        width: 100% !important;
    }
    .wpcf7 .form-cyberday .btn-submit input[type="submit"] {
        font-size: 1rem;
        padding: 12px;
    }
}

/* Responsive: stacked en mobile */
@media (max-width: 768px) {
    .black-header-section {
        flex-direction: column;
    }
    .black-header-img-col,
    .black-header-form-col {
        flex: none;
        max-width: 100%;
    }
    .black-header-img-col img {
        height: auto;
    }
    .black-header-form-col {
        padding: 24px 20px;
    }
}

/* ===========================
   BENEFICIOS BLACK
   =========================== */
.beneficios-oportunidades-section {
    background-color: #fff;
    width: 100%;
    padding: 60px 20px;
}
.beneficios-oportunidades-inner {
    max-width: 1350px;
    margin: 0 auto;
}
.beneficios-oportunidades-titulo {
    color: #4b9c46;
    font-size: 3.6rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.25;
    margin-bottom: 50px;
}

.beneficios-black-section {
    background-color: #4b9c46;
    width: 100%;
    padding: 60px 20px;
}
.beneficios-black-section.proyecto{
    background-color: #589b31;
}
.beneficios-black-inner {
    max-width: 1350px;
    margin: 0 auto;
}
.beneficios-black-titulo {
    color: #fff;
    font-size: 3.6rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.25;
    margin-bottom: 50px;
}
.beneficios-black-titulo.proyecto {
    color: #fff;
    font-size: 3.6rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.25;
    margin-bottom: 50px;
    font-style:italic;
}
.beneficios-black-titulo sup {
    font-size: 1.8rem;
    font-weight: 400;
    vertical-align: super;
}
.beneficios-black-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
/* Variante centrada: 1, 2 o 3 calugas quedan centradas */
.beneficios-black-grid--centrado {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.beneficios-black-grid--centrado .beneficio-card {
    flex: 0 0 calc(25% - 15px);
    max-width: 320px;
    min-width: 220px;
}
.beneficio-card {
    background-color: #5ba456;
    border: 1.5px solid #bbd9b9;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 24px;
}
.beneficio-card img {
    width: auto;
    max-width: 130px;
    height: auto;
    display: block;
    margin-bottom: 18px;
}
.beneficio-titulo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.2;
    font-style: italic;
}
.beneficio-bajada {
    color: #fff;
    font-size: 1.0rem;
    line-height: 1.5;
    margin: 0;
}
.beneficio-bajada em {
    font-style: italic;
    font-size: 1.0rem;
    opacity: 0.9;
}
.beneficio-badge {
    display: inline-block;
    margin-top: 18px;
    background-color: #32782f;
    border: 1.5px solid #bbd9b9;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 8px 20px;
    border-radius: 30px;
    text-transform: uppercase;
}
.beneficios-black-legal {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    text-align: center;
    margin: 30px 0 0 0;
}
.beneficios-black-pie {
    color: #fff;
    font-size: 2.4rem;
    text-align: center;
    margin: 50px 0 0 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.beneficios-black-pie-izq {
    font-size: 4.0rem;
    font-weight: 400;
    text-underline-offset: 6px;
    border-bottom: 2px solid #fff;
}
.beneficios-black-pie-der {
    font-size: 6.3rem;
    font-weight: 700;
    font-style: italic;
    text-decoration: none;
    position: relative;
    top: 37px;
}
@media (max-width: 841px) {
    .beneficios-black-pie-der { position: unset;}
}
@media (max-width: 600px) {
    .beneficios-black-pie-izq { font-size: 2.7rem; }
    .beneficios-black-pie-der { font-size: 4.3rem; position: unset;}
}

/* ===========================
   SECCIÓN CUPÓN BLACK
   =========================== */
.cupon-black-section {
    background-color: #f9f9f9;
    padding: 70px 20px;
    width: 100%;
}
.cupon-black-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.cupon-black-titulo {
    color: #4b9c46;
    font-size: 2.9rem;
    line-height: 1.35;
    margin: 0 0 36px 0;
}
.cupon-black-titulo strong {
    font-weight: 700;
    display: block;
}
.cupon-black-titulo span {
    font-weight: 400;
}
.cupon-black-titulo sup {
    font-size: 1.2rem;
}
.cupon-black-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
}
.cupon-black-btn {
    display: inline-block;
    background-color: #ffa400;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 16px 40px;
    border-radius: 15px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s;
}
.cupon-black-btn:hover {
    background-color: #e89400;
}
@media (max-width: 600px) {
    .cupon-black-titulo {
        font-size: 1.7rem;
    }
}

/* ===========================
   SECCIÓN F1
   =========================== */
.f1-section {
    background-image: url('../images/blackinmibiliario/2026-04/fondo ladrillos.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    padding: 80px 20px;
}
.f1-inner {
    max-width: 910px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.f1-banderas {
    width: auto;
    max-width: 180px;
    height: auto;
    display: block;
    margin-bottom: 36px;
}
.f1-texto {
    color: #fff;
    font-size: 2rem;
    line-height: 1.6;
    margin: 0 0 24px 0;
}
.f1-texto strong {
    font-weight: 700;
}
.f1-highlight {
    display: inline-block;
    border: 2px solid #fff;
    border-radius: 30px;
    padding: 2px 18px;
    font-weight: 900;
    white-space: nowrap;
    color: #0e172a;
    background-color: #fff;
}
.f1-cta {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    font-style: italic;
    margin: 0 0 50px 0;
}
.f1-legal {
    color: #a0b4d8;
    font-size: 0.67rem;
    line-height: 1.6;
    max-width: 910px;
    margin: 0;
    text-align: left;
}
@media (max-width: 768px) {
    .f1-texto {
        font-size: 1.4rem;
    }
    .f1-cta {
        font-size: 1.6rem;
    }
    .f1-highlight {
        white-space: normal;
    }
}
@media (max-width: 900px) {
    .beneficios-black-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .beneficios-black-grid--centrado .beneficio-card {
        flex: 0 0 calc(50% - 10px);
        max-width: none;
    }
    .beneficios-black-titulo {
        font-size: 2.6rem;
    }
}
@media (max-width: 500px) {
    .beneficios-black-grid {
        grid-template-columns: 1fr;
    }
    .beneficios-black-grid--centrado .beneficio-card {
        flex: 0 0 100%;
        max-width: none;
    }
}

/* ===========================
   FRANJA BLACK INMOBILIARIO
   =========================== */
.franja-black {
    background-color: #1c110a;
    width: 100%;
    padding: 35px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.franja-black img {
    height: 60px;
    width: auto;
    display: block;
}

.franja-black.proyecto {
    margin-top: 0;
}

/* ===========================
   NOTAS LEGALES
   =========================== */
.notas-legales-black-section {
    background-color: #0e172a;
    padding: 40px 0;
    width: 100%;
    font-size: 12px;
    color: #94a0aa;
}
.notas-legales-black-section .container {
    margin: 0 auto;
    padding: 0 50px;
}
.notas-legales-black-titulo {
    margin-bottom: 8px;
}
.notas-legales-black-item {
    margin-bottom: 4px;
    line-height: 1.5;
}
.notas-legales-black-item a {
    color: #94a0aa;
    text-decoration: underline;
}
.notas-legales-black-item a:hover {
    color: #fff;
}
.notas-legales-black-disclaimer {
    line-height: 1.6;
}


/* =======================================================
   FIN PÁGINA OPORTUNIDADES INMIBILIARIAS + PROYECTO CON CYBER
   ======================================================= */


/* ===========================
   NOSOTROS HERO SECTION
   =========================== */
.nosotros-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    height: clamp(600px, calc(600px + (100vw - 768px) * 0.347), 900px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 0 10%;
    padding-bottom: 130px;
}

/* Overlay oscuro para legibilidad del texto */
.nosotros-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

/* Contenido del Hero - Título a la izquierda */
.nosotros-hero-content {
    position: relative;
    color: #fff;
    z-index: 2;
}

.nosotros-titulo {
    font-size: clamp(3rem, 6vw, 6rem);
    font-style: italic;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .nosotros-hero {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        text-align: left;
        padding: 60px 10% 130px;
        gap: 40px;
    }
    
    .nosotros-hero-content {
        order: 1;
        align-self: flex-start;
        text-align: left;
        width: 100%;
    }
}

/* ===========================
   SECCIÓN EQUIPOS NOSOTROS
   =========================== */
.nosotros-equipos {
    padding: 80px 0;
    background-color: #ffffff;
}

/* Imágenes de Equipos */
.equipos-imagenes {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
}

.equipo-item {
    text-align: center;
    flex: 0 1 auto;
}

.equipo-imagen {
    width: 100%;
    object-fit: cover;
}

.equipo-titulo {
    font-size: 1rem;
    color: #54565A;
    margin-top: 20px;
    font-weight: 600;
    font-style: italic;
}

/* Línea Separadora */
.nosotros-separador {
    width: 100%;
    height: 2px;
    background-color: var(--text-green-nv);
    margin: 50px 0;
}

/* Texto en Columnas */
.nosotros-texto {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.nosotros-columna {
    flex: 0 1 100%;
    padding: 0 25px;
}

.nosotros-columna p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 20px;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .nosotros-equipos {
        padding: 60px 0;
    }
    
    .equipos-imagenes {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .nosotros-separador {
        margin: 40px 0;
    }
    
    .nosotros-texto {
        flex-direction: column;
        gap: 30px;
    }
    
    .nosotros-columna {
        max-width: 100%;
        padding: 0;
    }
    
    .nosotros-columna p {
        font-size: 1rem;
    }
}

/* ===========================
   SECCIÓN MEMORIAS NOSOTROS
   =========================== */
.nosotros-memorias {
    padding: 80px 0;
}

.memorias-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.memoria-card {
    background-color: #f5f5f5;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    text-decoration: none;
}

.memoria-card:hover {
    box-shadow: var(--shadow-medium);
}

.memoria-imagen {
    width: 100%;
}

.memoria-imagen img {
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.memoria-card:hover .memoria-imagen img {
    transform: scale(1.05);
}

.memoria-texto {
    padding: 10px 10px 10px;
    background-color: #f5f5f5;
    text-align: left;
}

.memoria-texto p {
    font-size: 1rem;
    color: #54565A;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* Responsive para memorias */
@media (max-width: 768px) {
    .nosotros-memorias {
        padding: 60px 0;
    }
    
    .memorias-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .memoria-texto {
        padding: 15px;
    }
    
    .memoria-texto p {
        font-size: 1rem;
    }
}


/* ===========================
   INVIERTE HERO SECTION
   =========================== */
.invierte-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    height: clamp(600px, calc(600px + (100vw - 768px) * 0.347), 900px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 0 10%;
    padding-bottom: 130px;
}

/* Overlay oscuro para legibilidad del texto */
.invierte-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

/* Contenido del Hero - Título a la izquierda */
.invierte-hero-content {
    position: relative;
    color: #fff;
    z-index: 2;
}

.invierte-titulo {
    font-size: clamp(3rem, 6vw, 6rem);
    font-style: italic;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .invierte-hero {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        text-align: left;
        padding: 60px 10% 130px;
        gap: 40px;
    }
    
    .invierte-hero-content {
        order: 1;
        align-self: flex-start;
        text-align: left;
        width: 100%;
    }
}

/* Sección de Beneficios e Inversión */
.invierte-beneficios {
    padding: 80px 0;
    background-color: #ffffff;
}

.invierte-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Cards de beneficios - Primera columna */
.invierte-cards-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.invierte-card {
    background-color: #f8f9fa;
    border-left: 2px solid var(--primary-color);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: var(--transition);
}

.invierte-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.invierte-card-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    align-self: flex-start;
}

.invierte-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-gray-dark);
    margin: 0;
    line-height: 1.4;
    font-style: italic;
}

.invierte-card-description {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

/* Formulario de contacto - Segunda columna */
.invierte-form-column {
    display: flex;
    align-items: stretch;
}

.invierte-form-container {
    background-color: #f8f9fa;
    padding: 40px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.invierte-form-title {
    font-size: 24px;
    color: var(--text-gray-dark);
    margin-bottom: 30px;
    line-height: 1.4;
    font-weight: 400;
}

/* Responsive para la sección de beneficios */
@media (max-width: 968px) {
    .invierte-two-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .invierte-form-container {
        padding: 30px 20px;
    }
    
    .invierte-form-title {
        font-size: 20px;
        margin-bottom: 24px;
    }
}

@media (max-width: 568px) {
    .invierte-beneficios {
        padding: 60px 0;
    }
    
    .invierte-card {
        padding: 20px;
    }
    
    .invierte-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .invierte-card-title {
        font-size: 27px;
    }
    
    .invierte-card-description {
        font-size: 21px;
    }
    
    .invierte-form-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

/* ----------------- Contact Form 7 - Estilos para Invierte ----------------- */
/* Estilos para que el formulario de CF7 se vea como invierte-contact-form */
.invierte-form-column .wpcf7 {
    width: 100%;
}

.invierte-form-column .wpcf7-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    flex-grow: 1;
}

.invierte-form-column .wpcf7-form p {
    margin: 0 !important;
    padding: 0 !important;
}

.invierte-form-column .wpcf7-form label {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
}

.invierte-form-column .wpcf7-form label br {
    display: none;
}

.invierte-form-column .wpcf7-form-control-wrap {
    display: block !important;
    width: 100% !important;
}

.invierte-form-column .wpcf7-form input[type="text"],
.invierte-form-column .wpcf7-form input[type="email"],
.invierte-form-column .wpcf7-form input[type="tel"],
.invierte-form-column .wpcf7-form textarea {
    width: 100% !important;
    padding: 16px !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    font-family: var(--font-family) !important;
    font-size: 16px !important;
    color: var(--text-gray-dark) !important;
    background-color: #ffffff !important;
    transition: var(--transition) !important;
    box-sizing: border-box !important;
}

.invierte-form-column .wpcf7-form input[type="text"]:focus,
.invierte-form-column .wpcf7-form input[type="email"]:focus,
.invierte-form-column .wpcf7-form input[type="tel"]:focus,
.invierte-form-column .wpcf7-form textarea:focus {
    outline: none !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.1) !important;
}

.invierte-form-column .wpcf7-form input::placeholder,
.invierte-form-column .wpcf7-form textarea::placeholder {
    color: var(--text-gray) !important;
}

.invierte-form-column .wpcf7-form textarea {
    resize: vertical !important;
    min-height: 120px !important;
}

.invierte-form-column .wpcf7-form input[type="submit"] {
    background-color: var(--text-green-nv) !important;
    color: var(--text-light) !important;
    border: none !important;
    padding: 16px 32px !important;
    border-radius: 8px !important;
    font-family: var(--font-family) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: var(--transition) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    width: 100% !important;
}

.invierte-form-column .wpcf7-form input[type="submit"]:hover {
    background-color: var(--text-dark) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-light) !important;
}

.invierte-form-column .wpcf7-spinner {
    margin-left: 10px !important;
}

.invierte-form-column .wpcf7-response-output {
    margin: 20px 0 0 !important;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
}

.invierte-form-column .wpcf7-validation-errors {
    background-color: #fff3cd !important;
    border: 1px solid #ffc107 !important;
    color: #856404 !important;
}

.invierte-form-column .wpcf7-mail-sent-ok {
    background-color: #d4edda !important;
    border: 1px solid #c3e6cb !important;
    color: #155724 !important;
}

.invierte-form-column .wpcf7-mail-sent-ng {
    background-color: #f8d7da !important;
    border: 1px solid #f5c6cb !important;
    color: #721c24 !important;
}

.invierte-form-column .wpcf7-not-valid-tip {
    font-size: 12px !important;
    color: #dc3545 !important;
    margin-top: 5px !important;
}

.invierte-form-column .screen-reader-response,
.invierte-form-column .hidden-fields-container {
    position: absolute !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    border: 0 !important;
}

/* Responsive para Contact Form 7 */
@media (max-width: 568px) {
    .invierte-form-column .wpcf7-form input[type="text"],
    .invierte-form-column .wpcf7-form input[type="email"],
    .invierte-form-column .wpcf7-form input[type="tel"],
    .invierte-form-column .wpcf7-form textarea {
        padding: 14px !important;
        font-size: 14px !important;
    }
    
    .invierte-form-column .wpcf7-form input[type="submit"] {
        padding: 14px 28px !important;
        font-size: 14px !important;
    }
}
/* ----------------- Contact Form 7 - Fin ----------------- */

/* ===========================
   REFIERE HERO SECTION
   =========================== */
.refiere-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    height: clamp(600px, calc(600px + (100vw - 768px) * 0.347), 900px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 0 10%;
    padding-bottom: 130px;
}

/* Overlay oscuro para legibilidad del texto */
.refiere-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

/* Contenido del Hero - Título a la izquierda */
.refiere-hero-content {
    position: relative;
    color: #fff;
    z-index: 2;
}

.refiere-titulo {
    font-size: clamp(3rem, 6vw, 6rem);
    font-style: italic;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

/* Contenedor de botones */
.refiere-buttons-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Botón de acceder a cuenta */
.refiere-account-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 9px;
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    transition: var(--transition);
}

.refiere-account-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.refiere-arrow {
    display: inline-block;
    font-size: 18px;
    transition: var(--transition);
}

.refiere-account-btn:hover .refiere-arrow {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 1350px) {
    .refiere-buttons-container {
        gap: 15px;
    }
    .refiere-account-btn{
        font-size: 14px;
    }
    .refiere-arrow {
        display: none;
    }   
}

/* Responsive - Botones apilados */
@media (max-width: 999px) {
    .refiere-buttons-container {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .refiere-account-btn {
        width: 200px;
        justify-content: center;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .refiere-hero {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        text-align: left;
        padding: 60px 10% 130px;
        gap: 40px;
    }
    
    .refiere-hero-content {
        order: 1;
        align-self: flex-start;
        text-align: left;
        width: 100%;
    }

    .refiere-buttons-container {
        order: 2;
        align-self: flex-start;
        width: 100%;
    }

    .refiere-arrow {
        display: none;
    }
}

/* ===========================
   SECCIÓN CAPTADORES
   =========================== */
.refiere-captadores {
    background-color: #ffffff;
    padding: 60px 0;
}

.refiere-captadores-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Columna izquierda - Información */
.refiere-info-column {
    background-color: #ffa400;
    padding: 60px 40px;
}

.refiere-info-content {
    color: #ffffff;
    height: 100%;
    width: 100%;
}

.refiere-bottom-content {
    margin-top: auto;
}

.refiere-description {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 30px 0;
    font-weight: 400;
}

.refiere-description strong {
    font-weight: 700;
}

.refiere-highlight {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.refiere-separator {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    margin: 0 0 15px 0;
}

.refiere-disclaimer {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    font-weight: 400;
}

.refiere-link {
    color: #ffffff;
    text-decoration: underline;
}

.refiere-link:hover {
    text-decoration: none;
}

/* Responsive */
@media (max-width: 968px) {
    .refiere-captadores {
        padding: 60px 20px;
    }

    .refiere-captadores-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .refiere-info-column {
        order: 1;
        padding: 40px 20px;
    }
    
    .refiere-highlight {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .refiere-separator {
        margin: 20px 0;
    }
}

@media (max-width: 568px) {
    .refiere-info-column {
        padding: 30px 15px;
    }
    
    .refiere-description {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .refiere-highlight {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .refiere-disclaimer {
        font-size: 12px;
    }
}


/* ===========================
   CLIENTES HERO SECTION
   =========================== */
.cliente-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    height: clamp(600px, calc(600px + (100vw - 768px) * 0.347), 900px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 0 10%;
    padding-bottom: 130px;
}

/* Overlay oscuro para legibilidad del texto */
.cliente-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

/* Contenido del Hero - Título a la izquierda */
.cliente-hero-content {
    position: relative;
    color: #fff;
    z-index: 2;
}

.cliente-titulo {
    font-size: clamp(3rem, 6vw, 6rem);
    font-style: italic;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

/* Botón de acceder a cuenta */
.cliente-account-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 9px;
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    transition: var(--transition);
}

.cliente-account-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.cliente-arrow {
    display: inline-block;
    font-size: 18px;
    transition: var(--transition);
}

.cliente-account-btn:hover .cliente-arrow {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 768px) {
    .cliente-hero {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        text-align: left;
        padding: 60px 10% 130px;
        gap: 40px;
    }
    
    .cliente-hero-content {
        order: 1;
        align-self: flex-start;
        text-align: left;
        width: 100%;
    }

    .cliente-account-btn {
        order: 2;
        align-self: flex-start;
    }

    .cliente-arrow {
        display: none;
    }
}

/* ===========================
   SECCIÓN SERVICIOS CLIENTES
   =========================== */
.clientes-servicios {
    padding: 80px 0;
    background-color: #ffffff;
}

.clientes-cards-titulo {
    font-size: clamp(1.8rem, 3vw, 2rem);
    font-weight: 400;
    color: #1d1d1d;
    margin: 0 0 40px 0;
    font-style: italic;
}

.clientes-cards-titulo span {
    font-weight: 700;
}

.clientes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 0 auto;
}

.cliente-card {
    background-color: #f8f9fa;
    border-left: 2px solid var(--primary-color);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: var(--transition);
    color: var(--primary-color);
}

.cliente-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    text-decoration: none;
    color: var(--text-gray-dark);
}

.cliente-card-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.cliente-card-text {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    .clientes-servicios {
        padding: 60px 0;
    }
    
    .clientes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .cliente-card {
        padding: 20px;
    }
    
    .cliente-card-icon {
        width: 32px;
        height: 32px;
    }
    
    .cliente-card-text {
        font-size: 16px;
    }
}

/* ===========================
    BLOG DETALLE HERO SECTION
   =========================== */
.blog-detalle-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    height: clamp(600px, calc(600px + (100vw - 768px) * 0.347), 900px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 0 10%;
    padding-bottom: 130px;
}

/* Overlay oscuro para legibilidad del texto */
.blog-detalle-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

/* Contenido del Hero - Título a la izquierda */
.blog-detalle-hero-content {
    position: relative;
    color: #fff;
    z-index: 2;
}

.blog-detalle-titulo {
    font-size: clamp(3rem, 6vw, 6rem);
    font-style: italic;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.blog-detalle-body {
    padding: 60px 0;
    background-color: #ffffff;
}

.blog-detalle-body h2 {
    padding-bottom: 20px;
}

/* ===========================
    BLOG SECTION - GRID DE CARDS
   =========================== */
.blog-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
}

.blog-card:not(.fade-in) {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.blog-card.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-card.fade-in:hover {
    transform: translateY(-8px);
}

.blog-card-image {
    display: block;
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-title {
    margin: 0 0 15px 0;
    font-size: 1.4rem;
    line-height: 1.4;
    font-weight: 700;
}

.blog-card-title a {
    color: var(--text-gray-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-card-excerpt {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex: 1;
}

.blog-card-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.blog-card-button:hover {
    background-color: var(--secondary-color);
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
    
    .blog-card-image {
        height: 220px;
    }
    
    .blog-card-content {
        padding: 20px;
    }
    
    .blog-card-title {
        font-size: 1.2rem;
    }
}


/* Responsive */
@media (max-width: 768px) {
    .blog-detalle-hero {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        text-align: left;
        padding: 60px 10% 130px;
        gap: 40px;
    }
    
    .nosotros-hero-content {
        order: 1;
        align-self: flex-start;
        text-align: left;
        width: 100%;
    }
}

/* ===========================
   GENÉRICO HERO SECTION
   =========================== */
.generico-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    height: clamp(600px, calc(600px + (100vw - 768px) * 0.347), 900px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 0 10%;
    padding-bottom: 130px;
}

/* Overlay oscuro para legibilidad del texto */
.generico-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

/* Contenido del Hero - Título a la izquierda */
.generico-hero-content {
    position: relative;
    color: #fff;
    z-index: 2;
}

.generico-titulo {
    font-size: clamp(3rem, 6vw, 6rem);
    font-style: italic;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

/* ========================================
   TEMPLATE LEGALES
   ======================================== */
.legales-section {
    margin-bottom: 60px;
}

.legales-section h3 {
    padding: 20px 0;
}

.legales-section p {
    padding: 10px;
}

/* ========================================
   PÁGINA PREGUNTAS FRECUENTES
   ======================================== */
.faq-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.faq-group {
    margin-bottom: 20px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Título del grupo */
.faq-group-title {
    width: 100%;
    padding: 20px 25px;
    background-color: var(--text-green-nv);
    color: white;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-group-title:hover {
    background-color: var(--text-dark);
}

.faq-group-title.active {
    background-color: var(--text-dark);
}

.faq-group-title .icon {
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

/* Contenedor de preguntas del grupo */
.faq-group-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-group-content.open {
    max-height: 5000px;
    transition: max-height 0.6s ease-in;
}

/* Item individual de pregunta */
.faq-item {
    border-bottom: 1px solid #e9ecef;
}

.faq-item:last-child {
    border-bottom: none;
}

/* Botón de pregunta */
.faq-question {
    width: 100%;
    padding: 18px 25px;
    background-color: transparent;
    color: #333;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question .icon {
    font-size: 20px;
    color: #2c5f2d;
    font-weight: bold;
    min-width: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .icon {
    transform: rotate(45deg);
}

/* Respuesta */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 25px;
}

.faq-answer.open {
    max-height: 2000px;
    padding: 0 25px 20px 25px;
    transition: max-height 0.5s ease-in, padding 0.3s ease-in;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-group-title {
        padding: 16px 20px;
        font-size: 16px;
    }

    .faq-question {
        padding: 15px 20px;
        font-size: 15px;
    }

    .faq-answer.open {
        padding: 0 20px 15px 20px;
    }
}

/* ========================================
   POPUP COTIZAR
   ======================================== */
.popup-cotizar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.popup-cotizar.active {
    display: block;
}

.popup-cotizar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.popup-cotizar-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 44px;
    z-index: 10001;
}

.popup-cotizar-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.popup-cotizar-close:hover {
    background-color: #fff;
    transform: scale(1.1);
}

.popup-cotizar-close svg {
    color: #333;
}

#popup-cotizar-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .popup-cotizar-content {
        padding: 20px;
    }
    
    .popup-cotizar-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
    }
}

/* Popup Canal de Denuncias */
.denuncias-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.denuncias-popup.active {
    display: flex;
}

.denuncias-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.denuncias-popup-content {
    position: relative;
    background: white;
    border-radius: 16px;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 50px 40px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1;
    animation: popupFadeIn 0.3s ease;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.denuncias-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 32px;
    line-height: 1;
    color: #666;
    cursor: pointer;
    padding: 5px 10px;
    transition: color 0.3s ease, transform 0.2s ease;
    z-index: 2;
}

.denuncias-popup-close:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.denuncias-popup-logo {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 120px;
    height: 40px;
    background-image: url('images/LOGO-norteverde-final.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.denuncias-popup-title {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.denuncias-popup-text {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.denuncias-popup-text p {
    margin-bottom: 16px;
}

.denuncias-popup-text p:last-child {
    margin-bottom: 0;
}

.denuncias-popup-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.denuncias-popup-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .denuncias-popup-content {
        padding: 60px 25px 30px;
        width: 95%;
        max-height: 90vh;
    }
    
    .denuncias-popup-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .denuncias-popup-text {
        font-size: 14px;
    }
    
    .denuncias-popup-logo {
        width: 90px;
        height: 30px;
        right: 20px;
        top: 15px;
    }
    
    .denuncias-popup-close {
        font-size: 28px;
        top: 10px;
        right: 10px;
    }
    
    .denuncias-popup-button {
        padding: 12px 30px;
        font-size: 15px;
        width: 100%;
        text-align: center;
    }
}

/* Fin del archivo CSS */