/* ================================
   | DEVELOPED BY KONNECTMX - WEB-CLOUD SERVICES |
================================ */


/* ================================
   FONTS
================================ */
@font-face {
    font-family: 'AW';
    src: url('fonts/AWConqueror-Std-Didot-.otf') format('opentype');
}

@font-face {
    font-family: 'RobotoMed';
    src: url('fonts/Roboto-Medium.ttf') format('truetype');
}

body {
    margin: 0;
    padding: 0;
    background: #fff;
    font-family: 'AW', serif;
}


/* ================================
   CONTAINER
================================ */
.container {
    width: 92%;
    max-width: 1300px;
    margin: auto;
}


/* ================================
   NAVBAR BASE
================================ */
.macaria-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    transition: 0.3s ease;
}

.macaria-nav.scrolled {
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(6px);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Desktop Menus */
.macaria-nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

.macaria-nav li { margin: 0 18px; }

.macaria-nav a {
    color: #fff;
    font-size: 0.92rem;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: .85;
    transition: .25s ease;
}

.macaria-nav a:hover {
    opacity: 1;
    color: #c29760;
}

/* LOGO */
.nav-logo img {
    height: 34px;
}


/* ================================
   HAMBURGER (mobile only)
================================ */
.hamburger {
    display: none;
    width: 32px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background: #fff;
    transition: 0.3s;
}


/* ================================
   MOBILE MENU OVERLAY
================================ */
.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 75%;
    height: 100vh;
    background: #111;
    padding: 40px;
    z-index: 99999;
    transition: right 0.35s ease;
    display: flex;
    flex-direction: column;
    padding-top: 100px;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu li {
    margin-bottom: 25px;
}

.mobile-menu a {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* ================================
   RESPONSIVE RULES
================================ */
@media(max-width: 992px) {

    .nav-left,
    .nav-right {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
    }

    .nav-logo {
        margin-left: auto;
        margin-right: auto;
    }
}


/* ================================
   HERO SECTION
================================ */
/*.hero-macaria {
    height: 100vh;
    background: url('hero4.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 12%;
}
/* ================================
   HERO SECTION (una sola imagen)
================================ */
.hero-macaria {
    height: 100vh;
    background: url('hero4x.jpg') center/cover no-repeat !important;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 12%;
    transition: none !important;
}

@media(max-width: 1024px) {
	.hero-macaria {
		height: 80vh;
	}
}

/* Fade suave entre imágenes del hero */
/*.hero-macaria {
    transition: opacity 1.2s ease-in-out;
}
.hero-fade-out {
    opacity: 0;
}*/


.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.0);
}

.hero-content {
    position: relative;
    color: #fff;
    max-width: 580px;
    z-index: 2;
}

.hero-tag {
    letter-spacing: 3px;
    font-size: 1rem;
    opacity: .85;
}

.hero-content h1 {
    font-size: 3.0rem;
	text-transform:uppercase;
    font-weight: 400;
    line-height: 1.2;
    margin: 20px 0;
}

.hero-content h2 {
    font-size: 1.8rem;
  font-weight: 400;
    line-height: 1.2;
    margin: 20px 0;
}

.hero-sub {
    opacity: 1;
}

.hero-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 18px;
    border: 1px solid #fff;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    transition: .3s;
	text-transform:uppercase;
}

.hero-btn:hover {
    background: #fff;
    color: #000;
text-decoration: none;
}

/* ============================
   HERO — Ajustes para móvil
============================ */
@media (max-width: 768px) {

    .hero-content {
        padding-left: 0;
        text-align: left;
        max-width: 85%;
    }

    .hero-content h2 {
        font-size: 1.2rem !important; /* antes ~1.8 */
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .hero-content h1 {
        font-size: 1.9rem !important; /* antes 3.0 */
        line-height: 1.25;
        margin: 12px 0 18px;
    }

    .hero-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    /* Un poco de separación inferior para que no se pegue al borde */
    .hero-macaria {
        padding-left: 6%;
        padding-right: 6%;
    }
}


/* Hamburger animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ============================================================
   SECCIÓN: ¿QUÉ ES MACARIA?
============================================================ */

.quienes-section {
    padding-bottom: 100px;
    background: #fff;
}

/* BLOQUE SUPERIOR */
.quienes-top {
    background: #a28056;
    padding: 90px 0 220px; 
    color: #fff;
    text-align: center;
	
}

@media(max-width: 1024px) {
	.quienes-top {
		margin-top:-100px;
	}
}

.quienes-title {
    font-family: 'AW', serif;
    font-size: 2.4rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.quienes-sub {
    font-family: 'AW', serif;
    font-size: 1.2rem;
    max-width: 850px;
    margin: auto;
    opacity: 0.95;
}

/* IMAGEN CENTRAL */
.quienes-img-wrapper {
    margin-top: -80px; /* sube la imagen encima del fondo café */
    margin-bottom: 50px;
}

.quienes-img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* TEXTO INFERIOR */
.quienes-units {
    font-family: 'AW', serif;
    font-size: 2.4rem;
    color: #a28056;
    margin-bottom: 10px;
}

.quienes-units em {
    font-style: italic;
}

.quienes-lockoff {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 40px;
	 color: #a28056;
}

/* ICONOS */
.icon-circle {
    width: 80px;
    height: 80px;
    background: #f5f1eb;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: 1.8rem;
    color: #a28056;
}

.icon-text {
    margin-top: 10px;
    color: #a28056;
    font-size: 1.3rem;
    font-family: 'AW', serif;
}
/* Iconos sección “¿Quiénes Somos?” */
.qi-icon i {
    font-size: 2.6rem !important; /* antes 2rem → 30% más grande */
    color: #fff;
}

/* ============================================================
   SLIDER EXPERIENCIAS — MACARIA
============================================================ */

#experiencias-slider {
    padding: 40px 0 80px;
}

.experiencias-swiper {
    width: 92%;
    max-width: 1300px;
}

.exp-slide {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 330px;
}

.exp-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay degradado */
.exp-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.05));
    z-index: 2;
}

/* Texto */
.exp-text {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 5;
    max-width: 80%;
    color: #fff;
}

.exp-text h3 {
    font-family: 'AW', serif;
    font-size: 1.9rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.exp-text p {
    font-family: 'AW', sans-serif;
	font-style: italic;
    font-size: 1.2rem;
    opacity: .9;
    line-height: 1.3;
}

/* Flechas */


.exp-prev:hover,
.exp-next:hover {
    color: #fff !important;
}
.experiencias-swiper .swiper-slide {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.experiencias-swiper .swiper-slide {
    height: 520px;
}

@media(max-width: 768px) {
    .experiencias-swiper .swiper-slide {
        height: 320px;
    }
}

/* ============================
   BANNER “INVERTIR EN MACARIA”
============================ */
.banner-macaria {
    width: 100%;
    height: 95vh; /* AJUSTA AQUÍ (60–80vh) */
    background: url('9181.jpg') center/cover no-repeat;
	background-position: center bottom; 
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25); /* overlay suave */
}

.banner-content {
    position: relative;
    text-align: center;
    color: #fff;
    max-width: 1300px;
    padding: 20px;
}

/* Título */
.banner-content h2 {
    font-family: 'AW', serif;
    font-weight: 300;
    font-size: 3rem;
    letter-spacing: 2px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.banner-content h2 strong {
    font-weight: 700;
    letter-spacing: 3px;
}

.banner-content p {
    font-family: 'AW', serif;
    font-size: 1.8rem;
    letter-spacing: 1px;
    opacity: 0.9;
	font-weight: 200;
	 font-style: italic;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 768px) {
    .banner-macaria {
        height: 55vh;
    }
    .banner-content h2 {
        font-size: 1.9rem;
    }
    .banner-content p {
        font-size: 1.1rem;
    }
}

.banner-title {
    font-family: 'AW', serif;
    font-weight: 300;
    font-size: 2.5rem;   /* <-- Cambias este valor y el logo se escala SOLO */
    letter-spacing: 2px;
    line-height: 1.3;
    margin-bottom: 20px;
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.banner-title .inline-logo {
    height: 1em;              /* 👈 La magia: se escala con el tamaño del texto */
    width: auto;
    vertical-align: -0.18em;  /* Ajuste fino para alinearse con el baseline */
    filter: brightness(0) invert(1); /* Hacerlo blanco si el logo es oscuro (opcional) */
}



/* =============================================
   SECCIÓN MODELOS
============================================= */
.modelos-section {
    background: #faf5ef;
    padding: 100px 0;
    text-align: center;
}

.modelos-title {
    font-family: 'AW', serif;
    font-size: 3rem;
    color: #8d6e43;
    letter-spacing: 2px;
    margin-bottom: 10px;
	font-style: italic;
	font-weight:bold;
}

.modelos-sub {
    font-family: 'AW', serif;
    font-size: 1.4rem;
    color: #8d6e43;
    margin-bottom: 60px;
	font-style: italic;
}

/* SLIDER */
.modelos-slider {
    position: relative;
    display: flex;
    align-items: center;
}

.modelos-track {
    overflow: hidden;
    width: 100%;
}

.modelos-slide {
    display: flex;
    justify-content: space-between;
    gap: 35px;
}

/* TARJETA */
.modelo-card {
    /*width: 33%;*/
    background: transparent;
}

.modelo-img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.modelo-heading {
    font-family: 'AW', serif;
    font-size: 1.6rem;
    color: #8d6e43;
    margin-bottom: 25px;
}

.modelo-heading span {
    font-weight: 300;
}

/* COLUMNAS INTERNAS */
.modelo-cols {
    display: flex;
    justify-content: center;
    gap: 40px;
    text-align: left;
}

.modelo-cols ul {
    list-style: none;
    padding: 0;
}

.modelo-cols li {
    margin-bottom: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
}

/* ARROWS */
.modelos-arrow {
    background: #fff;
    border: 1px solid #ccc;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.3rem;
    color: #8d6e43;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.25s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.modelos-arrow:hover {
    background: #8d6e43;
    color: #fff;
}

.modelos-arrow.left {
    left: -60px;
}

.modelos-arrow.right {
    right: -60px;
}

/* =============================================
   UBICACIÓN
============================================= */

.ubicacion-section {
    padding: 120px 0 80px;
    background: #fff;
}

.ubicacion-title {
    font-family: 'AW', serif;
    font-size: 3rem;
    color: #8d6e43;
    margin-bottom: 10px;
    text-align: left;
}

.ubicacion-sub {
    font-family: 'AW', serif;
    font-size: 1.4rem;
    color: #8d6e43;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.ubicacion-map iframe {
    width: 100%;
    height: 600px;
    border-radius: 10px;
    border: none;
}

/* ===============================
   GALERÍA MACARIA
================================ */
.galeria-section {
    padding: 120px 0 120px;
    background: #fff;
	
}

.galeria-title {
    font-family: 'AW', serif;
    font-size: 3rem;
    text-align: left;
    margin-bottom: 40px;
    color: #8d6e43;
}

.galeria-grid {
    display: grid;
    gap: 25px;
    padding: 0 5%;
    grid-template-columns: repeat(3, 1fr);
}

.galeria-grid img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.25s ease;
}

.galeria-grid img:hover {
    transform: scale(1.03);
}

/* Responsive */
@media(max-width: 992px) {
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .galeria-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* ===============================
   LIGHTBOX
================================ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.lightbox.open {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.lb-close {
    position: absolute;
    top: 25px;
    right: 40px;
    font-size: 45px;
    color: #fff;
    cursor: pointer;
}

.lb-prev,
.lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
    color: #fff;
    cursor: pointer;
    padding: 20px;
    user-select: none;
}

.lb-prev { left: 40px; }
.lb-next { right: 40px; }

.lb-prev:hover,
.lb-next:hover {
    color: #c29760;
}

/* ===== GALERÍA SCROLL LATERAL ===== */

.gal-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 35px;
    letter-spacing: 3px;
}

.galeria-container {
    position: relative;
    display: flex;
    align-items: center;
}

/* Wrapper scrolleable */
.galeria-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 100%;
    /* Ocultar la barra de scroll visualmente */
    scrollbar-width: none;           /* Firefox */
    -ms-overflow-style: none;        /* IE/Edge antiguo */
}
.galeria-wrapper::-webkit-scrollbar { /* Chrome/Safari */
    display: none;
}

/* El track con las imágenes */
.galeria-track {
    display: flex;
    gap: 22px;
    padding: 15px 0;
}

/* Cada imagen */
.gal-item {
    flex: 0 0 calc(33.333% - 15px);
    display: block;
}

.gal-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    display: block;
}


/* Flechas */
.gal-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gal-prev { left: -15px; }
.gal-next { right: -15px; }

.gal-btn:hover {
    background: rgba(0,0,0,0.8);
}

/* Mobile: 2 imágenes visibles */
@media (max-width: 768px) {
    .gal-item {
        flex: 0 0 calc(50% - 15px);
        height: 220px;
    }
}


/* =====================================
   SECCIÓN ¿QUIÉN DESARROLLA MACARIA?
===================================== */

.desarrolla-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.desarrolla-bg {
    width: 100%;
    height: 90vh;
    background: url('quiendesarrolla.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.desarrolla-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

/* === CONTENIDO === */
.desarrolla-content {
    position: relative;
    z-index: 5;
    color: #fff;

    /* 👇 CONTENIDO A LA IZQUIERDA (como en la captura) */
    max-width: 700px;
    margin-left: 6%;
}

/* LOGOS */
.desarrolla-logos {
    width: 480px;
    max-width: 70%;
    margin-bottom: 35px;
}



/* TÍTULO */
.desarrolla-title {
    font-family: 'AW', serif;
    font-size: 2.3rem;
    letter-spacing: 1px;
    margin-bottom: 22px;
}

/* TEXTO */
.desarrolla-text {
    font-family: 'AW', serif;
    font-size: 1.45rem;
    line-height: 1.45;
    opacity: 0.95;
    font-style: italic;
    max-width: 620px;
	font-weight:100;
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .desarrolla-bg {
        height: 65vh;
    }
    .desarrolla-content {
        margin-left: 5%;
    }
    .desarrolla-title {
        font-size: 2rem;
    }
    .desarrolla-text {
        font-size: 1.15rem;
    }
    .desarrolla-logos {
        width: 240px;
    }
}

@media (max-width: 600px) {
    .desarrolla-bg {
        height: 55vh;
    }
    .desarrolla-content {
        margin-left: 4%;
    }
    .desarrolla-title {
        font-size: 1.6rem;
    }
    .desarrolla-text {
        font-size: 1rem;
    }
    .desarrolla-logos {
        width: 200px;
    }
}

/* ==========================================================
   SECCIÓN FINAL — CONTACTO + LOGOS
========================================================== */

.contacto-final {
    background: #a28056; /* café Macaria */
    padding: 120px 0 100px;
    text-align: left;
    color: #fff;
    font-family: 'AW', serif;
}

.cf-title {
    font-size: 2.3rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.cf-sub {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 20px;
    opacity: 0.9;
}

.cf-desc {
    font-size: 1.2rem;
    margin-bottom: 45px;
    opacity: 0.9;
    font-style: italic;
}

/* BOTÓN */
.cf-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 38px;
    border: 1px solid #fff;
    border-radius: 40px;
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 70px;
    transition: 0.3s ease;
}

.cf-btn i {
    font-size: 1.3rem;
}

.cf-btn:hover {
    background: rgba(255,255,255,0.15);
	text-decoration: none;
	color:#fff;
}

/* LOGO MACARIA */
.cf-logo-macaria img {
    width: 220px;
    margin: 40px auto 50px;
    display: block;
}

/* RISE + ORIGEN */
.cf-logos-group img {
    width: 330px;
    max-width: 90%;
    margin: 0 auto 40px;
    display: block;
}

/* WEBSITE */
.cf-web {
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.9;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .cf-title { font-size: 1.7rem; }
    .cf-sub { font-size: 1.2rem; }
    .cf-desc { font-size: 1rem; }
    .cf-btn { font-size: 0.95rem; padding: 12px 30px; }
    .cf-logo-macaria img { width: 170px; }
    .cf-logos-group img { width: 250px; }
}
@media(max-width: 768px) {
    .modelo-card {
        width: 100% !important;
        margin-bottom: 40px;
    }

    .modelo-heading {
        text-align: center;
    }

    .modelo-cols ul {
        padding-left: 0;
    }
}
/* Bootstrap manda en mobile */
@media (max-width: 992px) {
    .modelo-card {
        width: 100% !important;
    }
}

/* Cleanup de columnas internas */
@media (max-width: 768px) {
    .modelo-cols {
        flex-direction: column;
        gap: 10px;
    }
}

/* ===== FIX: Flechas del slider de modelos ===== */

.modelos-slider {
    position: relative;
    overflow: visible;
}

/* Flechas SIEMPRE visibles arriba de todo */
.modelos-arrow {
    z-index: 50 !important;
}

/* Ajuste vertical más arriba */
.modelos-arrow.left,
.modelos-arrow.right {
    top: 45%; /* antes 50%, baja un poco */
}

/* MOBILE FIX — Flechas alineadas al borde del contenido */
@media (max-width: 768px) {

    .modelos-arrow.left {
        left: -10px !important;
    }

    .modelos-arrow.right {
        right: -10px !important;
    }

    /* Evitar que las flechas se “vayan” debajo de la tarjeta */
    .modelos-slider {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

/* ======================================================
   PRELOADER — MACARIA
====================================================== */

#preloader {
    position: fixed;
    inset: 0;
    background: #a28056; /* beige Macaria */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999;
    opacity: 1;
    transition: opacity 0.7s ease;
}

/* LOGO */
#preloader-logo {
    width: 300px;
    height: auto;
    animation: macariaBlink 1.8s ease-in-out infinite;
}

/* "Breathing" / parpadeo suave */
@keyframes macariaBlink {
    0%   { opacity: 0.35; transform: scale(0.97); }
    50%  { opacity: 1;    transform: scale(1); }
    100% { opacity: 0.35; transform: scale(0.97); }
}

/* Cuando se oculta */
#preloader.hide {
    opacity: 0;
    pointer-events: none;
}

/* Contenedor de flechas alineadas a la derecha */
.exp-arrows-right {
    width: 90%;
    display: flex;
    justify-content: flex-end;   /* ← alineación a la derecha */
    gap: 15px;
    margin-top: 15px;
    padding-right: 40px;         /* Ajusta el margen respecto al borde derecho */
}

/* Flechas */
.exp-arrows-right .exp-prev,
.exp-arrows-right .exp-next {
    width: 42px;
    height: 42px;
    background: #fff;
    border: 1px solid #c29760;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .25s ease;
    color: #c29760;
    font-size: 16px;
}

/* Hover */
.exp-arrows-right .exp-prev:hover,
.exp-arrows-right .exp-next:hover {
    background: #c29760;
    color: #fff;
}

/* ================================
   DESARROLLADO POR KONNECTMX KONNECT.COM.MX
================================ */


/* ================================
   FONTS
================================ */
@font-face {
    font-family: 'AW';
    src: url('fonts/AWConqueror-Std-Didot-.otf') format('opentype');
}

body {
    margin: 0;
    padding: 0;
    background: #fff;
    font-family: 'AW', serif;
}


/* ================================
   CONTAINER
================================ */
.container {
    width: 92%;
    max-width: 1300px;
    margin: auto;
}


/* ================================
   NAVBAR BASE
================================ */
.macaria-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    transition: 0.3s ease;
}

.macaria-nav.scrolled {
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(6px);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Desktop Menus */
.macaria-nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

.macaria-nav li { margin: 0 18px; }

.macaria-nav a {
    color: #fff;
    font-size: 0.92rem;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: .85;
    transition: .25s ease;
}

.macaria-nav a:hover {
    opacity: 1;
    color: #c29760;
}

/* LOGO */
.nav-logo img {
    height: 34px;
}


/* ================================
   HAMBURGER (mobile only)
================================ */
.hamburger {
    display: none;
    width: 32px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background: #fff;
    transition: 0.3s;
}


/* ================================
   MOBILE MENU OVERLAY
================================ */
.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 75%;
    height: 100vh;
    background: #111;
    padding: 40px;
    z-index: 99999;
    transition: right 0.35s ease;
    display: flex;
    flex-direction: column;
    padding-top: 100px;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu li {
    margin-bottom: 25px;
}

.mobile-menu a {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* ================================
   RESPONSIVE RULES
================================ */
@media(max-width: 992px) {

    .nav-left,
    .nav-right {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
    }

    .nav-logo {
        margin-left: auto;
        margin-right: auto;
    }
}


/* ================================
   HERO SECTION
================================ */
/*.hero-macaria {
    height: 100vh;
    background: url('hero4.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 12%;
}
/* ================================
   HERO SECTION (una sola imagen)
================================ */
.hero-macaria {
    height: 100vh;
    background: url('hero4x.jpg') center/cover no-repeat !important;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 12%;
    transition: none !important;
}

@media(max-width: 1024px) {
	.hero-macaria {
		height: 80vh;
	}
}

/* Fade suave entre imágenes del hero */
/*.hero-macaria {
    transition: opacity 1.2s ease-in-out;
}
.hero-fade-out {
    opacity: 0;
}*/


.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.0);
}

.hero-content {
    position: relative;
    color: #fff;
    max-width: 580px;
    z-index: 2;
}

.hero-tag {
    letter-spacing: 3px;
    font-size: 1rem;
    opacity: .85;
}

.hero-content h1 {
    font-size: 3.0rem;
	text-transform:uppercase;
    font-weight: 400;
    line-height: 1.2;
    margin: 20px 0;
}

.hero-content h2 {
    font-size: 1.8rem;
  font-weight: 400;
    line-height: 1.2;
    margin: 20px 0;
}

.hero-sub {
    opacity: 1;
}

.hero-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 18px;
    border: 1px solid #fff;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    transition: .3s;
	text-transform:uppercase;
}

.hero-btn:hover {
    background: #fff;
    color: #000;
}

/* ============================
   HERO — Ajustes para móvil
============================ */
@media (max-width: 768px) {

    .hero-content {
        padding-left: 0;
        text-align: left;
        max-width: 85%;
    }

    .hero-content h2 {
        font-size: 1.2rem !important; /* antes ~1.8 */
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .hero-content h1 {
        font-size: 1.9rem !important; /* antes 3.0 */
        line-height: 1.25;
        margin: 12px 0 18px;
    }

    .hero-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    /* Un poco de separación inferior para que no se pegue al borde */
    .hero-macaria {
        padding-left: 6%;
        padding-right: 6%;
    }
}


/* Hamburger animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ============================================================
   SECCIÓN: ¿QUÉ ES MACARIA?
============================================================ */

.quienes-section {
    padding-bottom: 20px;
    background: #fff;
}

@media (max-width: 576px) {
.quienes-section {
padding-bottom: 30px;
}
}

/* BLOQUE SUPERIOR */
.quienes-top {
    background: #a28056;
    padding: 90px 0 220px; 
    color: #fff;
    text-align: center;
	
}

@media(max-width: 1024px) {
	.quienes-top {
		margin-top:-100px;
	}
}

.quienes-title {
    font-family: 'AW', serif;
    font-size: 2.4rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.quienes-sub {
    font-family: 'AW', serif;
    font-size: 1.2rem;
    max-width: 850px;
    margin: auto;
    opacity: 0.95;
}

/* IMAGEN CENTRAL */
.quienes-img-wrapper {
    margin-top: -80px; /* sube la imagen encima del fondo café */
    margin-bottom: 50px;
}

.quienes-img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* TEXTO INFERIOR */
.quienes-units {
    font-family: 'AW', serif;
    font-size: 2.4rem;
    color: #a28056;
    margin-bottom: 10px;
}

.quienes-units em {
    font-style: italic;
}

.quienes-lockoff {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 40px;
	 color: #a28056;
}

/* ICONOS */
.icon-circle {
    width: 80px;
    height: 80px;
    background: #f5f1eb;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: 1.8rem;
    color: #a28056;
}

.icon-text {
    margin-top: 10px;
    color: #a28056;
    font-size: 1.3rem;
    font-family: 'AW', serif;
}
/* Iconos sección “¿Quiénes Somos?” */
.qi-icon i {
    font-size: 2.6rem !important; /* antes 2rem → 30% más grande */
    color: #fff;
}

/* ============================================================
   SLIDER EXPERIENCIAS — MACARIA
============================================================ */

#experiencias-slider {
    padding: 40px 0 80px;
}

.experiencias-swiper {
    width: 92%;
    max-width: 1300px;
}

.exp-slide {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 330px;
}

.exp-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay degradado */
.exp-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.05));
    z-index: 2;
}

/* Texto */
.exp-text {
    position: absolute;
    bottom: 60px;
    left: 80px;
    z-index: 5;
    max-width: 80%;
    color: #fff;
}

.exp-text h3 {
    font-family: 'AW', serif;
    font-size: 1.9rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.exp-text p {
    font-family: 'AW', sans-serif;
	font-style: italic;
    font-size: 1.2rem;
    opacity: .9;
    line-height: 1.3;
}

/* Flechas */
.exp-prev,
.exp-next {
    color: #c29760 !important;
    scale: 1.2;
    font-weight: bold;
}

.exp-prev:hover,
.exp-next:hover {
    color: #fff !important;
}
.experiencias-swiper .swiper-slide {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.experiencias-swiper .swiper-slide {
    height: 631px;
}

@media(max-width: 768px) {
    .experiencias-swiper .swiper-slide {
        height: 320px;
    }
}

/* ============================
   BANNER “INVERTIR EN MACARIA”
============================ */
.banner-macaria {
    width: 100%;
    height: 95vh; /* AJUSTA AQUÍ (60–80vh) */
    background: url('9181.jpg') center/cover no-repeat;
	background-position: center bottom; 
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25); /* overlay suave */
}

.banner-content {
    position: relative;
    text-align: center;
    color: #fff;
    max-width: 1300px;
    padding: 20px;
padding-bottom: 100px;
}

@media (max-width: 576px) {
.banner-content {
padding-bottom: 87px;
}
}

/* Título */
.banner-content h2 {
    font-family: 'AW', serif;
    font-weight: 300;
    font-size: 3rem;
    letter-spacing: 2px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.banner-content h2 strong {
    font-weight: 700;
    letter-spacing: 3px;
}

.banner-content p {
    font-family: 'AW', serif;
    font-size: 2rem;
    letter-spacing: 1px;
    opacity: 0.9;
	font-weight: 200;
	 font-style: italic;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 768px) {
    .banner-macaria {
        height: 55vh;
    }
    .banner-content h2 {
        font-size: 1.9rem;
    }
    .banner-content p {
        font-size: 1.1rem;
    }
}

.banner-title {
    font-family: 'AW', serif;
    font-weight: 300;
    font-size: 2.5rem;   /* <-- Cambias este valor y el logo se escala SOLO */
    letter-spacing: 2px;
    line-height: 1.3;
    margin-bottom: 20px;
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.banner-title .inline-logo {
    height: 1em;              /* 👈 La magia: se escala con el tamaño del texto */
    width: auto;
    vertical-align: -0.18em;  /* Ajuste fino para alinearse con el baseline */
    filter: brightness(0) invert(1); /* Hacerlo blanco si el logo es oscuro (opcional) */
}



/* =============================================
   SECCIÓN MODELOS
============================================= */
.modelos-section {
    background: #faf5ef;
    padding: 100px 0;
    text-align: center;
}

.modelos-title {
    font-family: 'AW', serif;
    font-size: 3rem;
    color: #8d6e43;
    letter-spacing: 2px;
    margin-bottom: 10px;
	font-style: italic;
	font-weight:bold;
}

.modelos-sub {
    font-family: 'AW', serif;
    font-size: 1.4rem;
    color: #8d6e43;
    margin-bottom: 60px;
	font-style: italic;
}

/* SLIDER */
.modelos-slider {
    position: relative;
    display: flex;
    align-items: center;
}

.modelos-track {
    overflow: hidden;
    width: 100%;
}

.modelos-slide {
    display: flex;
    justify-content: space-between;
    gap: 35px;
}

/* TARJETA */
.modelo-card {
    /*width: 33%;*/
    background: transparent;
}

.modelo-img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.modelo-heading {
    font-family: 'AW', serif;
    font-size: 1.6rem;
    color: #8d6e43;
    margin-bottom: 25px;
}

.modelo-heading span {
    font-weight: 300;
}

/* COLUMNAS INTERNAS */
.modelo-cols {
    display: flex;
    justify-content: center;
    gap: 40px;
    text-align: left;
}

.modelo-cols ul {
    list-style: none;
    padding: 0;
}

.modelo-cols li {
    margin-bottom: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
}

/* ARROWS */
.modelos-arrow {
    background: #fff;
    border: 1px solid #ccc;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.3rem;
    color: #8d6e43;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.25s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.modelos-arrow:hover {
    background: #8d6e43;
    color: #fff;
}

.modelos-arrow.left {
    left: -60px;
}

.modelos-arrow.right {
    right: -60px;
}

/* =============================================
   UBICACIÓN
============================================= */

.ubicacion-section {
    padding: 120px 0 80px;
    background: #fff;
}

.ubicacion-title {
    font-family: 'AW', serif;
    font-size: 3rem;
    color: #8d6e43;
    margin-bottom: 10px;
    text-align: left;
}

.ubicacion-sub {
    font-family: 'AW', serif;
    font-size: 1.4rem;
    color: #8d6e43;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.ubicacion-map iframe {
    width: 100%;
    height: 600px;
    border-radius: 10px;
    border: none;
}

/* ===============================
   GALERÍA MACARIA
================================ */
.galeria-section {
    padding: 120px 0 120px;
    background: #fff;
	
}

.galeria-title {
    font-family: 'AW', serif;
    font-size: 3rem;
    text-align: left;
    margin-bottom: 40px;
    color: #8d6e43;
}

.galeria-grid {
    display: grid;
    gap: 25px;
    padding: 0 5%;
    grid-template-columns: repeat(3, 1fr);
}

.galeria-grid img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.25s ease;
}

.galeria-grid img:hover {
    transform: scale(1.03);
}

/* Responsive */
@media(max-width: 992px) {
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .galeria-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* ===============================
   LIGHTBOX
================================ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.lightbox.open {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.lb-close {
    position: absolute;
    top: 25px;
    right: 40px;
    font-size: 45px;
    color: #fff;
    cursor: pointer;
}

.lb-prev,
.lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
    color: #fff;
    cursor: pointer;
    padding: 20px;
    user-select: none;
}

.lb-prev { left: 40px; }
.lb-next { right: 40px; }

.lb-prev:hover,
.lb-next:hover {
    color: #c29760;
}

/* ===== GALERÍA SCROLL LATERAL ===== */

.gal-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 35px;
    letter-spacing: 3px;
}

.galeria-container {
    position: relative;
    display: flex;
    align-items: center;
}

/* Wrapper scrolleable */
.galeria-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 100%;
    /* Ocultar la barra de scroll visualmente */
    scrollbar-width: none;           /* Firefox */
    -ms-overflow-style: none;        /* IE/Edge antiguo */
}
.galeria-wrapper::-webkit-scrollbar { /* Chrome/Safari */
    display: none;
}

/* El track con las imágenes */
.galeria-track {
    display: flex;
    gap: 22px;
    padding: 15px 0;
}

/* Cada imagen */
.gal-item {
    flex: 0 0 calc(33.333% - 15px);
    display: block;
}

.gal-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    display: block;
}


/* Flechas */
.gal-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gal-prev { left: -15px; }
.gal-next { right: -15px; }

.gal-btn:hover {
    background: rgba(0,0,0,0.8);
}

/* Mobile: 2 imágenes visibles */
@media (max-width: 768px) {
    .gal-item {
        flex: 0 0 calc(50% - 15px);
        height: 220px;
    }
}


/* =====================================
   SECCIÓN ¿QUIÉN DESARROLLA MACARIA?
===================================== */

.desarrolla-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.desarrolla-bg {
    width: 100%;
    height: 90vh;
    background: url('quiendesarrolla.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.desarrolla-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

/* === CONTENIDO === */
.desarrolla-content {
    position: relative;
    z-index: 5;
    color: #fff;

    /* 👇 CONTENIDO A LA IZQUIERDA (como en la captura) */
    max-width: 700px;
    margin-left: 6%;
}

/* LOGOS */
.desarrolla-logos {
    width: 480px;
    max-width: 70%;
    margin-bottom: 35px;
}

/* TÍTULO */
.desarrolla-title {
    font-family: 'AW', serif;
    font-size: 2.3rem;
    letter-spacing: 1px;
    margin-bottom: 22px;
}

/* TEXTO */
.desarrolla-text {
    font-family: 'AW', serif;
    font-size: 1.45rem;
    line-height: 1.45;
    opacity: 0.95;
    font-style: italic;
    max-width: 620px;
	font-weight:100;
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .desarrolla-bg {
        height: 65vh;
    }
    .desarrolla-content {
        margin-left: 5%;
    }
    .desarrolla-title {
        font-size: 2rem;
    }
    .desarrolla-text {
        font-size: 1.15rem;
    }
    .desarrolla-logos {
        width: 240px;
    }
}

@media (max-width: 600px) {
    .desarrolla-bg {
        height: 55vh;
    }
    .desarrolla-content {
        margin-left: 4%;
    }
    .desarrolla-title {
        font-size: 1.6rem;
    }
    .desarrolla-text {
        font-size: 1rem;
    }
    .desarrolla-logos {
        width: 200px;
    }
}

/* ==========================================================
   SECCIÓN FINAL — CONTACTO + LOGOS
========================================================== */

.contacto-final {
    background: #a28056; /* café Macaria */
    padding: 120px 0 100px;
    text-align: center;
    color: #fff;
    font-family: 'AW', serif;
}

.cf-title {
    font-size: 2.3rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.cf-sub {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 20px;
    opacity: 0.9;
}

.cf-desc {
    font-size: 1.2rem;
    margin-bottom: 45px;
    opacity: 0.9;
    font-style: italic;
}

/* BOTÓN */
.cf-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 38px;
    border: 1px solid #fff;
    border-radius: 40px;
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 70px;
    transition: 0.3s ease;
}

.cf-btn i {
    font-size: 1.3rem;
}

.cf-btn:hover {
    background: rgba(255,255,255,0.15);
}

/* LOGO MACARIA */
.cf-logo-macaria img {
    width: 220px;
    margin: 40px auto 50px;
    display: block;
}

/* RISE + ORIGEN */
.cf-logos-group img {
    width: 330px;
    max-width: 90%;
    margin: 0 auto 40px;
    display: block;
}

/* WEBSITE */
.cf-web {
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.9;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .cf-title { font-size: 1.7rem; }
    .cf-sub { font-size: 1.2rem; }
    .cf-desc { font-size: 1rem; }
    .cf-btn { font-size: 0.95rem; padding: 12px 30px; }
    .cf-logo-macaria img { width: 170px; }
    .cf-logos-group img { width: 250px; }
}
@media(max-width: 768px) {
    .modelo-card {
        width: 100% !important;
        margin-bottom: 40px;
    }

    .modelo-heading {
        text-align: center;
    }

    .modelo-cols ul {
        padding-left: 0;
    }
}
/* Bootstrap manda en mobile */
@media (max-width: 992px) {
    .modelo-card {
        width: 100% !important;
    }
}

/* Cleanup de columnas internas */
@media (max-width: 768px) {
    .modelo-cols {
        flex-direction: column;
        gap: 10px;
    }
}

/* ===== FIX: Flechas del slider de modelos ===== */

.modelos-slider {
    position: relative;
    overflow: visible;
}

/* Flechas SIEMPRE visibles arriba de todo */
.modelos-arrow {
    z-index: 50 !important;
}

/* Ajuste vertical más arriba */
.modelos-arrow.left,
.modelos-arrow.right {
    top: 45%; /* antes 50%, baja un poco */
}

/* MOBILE FIX — Flechas alineadas al borde del contenido */
@media (max-width: 768px) {

    .modelos-arrow.left {
        left: -10px !important;
    }

    .modelos-arrow.right {
        right: -10px !important;
    }

    /* Evitar que las flechas se “vayan” debajo de la tarjeta */
    .modelos-slider {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

/* ======================================================
   PRELOADER — MACARIA
====================================================== */

#preloader {
    position: fixed;
    inset: 0;
    background: #a28056; /* beige Macaria */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999;
    opacity: 1;
    transition: opacity 0.7s ease;
}

/* LOGO */
#preloader-logo {
    width: 300px;
    height: auto;
    animation: macariaBlink 1.8s ease-in-out infinite;
}

/* "Breathing" / parpadeo suave */
@keyframes macariaBlink {
    0%   { opacity: 0.35; transform: scale(0.97); }
    50%  { opacity: 1;    transform: scale(1); }
    100% { opacity: 0.35; transform: scale(0.97); }
}

/* Cuando se oculta */
#preloader.hide {
    opacity: 0;
    pointer-events: none;
}

/* Contenedor de flechas alineadas a la derecha */
.exp-arrows-right {
    width: 85%;
    display: flex;
    justify-content: flex-end;   /* ← alineación a la derecha */
    gap: 15px;
    margin-top: 15px;
    padding-right: 40px;         /* Ajusta el margen respecto al borde derecho */
}

/* Flechas */
.exp-arrows-right .exp-prev,
.exp-arrows-right .exp-next {
    width: 42px;
    height: 42px;
    background: #fff;
    border: 1px solid #c29760;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .25s ease;
    color: #c29760;
    font-size: 16px;
}

/* Hover */
.exp-arrows-right .exp-prev:hover,
.exp-arrows-right .exp-next:hover {
    background: #c29760;
    color: #fff;
}

/* Asegurar que Swiper NO inyecte estilos que rompan */
.exp-prev,
.exp-next {
    position: static !important;
}


/* ============================
   Flechas Galería - estilo EXP
============================ */

.gal-arrows-right {
    width: 92%;                 /* igual que experiencias */
    max-width: 1300px;
    margin: 15px auto 0;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    padding-right: 40px;
}

.gal-arrows-right .gal-prev,
.gal-arrows-right .gal-next {
    width: 42px;
    height: 42px;
    background: #fff;
    border: 1px solid #c29760;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .25s ease;
    color: #c29760;
    font-size: 16px;
}

.gal-arrows-right .gal-prev:hover,
.gal-arrows-right .gal-next:hover {
    background: #c29760;
    color: #fff;
}

/* quitar flechas viejas */
.gal-btn { display:none !important; }

/* ============================
   FORMULARIO MACARIA
============================ */

.contact-form-box {
    background: #8c693b;             /* tono café Macaria */
    padding: 50px 55px;
    border-radius: 22px;
    color: #fff;
    font-family: 'AW', serif;
}

.contact-form-box form label {
    font-size: 1.1rem;
    margin-bottom: 6px;
    display: block;
    opacity: 0.9;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.35);
    padding: 10px 0;
    margin-bottom: 28px;
    font-size: 1.1rem;
    color: #fff;
    font-family: 'AW', serif;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
    outline: none;
    border-bottom-color: #fff;
}

/* BOTÓN */
.contact-btn {
    float: right;
    margin-top: 10px;
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 35px;
    border-radius: 8px;
    font-family: 'AW', serif;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.25s;
}

.contact-btn:hover {
    background: #fff;
    color: #8c693b;
}

/* Mobile */
@media(max-width: 768px){
    .contact-form-box {
        padding: 40px 30px;
    }
}

.mac-form {
    background: rgba(0,0,0,0.10);
    padding: 40px 50px;
    border-radius: 22px;
    color: #fdf3df;
    font-family: 'AW', serif;
    position: relative;
}

.mac-form label {
    display: block;
    margin-top: 18px;
    margin-bottom: 6px;
    font-size: 1rem;
    opacity: .9;
	font-family:RobotoMed;
}

.mac-form input,
.mac-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #e0cfa6;
    padding: 10px 4px;
    font-size: 1rem;
    color: #fdf3df;
    outline: none;
}

.mac-form input::placeholder,
.mac-form textarea::placeholder {
    color: #e0cfa6;
    opacity: .6;
}
.mac-form {
    display: flex;
    flex-direction: column;
}


.btn-mac {
    margin-top: 25px;
    background: transparent;
    border: 1px solid #e0cfa6;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 1rem;
    color: #fdf3df;
    cursor: pointer;
    transition: .3s;
    float: right;
}

.btn-mac {
    display: inline-block;
    margin-left: auto;     /* empuja el botón hacia la derecha */
    float: none;           /* evita que salga del contenedor */
}


.btn-mac:hover {
    background: #e0cfa6;
    color: #6e4c25;
}

/* Mensaje de éxito */
.form-success {
    display: none;
    margin-top: 25px;
    padding: 15px;
    background: #3a7421;
    color: #fff;
    border-radius: 8px;
    text-align: center;
    animation: fadeInUp .8s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ==========================================
   FLECHAS NUEVAS PARA SLIDER DE MODELOS
   (Abajo a la derecha, igual que EXP / GAL)
========================================== */

.modelos-arrows-right {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 20px;
    padding-right: 40px;
}

.modelos-prev,
.modelos-next {
    width: 42px;
    height: 42px;
    background: #fff;
    border: 1px solid #c29760;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #c29760;
    transition: .25s ease;
}

.modelos-prev:hover,
.modelos-next:hover {
    background: #c29760;
    color: #fff;
}

.modelos-track {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
}

.modelos-slide {
    flex: 0 0 100%;
    display: flex;
    justify-content: space-between;
    gap: 35px;
}

.modelos-track {
    display: flex;
    overflow: hidden;

    /* Transición suave */
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;

    transition: scroll-left 0.45s ease;
}

.modelos-slide {
    flex: 0 0 100%;
    scroll-snap-align: start; /* cada slide “cae” suavemente en su lugar */
}

/* === ANIMACIÓN FADE + SLIDE === */

.modelos-slide {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.modelos-slide.active {
    opacity: 1;
    transform: translateX(0);
}

/* ===== WhatsApp Floating Button ===== */

.wa-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 28px;
    right: 28px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    text-decoration: none;
    z-index: 99999;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    transition: all .25s ease;
    opacity: 0;
    transform: scale(.6);
}

/* Animación de entrada */
.wa-float.show {
    opacity: 1;
    transform: scale(1);
}

/* Hover */
.wa-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
	text-decoration:none;
	color:#fff;
}

/* Tamaño móvil */
@media (max-width: 768px) {
    .wa-float {
        width: 54px;
        height: 54px;
        font-size: 28px;
        bottom: 22px;
        right: 22px;
    }
}

/* ===== WhatsApp Panel Widget ===== */

.wa-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999999;
    font-family: 'AW', sans-serif;
}

/* Botón */
.wa-button {
    width: 62px;
    height: 62px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    transition: .25s ease;
}
.wa-button:hover {
    transform: scale(1.1);
}

/* Panel lateral */
.wa-panel {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 290px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    opacity: 0;
    transform: translateY(15px);
    pointer-events: none;
    transition: .35s ease;
}

/* Panel visible */
.wa-panel.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

/* Header */
.wa-header {
    display: flex;
    align-items: center;
    padding: 14px;
    background: #25d366;
    color: #fff;
    border-radius: 16px 16px 0 0;
}
.wa-header img {
    width: 36px;
    height: 36px;
    margin-right: 12px;
}

/* Body */
.wa-body {
    padding: 18px;
    font-size: 1rem;
    color: #333;
    line-height: 1.45;
}

/* Botón iniciar */
.wa-start {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    border-radius: 0 0 16px 16px;
    font-size: 1rem;
    transition: .25s;
}
.wa-start:hover {
    background: #1eb858;
}

@media (max-width: 768px) {
    .wa-panel {
        width: 260px;
    }
    .wa-button {
        width: 56px;
        height: 56px;
        font-size: 30px;
    }
}


.modelos-swiper {
    width: 100%;
    padding-bottom: 50px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

.modelo-card {
    width: 100%;
    max-width: 380px;
}

.modelos-prev, .modelos-next {
    width: 42px;
    height: 42px;
    background: #fff;
    border: 1px solid #c29760;
    border-radius: 50%;
    color: #c29760;
    position: absolute;
    bottom: 0;
    right: 40px;
    z-index: 50;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modelos-prev { right: 95px; }

/* ==========================================
   AJUSTES TIPOGRAFÍA EXPERIENCIAS — MOBILE XS
   (para iPhones chicos, 375px / 414px)
========================================== */
@media (max-width: 480px) {

    /* Altura del slide también un poco menor */
    .experiencias-swiper .swiper-slide {
        height: 260px;
    }

    /* Título */
    .exp-text h3 {
        font-size: 1.3rem !important; /* antes ~1.9 */
        margin-bottom: 5px;
    }

    /* Párrafo */
    .exp-text p {
        font-size: 0.95rem !important; /* antes ~1.2 */
        line-height: 1;
    }
  .iconsexp{
        font-size: 0.55rem !important; /* antes ~1.2 */
        margin-top:5px;
    }


    /* Ajustar margen inferior del texto */
    .exp-text {
        bottom: 18px;
        left: 18px;
        max-width: 90%;
    }
}

/* ======================================================
   FIX — ICONOS EXP: Compacto en móviles chicos
====================================================== */
@media (max-width: 576px) {

    .iconsexp {
        display: flex !important;
        align-items: center;
        gap: 6px;                     /* Antes 8px */
        font-size: 0.68rem;           /* Antes 0.95rem */
        margin-bottom: 3px !important;/* Antes 12px */
        line-height: 1;

        /* Forzar siempre 2 columnas */
        width: 33% !important;
        flex: 0 0 33% !important;
        max-width: 33% !important;
    }

    .iconsexp i {
        font-size: .68rem;              /* Antes 1.2rem */
        width: 16px;
        text-align: center;
        opacity: 0.9;
    }

    .iconsexp em {
        font-style: normal;
        font-size: 0.65rem;           /* Antes 0.9rem */
        line-height: 1.15;
        display: inline-block;
        opacity: 0.95;
    }
}

/* Logo 2K TUL — esquina inferior derecha */
.logo-2ktul {
    position: absolute;
    right: 25px;
    bottom: 25px;
    width: 56px;         /* tamaño controlado */
    height: auto;
    z-index: 10;
    opacity: 0.92;        /* elegancia */
	
}

/* Responsivo */
@media (max-width: 768px) {
    .logo-2ktul {
        width: 56px;
        right: 15px;
        bottom: 15px;
    }
}

@media (max-width: 480px) {
    .logo-2ktul {
        width: 56px;
        right: 12px;
        bottom: 12px;
    }
}
/* Texto IIK TULUM — esquina inferior derecha */
.logo-2ktul-text {
    position: absolute;
    right: 30px;
    bottom: 40px;
    font-family: 'AW', serif;   /* mismo estilo que el sitio */
    color: #fff;
    font-size: 1rem;
    letter-spacing: 3px;
    opacity: 0.92;
    z-index: 10;
    text-shadow: 0 0 8px rgba(0,0,0,0.45); /* lo hace legible en cualquier fondo */
}

/* Responsivo */
@media (max-width: 992px) {
    .logo-2ktul-text {
        font-size: 1rem;
        right: 20px;
        bottom: 30px;
    }
}

@media (max-width: 600px) {
    .logo-2ktul-text {
        font-size: 1rem;
        right: 15px;
        bottom: 20px;
    }
}

