/* ============================
   IMPORTS (DEBEN IR SIEMPRE ARRIBA)
============================ */
@import "servicios.css";
@import "about.css";
@import "base.css";
@import "layout.css";
@import "components.css";
@import "menu.css";
@import "responsive.css";
@import "contacto.css";
@import "catalogo.css";
@import "galeria.css";


/* ============================
   FUENTE BUNYA LIGHT
============================ */
@font-face {
    font-family: 'Bunya Light';
    src: url('../fonts/bunya/BunyaW01-Light.eot');
    src: url('../fonts/bunya/BunyaW01-Light.eot?#iefix') format('embedded-opentype'),
         url('../fonts/bunya/BunyaW01-Light.woff2') format('woff2'),
         url('../fonts/bunya/BunyaW01-Light.woff') format('woff'),
         url('../fonts/bunya/BunyaW01-Light.ttf') format('truetype'),
         url('../fonts/bunya/BunyaW01-Light.svg#BunyaLight') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Aplicar la fuente a TODO el sitio */
body {
    font-family: 'Bunya Light', sans-serif;
}

/* ============================
   TUS ESTILOS EXISTENTES
============================ */

.highlight-icon svg {
    color: #5B6D3D !important;
    stroke: currentColor !important;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    z-index: 999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
}

.top-icon {
    color: #25D366;
}

.about-hero {
    background-image: url('../img/about-hero.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a801c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.section-title::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #c47a3a;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}
.service-hero-content h1,
.service-hero-content p {
    font-family: 'Bunya Light', sans-serif !important;
}
.section-title {
    text-align: center !important;
}
/* Fuente global */
body, h1, h2, h3, h4, h5, h6, p, a, span, div {
    font-family: 'Bunya Light', sans-serif !important;
}

/* Centrar títulos */
.section-title {
    text-align: center !important;
}

/* Banners */
.service-hero-content h1,
.service-hero-content p {
    font-family: 'Bunya Light', sans-serif !important;
    text-align: center !important;
}


/* Asegurar que el título y subtítulo se centren */
.highlights .section-title,
.highlights .section-subtitle {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center !important;
}




/* =========================
   BOTÓN HAMBURGUESA (MÓVIL)
========================= */
.menu-toggle {
    display: none; /* Oculto en desktop */
    background: none;
    border: none;
    font-size: 28px;
    color: #A72677; /* Color coherente con tu menú */
    cursor: pointer;
}

/* Mostrar hamburguesa en móvil */
@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    /* Ocultar menú desktop en móvil */
    .nav {
        display: none;
    }
}

/* =========================
   MENÚ MÓVIL (ESTADO CERRADO)
========================= */
.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 12px;
    background: #F3B651;
    padding: 20px;
    border-top: 2px solid #A72677;
}

/* =========================
   MENÚ MÓVIL (ESTADO ABIERTO)
========================= */
.mobile-nav.open {
    display: flex;
}

/* Centrar el botón de Servicios en el menú móvil */
.mobile-dropdown-btn {
    width: 100%;
    text-align: center !important;
    background: none;
    border: none;
    font-size: 18px;
    padding: 12px 0;
    cursor: pointer;
    color: #A72677;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px; /* separa el texto del ícono */
}
/* Ícono del dropdown móvil */
.mobile-dropdown-btn i {
    transition: transform 0.3s ease;
}

/* Rotación cuando está abierto */
.mobile-dropdown-btn.active i {
    transform: rotate(180deg);
}
/* Submenú móvil */
.mobile-dropdown-menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0 0 0;
    border-top: 1px solid rgba(0,0,0,0.1);
}

/* Submenú abierto */
.mobile-dropdown-menu.active {
    display: flex;
}

.testimonios {
    background: #f7f7f7;
    padding: 70px 20px;
}

.contenedor-testimonios {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.titulo-testimonios {
    font-size: 34px;
    margin-bottom: 50px;
    color: #333;
    font-weight: 700;
}

.tarjetas-testimonios {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.tarjeta {
    background: white;
    padding: 35px 30px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    max-width: 420px;
    text-align: left;
    position: relative;
    transition: transform .2s ease, box-shadow .2s ease;
}

.tarjeta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.estrellas {
    font-size: 22px;
    color: #FF6A00;
    margin-bottom: 15px;
}

.texto {
    font-size: 17px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 25px;
}

.cliente {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cliente img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.nombre {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.highlight-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f8f7f6; /* Acento naranja TIHIL */
    display: flex;
    align-items: center;
    justify-content: center;
}

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


.slider-btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    background: #F3B651;
    border-radius: 5px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.slider-btn:hover {
    background: #e0a447;
}

.slider-link-real {
    position: relative;
    z-index: 9999;
    display: inline-block;
    padding: 15px 35px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    background: #F3B651;
    border-radius: 5px;
    text-decoration: none;
}

.slider-link-real:hover {
    background: #e0a447;
}
.slide-overlay {
    pointer-events: none !important;
}

.payment-section {
    padding: 90px 0;
    background: #ffffff;
    text-align: center;
}

.payment-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.payment-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

.payment-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.payment-logos img {
    max-width: 120px;
    filter: grayscale(0%);
    transition: all 0.3s ease;
    opacity: 0.9;
}

.payment-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 900px) {
    .payment-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 500px) {
    .payment-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
