.cotiza-form input::placeholder,
.cotiza-form select::placeholder {
    color: white;
    opacity: 1;
}

.cotiza-form input::-webkit-input-placeholder {
    color: white;
    opacity: 1;
}

.cotiza-form input::-moz-placeholder {
    color: white;
    opacity: 1;
}

.cotiza-form input:-ms-input-placeholder {
    color: white;
    opacity: 1;
}

.cotiza-form input:-moz-placeholder {
    color: white;
    opacity: 1;
}

@font-face {
    font-family: "Merel";
    src: url("/fonts/merel-light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Merel";
    src: url("/fonts/merel-bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Merel";
    src: url("/fonts/merel_black.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Merel", sans-serif;
}

b {
    font-weight: 700;
}

.hero-title {
    font-weight: 900;
    /* usa merel_black.otf */
}

.section-title {
    font-weight: 700;
    /* usa merel-bold.otf */
}

.section-description {
    font-weight: 300;
    /* usa merel-light.otf */
}

/* Estilo base del menú */
.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

/* Ícono hamburguesa */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #a0978e;
    display: block;
    border-radius: 3px;
}

.navbar {
    background: #a0978e;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

@media (max-width: 950px) {
  .features-icons .row {
    display: flex !important;
    flex-wrap: wrap !important;
    flex-direction: row !important;
  }
  .features-icons .col-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
  .features-icons .feature-item {
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
    padding: 10px 5px;
  }
  .features-icons .icono-img {
    margin-bottom: 8px;
  }
}

@media (max-width: 768px) {
    .navbar {
        position: sticky;
        top: 0;
        z-index: 999;
        background-color: #a0978e;
        /* o el color que desees */
        padding-top: 15px;
        padding-bottom: 15px;

    }

    .navbar-container {
        padding: 0.5rem 1rem;
    }

    .logo {
        padding: 0rem 0 !important;
    }

    .logo img {
        width: 270px !important;
        height: 45px;
    }

    .nav-link {
        padding: 0.75rem 0;
    }
}

.navbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 3.5rem;
}

.logo-main {
    color: #ddd6cc;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
}

.logo-sub {
    color: #ddd6cc;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ddd6cc;
    text-decoration: none;
    font-size: 0.70rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.nav-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.nav-link.active {
    color: #ffffff;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ddd6cc, #ffffff);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 1rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: #ddd6cc;
    margin: 3px 0;
    transition: 0.3s;
}

.menu-close {
    display: none;
}


/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 55%;
        max-width: 250px;
        height: 65%;
        background-color: #a0978e;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 3rem 2rem;
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease-in-out;
        z-index: 999;
    }

    .nav-menu.active {
        right: 3%;
    }

    .nav-item {
        width: 100%;
    }

    .menu-close {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        font-size: 2rem;
        color: white;
        cursor: pointer;
        z-index: 1001;
    }

    .nav-menu:not(.active) .menu-close {
        display: none;
    }

    .nav-link {
        color: white;
        font-size: 0.8rem;
        padding: 0.1rem 0;
        display: block;
        width: 100%;
        text-align: left;
        font-weight: 400;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 0.5rem;
        z-index: 1000;
        flex-direction: column;
        gap: 5px;
    }

    .hamburger.active span {
        opacity: 0;
        transition: opacity 0.3s ease;
    }


    .hamburger span {
        width: 28px;
        height: 3px;
        background-color: white;
        border-radius: 2px;
    }
}

/* Hero Section */
.hero-section {
    margin-top: 30px;
    position: relative;
    width: 100%;
    height: 700px;
    background: url("/img/edificio-l/slider/1-Slider-Home-1920x910px.jpg") no-repeat center center;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero-slide {
        background-size: cover !important;
        background-position: center center;
    }
}


.hero-carousel {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 400px;
        margin-top: 0px;
    }

    .hero-slide {
        background-size: cover !important;
        background-position: center center;
    }
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    opacity: 0.9;
    text-transform: uppercase;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(139, 149, 134, 0.9);
    padding: 2rem 3rem;
    color: white;
    backdrop-filter: blur(10px);
}

.hero-overlay h3 {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.hero-overlay p {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Main Content Section */
.main-content {
    padding: 3rem;
    background-color: white;
}

.container {
    max-width: 1350px;
    margin: 0 auto;
}

.section-badge {
    background: #829387;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px 0px 0px 0px;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 300;
    color: #2d3436;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    line-height: 1.2;
}

.section-title .highlight {
    color: #8b9586;
}

.section-description {
    font-size: 25px;
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.section-description strong {
    color: #2d3436;
    font-weight: 400;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b9586, #a8b299);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 400;
    color: #2d3436;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.feature-description {
    color: #636e72;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Side Text Section */
.side-text {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
}

.side-text span {
    display: block;
    margin: 1rem 0;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .hero-overlay {
        position: static;
        margin-top: 2rem;
        border-radius: 15px;
    }

    .side-text {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .main-content {
        padding: 4rem 1rem;
    }

    .iconos-container {
        flex-direction: column;
        gap: 2rem;
    }
}

.features-icons {
    padding: 60px 0;
}

.feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* Espacio entre icono y texto */
    text-align: left;
}

.icono-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #aaa;
    /* color por defecto */
    object-fit: cover;
}

.beige-bg {
    background-color: #f4efe1;
}

.feature-item span {
    font-weight: 500;
    color: #444;
    font-size: 16px;
}

.estado-proyecto {
    padding: 80px 0;
    background-color: #fff;
}

.titulo-estado {
    font-size: 20px;
    letter-spacing: 3px;
    font-weight: 500;
    color: #2b2b2b;
}

.cuadro-linea {
    position: relative;
    display: inline-block;
    padding: 40px;
}

.img-proyecto {
    max-width: 85%;
    height: auto;
    display: inline;
    position: relative;
    z-index: 2;
}

.img-barra {
    max-width: 65%;
    height: auto;
}

@media (max-width: 768px) {
  .img-proyecto {
    max-width: 100% !important;
  }

  .img-barra {
    max-width: 90% !important;
  }

  .cuadro-linea,
  .barra-estado {
    overflow-x: auto; /* Por si se salen del contenedor */
  }
}

.caracteristicas {
    padding: 80px 0 0;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.titulo-caracteristicas {
    font-size: 20px;
    letter-spacing: 6px;
    font-weight: 500;
    color: #2b2b2b;
    margin-bottom: 40px;
}

.lista-caracteristicas {
    list-style-type: square;
    padding-left: 20px;
    text-align: left;
    color: #2b2b2b;
    font-size: 16px;
    line-height: 1.8;
}

.imagen-inferior img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 40px;
}

.equipamiento {
    padding: 80px 0;
    background-color: #fff;
}

.titulo-equipamiento {
    font-size: 20px;
    letter-spacing: 6px;
    color: #2b2b2b;
    margin-bottom: 50px;
}

.equipamiento-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.equipamiento-item img {
    width: 60px;
    height: 60px;
    background-color: #a59c93;
    border-radius: 50%;
    padding: 12px;
    margin-bottom: 10px;
}

.equipamiento-item p {
    font-size: 14px;
    color: #2b2b2b;
    margin: 0;
}

.modelo-carrusel {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 30px;
}

.modelo-contenido {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1000px;
    width: 100%;
    padding: 40px;
    border-radius: 10px;
}

.modelo-contenido img {
    max-width: 750px;
    width: 100%;
    border: 1px solid #ddd;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease-in-out;
}

.modelo-info {
    text-align: left;
    color: #444;
}

.modelo-info h4 {
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 600;
}

.modelo-info ul {
    list-style: none;
    padding: 0;
}

.modelo-info li {
    font-size: 15px;
    margin: 8px 0;
    color: #333;
}

.modelo-info li i {
    font-size: 10px;
    color: #c52c2c;
    margin-right: 6px;
}

.modelo-prev,
.modelo-next {
    background: none;
    border: none;
    font-size: 38px;
    color: #aaa;
    cursor: pointer;
    transition: color 0.2s ease;
}

.modelo-prev:hover,
.modelo-next:hover {
    color: #333;
}

.modelo-dots {
    margin-top: 20px;
}

.modelo-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 6px;
    border-radius: 50%;
    background: #ccc;
    transition: background 0.3s;
    cursor: pointer;
}

.modelo-dots .active {
    background: #555;
}

.cotiza {
    background: #f7f7f7;
    padding: 80px 20px;
}

.titulo-cotiza {
    font-size: 18px;
    letter-spacing: 5px;
    color: #444;
    margin-bottom: 10px;
}

.subtitulo-cotiza {
    font-size: 12px;
    color: #777;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.formulario-cotiza input,
.formulario-cotiza select {
    border: none;
    border-bottom: 1px solid #ccc;
    background: #fff;
    padding: 12px 15px;
    width: 100%;
    font-size: 14px;
    color: #444;
    outline: none;
    text-transform: uppercase;
}

.formulario-cotiza input::placeholder {
    color: #aaa;
}

.btn-cotizar {
    background-color: #6e7542;
    color: #fff;
    font-weight: bold;
    padding: 12px 50px;
    border: none;
    font-size: 16px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.btn-cotizar:hover {
    background-color: #5a6137;
}

.lista-ubicacion {
  list-style-type: square;
  padding-left: 35%;
  color: #555;
  font-size: 15px;
  line-height: 1.8;
}

.ubicacion-ventajas .titulo-seccion {
  letter-spacing: 5px;
  color: #333;
  font-size: 16px;
  text-transform: uppercase;
}

.titulo-seccion {
    font-size: 23px;
    letter-spacing: 5px;
    color: #444;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.asesor-img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.asesor-nombre {
    font-weight: bold;
    margin-bottom: 2px;
}

.asesor-cargo {
    font-size: 14px;
    color: #9a9aab;
    margin-bottom: 5px;
}

.asesor-whatsapp {
    color: #6e7542;
    font-size: 14px;
}

.asesor-whatsapp i {
    margin-right: 5px;
    color: #6e7542;
}

.mapa-container {
    width: 100%;
    max-width: 1100px;
    margin: auto;
}

.mapa-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.como-llegar-img {
    width: 100%;
    max-width: 1220px;
    height: auto;
    transition: transform 0.2s;
}

.como-llegar-img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .tour-left-lines {
        display: none;
    }
}

.tour-video-container {
    position: relative;
    flex: 1;
}

.tour-video-container iframe {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tour-circle-deco {
    position: absolute;
    top: -30px;
    right: 60px;
    width: 160px;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .tour-virtual-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .tour-left-lines {
        flex-direction: row;
        justify-content: center;
    }

    .tour-video-container {
        width: 100%;
    }

    .tour-video-container iframe {
        width: 100%;
        height: 350px;
        max-width: 100%;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }


    .tour-circle-deco {
        display: none;
    }
}

.tour-modelos-texto {
    margin-top: 4rem;
    padding-left: 55px;
    padding-right: 80px;
    max-width: 1000px;
    display: contents;
}

.tour-modelos-texto .section-title {
    font-size: 2.5rem;
    color: #2d3436;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.tour-modelos-texto .section-title b {
    font-weight: 700;
}

.tour-modelos-texto .section-description {
    font-size: 1.85rem;
    line-height: 1.4;
    color: #8b9586;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
    .tour-modelos-texto {
        padding: 0 1.5rem;
        text-align: center;
    }

    .tour-modelos-texto .section-title {
        font-size: 2rem;
    }

    .tour-modelos-texto .section-description {
        font-size: 1rem;
    }
}

.modelo-avellano-section {
    background-color: #fff;
    padding-bottom: 180px !important;
    padding: 0;
    margin: 0;
}

.modelo-avellano-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.modelo-avellano-img img {
    width: 100%;
    height: auto;
    display: block;
}

.modelo-avellano-overlay {
    position: absolute;
    top: 75%;
    left: 4.8%;
    right: 5%;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    z-index: 10;
}

.modelo-avellano-text {
    margin-left: 9%;
    flex: 1 1 60%;
    font-size: 1.3vw;
    color: #8b9586;
    font-weight: 300;
    line-height: 1.7;
    padding: 1rem;
    border-radius: 10px;
}

.modelo-iconos {
    flex: 1 1 34%;
    list-style: none;
    margin-right: 10.5%;
    margin-top: 12vw;
    padding: 1rem;
    border-radius: 10px;
    align-self: center;
}

.modelo-iconos li {
    margin-bottom: 1.2rem;
    color: #2d3436;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.icon-label {
    border: 1px solid #2d3436;
    border-left: 5px solid #2d3436;
    padding: 0.3rem 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-right: 1rem;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .modelo-avellano-overlay {
        position: static;
        flex-direction: column;
        padding: 1rem;
    }

    .modelo-avellano-text {
        font-size: 1rem;
    }
}

.modelo-piso {
    background-color: #c6d5cf;
    padding: 3rem 1rem;
}

.modelo-tabs {
    display: flex;
    justify-content: center;
    gap: 4rem;
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.modelo-tabs li {
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.5;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.modelo-tabs li.activo {
    font-weight: 700;
    opacity: 1;
    border-color: #2d3436;
}

.modelo-contenido {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
}

.modelo-info {
    flex: 0 1 250px;
    color: #2d3436;
}

.modelo-info .modelo-nivel {
    font-size: 1.65rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.modelo-info h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.modelo-detalles {
    list-style: none;
    padding: 0;
    font-size: 1.35rem;
    font-weight: 300;
}

.modelo-detalles li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.modelo-detalles li::before {
    content: "\25B6";
    margin-right: 0.5rem;
    color: white;
    font-size: 0.7rem;
}

.modelo-img {
    position: relative;
    flex: 0 0 auto;
    width: 400px;
    height: 450px;
    overflow: hidden;
    border-radius: 20px;
}

.modelo-img img {
    width: 90%;
    height: 100%;
    object-fit: cover;
    margin-left: 20px;
}

.modelo-costos {
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.costobox {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.costobox img {
    width: 60px;
    height: 60px;
}

.costobox p {
    margin: 0;
    font-weight: 500;
    font-size: 1.4rem;
    color: #2d3436;
}

/* Responsive */
@media (max-width: 768px) {
    .modelo-contenido {
        flex-direction: column;
        text-align: center;
    }

    .modelo-img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    .modelo-tabs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

.carrusel-flechas {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.flecha {
    color: white;
    font-size: 5rem;
    cursor: pointer;
    padding: 0rem;
    border-radius: 50%;
    user-select: none;
    transition: background 0.2s;
}

.flecha:hover {
    background: rgba(0, 0, 0, 0.6);
}

a.LinkButton {
    background-color: #4caf50;
    /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

.flotante {
    bottom: 25px;
    right: 0px;
    z-index: 99;
    position: fixed;
    cursor: pointer;
}

.footer-rh {
    background-color: #4d6462;
    padding: 2rem 1rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.footer-logo img {
    height: 60px;
}

.footer-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 300;
    white-space: nowrap;
}

.footer-item img {
    width: 18px;
    height: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-info {
        flex-direction: column;
        gap: 1rem;
    }
}

.mapa-conocenos {
    text-align: center;
    padding: 4rem 1rem;
    background-color: white;
}

.mapa-conocenos h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #2d3436;
}

.mapa-contenedor {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.mapa-img {
    width: 100%;
    height: auto;
    display: block;
}

.botones-mapa {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 2rem auto 0;
    padding: 0 1rem;
    flex-wrap: wrap;
}

.boton-mapa {
    text-decoration: none;
    background-color: #6d766b;
    color: white;
    padding: 0.8rem 1.6rem;
    font-size: 0.95rem;
    border-radius: 30px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: background-color 0.3s ease;
    text-align: center;
    flex: 1 1 48%;
}

.boton-mapa:hover {
    background-color: #6d766b;
}

.boton-mapa.google {
    margin-right: 1%;
}

.boton-mapa.waze {
    margin-left: 1%;
}

.icono-mapa {
    width: 20px;
    height: auto;
}

@media screen and (max-width: 600px) {
    .botones-mapa {
        flex-direction: column;
        gap: 1rem;
    }

    .boton-mapa {
        width: 100%;
        flex: none;
    }
}

.cotiza-section {
    background-color: #516464;
    padding: 6rem 1rem;
    color: white;
    text-align: center;
}

.cotiza-wrapper {
    max-width: 800px;
    margin: auto;
}

.cotiza-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.cotiza-title b {
    font-weight: 700;
}

.cotiza-subtitle {
    font-size: 1.1rem;
    color: #d6e8e4;
    margin-bottom: 3rem;
}

.cotiza-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cotiza-row {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cotiza-form input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #d6e8e4;
    padding: 0.8rem;
    width: 300px;
    color: white;
    font-size: 1rem;
    outline: none;
}

.cotiza-btn {
    margin: 2rem auto 0;
    padding: 1rem 3rem;
    font-size: 1.3rem;
    border-radius: 40px;
    border: 1px solid #d6e8e4;
    background: transparent;
    color: white;
    cursor: pointer;
    letter-spacing: 3px;
    transition: all 0.3s ease;
}

.cotiza-btn:hover {
    background: white;
    color: #445d5f;
}

select[name="modelo"] {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #d9f1ef;
    font-size: 1.5rem;
    font-weight: 300;
    color: #d9f1ef;
    padding: 0.5rem 0;
    outline: none;
    appearance: none;
    /* Elimina flechita nativa del navegador */
    -webkit-appearance: none;
    -moz-appearance: none;
    font-family: "Merel", sans-serif;
}

select[name="modelo"] {
    background-image: url("/img/icono-flecha.svg");
    /* Cambia por tu icono de flecha si tienes */
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
}

.cotiza-form select {
    background: transparent;
    border: none;
    border-bottom: 1px solid #d6e8e4;
    padding: 0.8rem;
    width: 300px;
    color: white;
    font-size: 1rem;
    outline: none;
    appearance: none;
    font-family: "Merel", sans-serif;
}

.cotiza-form select option {
    background-color: #445d5f;
    color: white;
}

.custom-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.custom-alert.hidden {
    display: none;
}

.custom-alert-box {
    background-color: white;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    text-align: center;
    font-size: 1.2rem;
    max-width: 90%;
    color: #2d3436;
}

.custom-alert-box button {
    margin-top: 1.5rem;
    background-color: #516464;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
}

.seccion-destacados {
    padding: 4rem 1rem;
    background: #f7f7f8;
    font-family: "Merel", sans-serif;
}

.destacados-container {
    display: flex;
    align-items: flex-start;
    max-width: 1300px;
    margin: 0 auto;
    gap: 4rem;
    flex-wrap: wrap;
}

.destacados-imagen img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.destacados-texto {
    flex: 1;
    color: #4a4a4a;
}

.destacado-item {
    margin-bottom: 2.2rem;
}

.destacado-item h3 {
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #516464;
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.destacado-item p {
    font-size: 1rem;
    font-weight: 300;
    color: #6a6a6a;
    line-height: 1.6;
}

.boton-visita {
    display: inline-block;
    background-color: #c1d3cd;
    color: #2d3436;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
}

.boton-visita:hover {
    background-color: #a5b9b2;
    color: #fff;
}

/* Scroll suave para navegación de anclas */
html {
    scroll-behavior: smooth;
}

/* Responsive mejorado */
@media screen and (max-width: 480px) {

    .cotiza-form input,
    .cotiza-form select {
        width: 100% !important;
    }

    .cotiza-row {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .cotiza-btn {
        width: 100%;
    }

    .modelo-img {
        width: 100% !important;
        height: auto !important;
    }

    .modelo-costos {
        align-items: center;
    }

    .footer-container {
        flex-direction: column !important;
        gap: 1rem;
    }

    .tour-virtual-info p {
        margin-left: 0 !important;
    }
}

.carousel-dots {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.carousel-dots span {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tab.active[data-modelo="avellano"] {
    text-decoration: underline;
}

.carousel-dots span.active {
    background-color: white !important;
    border: 2px solid #545565;
}

@media (max-width: 768px) {
    .iconos-container {
        flex-direction: column;
        align-items: flex-start !important;
        padding-left: 25%;
    }

    .icono-item {
        justify-content: flex-start;
        text-align: left;
    }

    .icono-item img {
        width: 70px;
    }
}

/* Fondo general del overlay */
.fancybox-overlay {
    background: rgba(0, 0, 0, 0.75) !important;
}

/* Contenedor interno del lightbox con fondo gris translúcido */
.fancybox-inner {
    background-color: rgba(100, 100, 100, 0.3) !important;
    padding: 20px;
    border-radius: 12px;
    width: 100% !important;
    height: 30% !important;
}

/* Imagen con límites más pequeños y sin sobresalir del contenedor */
.fancybox-image {
    max-width: 80% !important;
    max-height: 30% !important;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .fancybox-image {
        max-width: 90vw !important;
        max-height: 70vh !important;
    }
}

.destacados-imagen-carousel {
    position: relative;
    overflow: hidden;
}

.destacado-slide {
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.destacado-slide.active {
    opacity: 1;
    position: relative;
}

.carousel-dots {
    text-align: center;
    margin-top: 10px;
}

.carousel-dots span {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    cursor: pointer;
}

.carousel-dots span.active {
    background-color: #000;
}

.modal-imagen {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.modal-imagen img {
    max-width: 60%;
    max-height: 60%;
}

.modal-imagen .cerrar {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.carrusel-flechas {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    /* Permite clics pasar a lo que está debajo */
}

.carrusel-flechas .flecha {
    pointer-events: auto;
    /* Solo las flechas capturan eventos */
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 28px;
}