/* ----------------------------- */
/* RESET Y GLOBALES              */
/* ----------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografías (simulando las originales) */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Mukta', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

.text-dark {
    color: #000000;
}

/* ----------------------------- */
/* HEADER Y NAVEGACIÓN           */
/* ----------------------------- */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    max-height: 65px;
    width: auto;
}

/* Menú desktop */
.nav {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav a {
    font-weight: 500;
    transition: color 0.3s;
    color: #000;
}

.nav a:hover {
    color: #4DB7B3;
}

/* Menú móvil (oculto por defecto) */
.mobile-nav {
    display: none;
}

.menu-icon {
    font-size: 28px;
    cursor: pointer;
}

/* Sidebar móvil */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    transition: left 0.3s;
    z-index: 1000;
    padding: 30px 20px;
    overflow-y: auto;
}

.mobile-sidebar.open {
    left: 0;
}

.mobile-sidebar .nav-sidebar {
    list-style: none;
    flex-direction: column;
    gap: 15px;
}

.mobile-sidebar .nav-sidebar a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* Overlay para móvil */
.overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    display: none;
}

/* ----------------------------- */
/* BANNERS / SLIDER              */
/* ----------------------------- */
.slider-wrapper {
    position: relative;
    overflow: hidden;
}

.slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.slider .banner {
    flex: 0 0 100%;
    scroll-snap-align: start;
}

.banner {
    position: relative;
    padding: auto;
    background-size: cover;
    background-position: center;
    
    align-items: center;
    justify-content: center;
}

.banner-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.bg-fill {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.banner-layers {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.text-box {
    max-width: 80%;
    background: #40ABE5;
    padding: 20px;
    border-radius: 10px;
}

.text-box .text-inner {
    padding: 20px;
}

.text-box.dark {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.text-box h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.text-box p {
    font-size: 1.2rem;
}

/* Botón */
.button {
    display: inline-block;
    background-color: #4DB7B3;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 20px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.button.alert {
    background-color: #e67e22;
}

.button.alert:hover {
    background-color: #d35400;
}

.button:hover {
    background-color: #3a9e9a;
}

/* Slider navigation (puntos y flechas) - básico */
.slider-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.slider-nav .dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-nav .dot.active {
    background: #4DB7B3;
}

/* ----------------------------- */
/* SECCIÓN CULTURA               */
/* ----------------------------- */
.cultura-section {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: 77% 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.cultura-section .overlay {
    background: rgba(0,0,0,0.22);
}

.cultura-section .content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px;
}

.cultura-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* ----------------------------- */
/* TÍTULOS DE SECCIÓN            */
/* ----------------------------- */
.section-title-container {
    margin: 60px 0 30px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #2c2c2c;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title-center {
    text-align: center;
}

/* ----------------------------- */
/* PORTAFOLIO / PRODUCTOS        */
/* ----------------------------- */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.row-grid {
    margin: 0 -10px;
}

.col {
    padding: 0 10px;
    margin-bottom: 20px;
}

/* Grid responsivo */
.grid-col-1 {
    width: calc(50% - 20px);
}
.grid-col-1-2 {
    width: calc(50% - 20px);
}
.grid-col-1-2.large-3 {
    width: calc(25% - 20px);
}

.portfolio-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.portfolio-box:hover {
    transform: translateY(-5px);
}

.box-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.box-text {
    padding: 20px;
    text-align: center;
}

.portfolio-box-title {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.portfolio-box-category {
    font-size: 0.8rem;
    color: #777;
    text-transform: uppercase;
}

/* ----------------------------- */
/* SECCIÓN TIENDA                */
/* ----------------------------- */
.tienda-section {
    background: #f9f9f9;
    padding: 60px 20px;
}

.tienda-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.tienda-texto {
    flex: 1;
}

.tienda-texto h2 {
    color: #4DB7B3;
    margin-bottom: 20px;
}

.tienda-imagen {
    flex: 1;
}

.tienda-imagen img {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* ----------------------------- */
/* SECCIÓN CONTACTO              */
/* ----------------------------- */
.contacto-section {
    position: relative;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.contacto-section .overlay {
    background: rgba(0,0,0,0.63);
}

.contacto-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    width: 90%;
    background: rgba(0,0,0,0.5);
    padding: 40px;
    border-radius: 15px;
}

.contacto-content h3 {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.contacto-content h1 {
    font-size: 2rem;
    margin: 10px 0;
}

.contacto-content h4 {
    font-size: 1.2rem;
    margin-bottom: 30px;
    word-break: break-all;
}

/* Formulario */
.contacto-content form p {
    margin-bottom: 15px;
}

.contacto-content input,
.contacto-content textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-family: inherit;
}

.contacto-content input[type="submit"] {
    background: #4DB7B3;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    width: auto;
    padding: 10px 30px;
}

.contacto-content input[type="submit"]:hover {
    background: #3a9e9a;
}

/* ----------------------------- */
/* MAPA                          */
/* ----------------------------- */
.google-maps iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* ----------------------------- */
/* FOOTER                        */
/* ----------------------------- */
.footer-wrapper {
    background: #fff;
    border-top: 1px solid #eee;
    padding: 30px 20px 20px;
}

.absolute-footer {
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-nav a:hover {
    color: #4DB7B3;
}

.copyright-footer {
    font-size: 0.8rem;
    color: #777;
}

/* ----------------------------- */
/* RESPONSIVE                    */
/* ----------------------------- */
@media (max-width: 850px) {
    .nav {
        display: none;
    }
    .mobile-nav {
        display: block;
    }
    .header-inner {
        justify-content: space-between;
    }
    .grid-col-1,
    .grid-col-1-2,
    .grid-col-1-2.large-3 {
        width: calc(50% - 20px);
    }
    .tienda-grid {
        flex-direction: column;
    }
    .text-box {
        max-width: 95%;
    }
    .text-box h1 {
        font-size: 2rem;
    }
}

@media (max-width: 550px) {
    .grid-col-1,
    .grid-col-1-2,
    .grid-col-1-2.large-3 {
        width: 100%;
    }
    .contacto-content {
        padding: 20px;
    }
    .contacto-content h1 {
        font-size: 1.5rem;
    }
}