* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  font-family: 'Raleway', sans-serif;
  
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* carrusel ocupa todo */
.carousel {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* contenedor de imágenes */
.slides {
    display: flex;
   /* width: 600%;*/
    height: 100%;
    transition: transform 1s ease;
}

/* imágenes */
.slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

/* overlay encima */
.overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    color: white;
}
.overlay h1 {
    font-size: 40px;
    letter-spacing: 5px;
     font-weight: bold;
}

.overlay p {
    font-size: 25px;
    font-weight: 400;
     font-weight: bold;
}

.overlay {
    pointer-events: none;
}

/* BOTONES */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    font-size: 30px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 3;
    border-radius: 50%;
}

/* izquierda */
.prev {
    left: 20px;
}

/* derecha */
.next {
    right: 20px;
}

/* hover bonito */
.prev:hover, .next:hover {
    background: rgba(0,0,0,0.7);
}

.carousel::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    pointer-events: none;
}

.intro {
    text-align: center;
    padding: 60px 20px;
    background: #f5f5f5;
}

.intro p {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    max-width: 90%;
    margin: auto;
    color: #040202;
    line-height: 1.6; /* 👈 separa renglones */
    text-align: justify; /* opcional */
}

.contacto-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.menu {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 60px 1px 10px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px); /* efecto premium */
    z-index: 1000;
}

.logo {
    font-weight: bold;
    letter-spacing: 2px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 70px;
    
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.menu a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    position: relative;
}

/* efecto elegante al pasar el mouse */
.menu a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: black;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.menu a:hover::after {
    width: 100%;
}

/* BOTÓN MENÚ CELULAR */
.menu-toggle {
    display: none;
    font-size: 25px;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .menu ul {
        position: absolute;
        top: 70px;
        right: 0;
        background: white;
        flex-direction: column;
        width: 200px;
        display: none;
        padding: 20px;
    }

    .menu ul.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}


.galeria {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columnas */
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto;
}

/* FILAS */
.fila {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

/* ITEMS */
.item {
    flex: 1;
    text-align: center;
}

/* IMÁGENES */
.item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.galeria img {
    cursor: pointer;
}
/* TEXTO */
.item p {
    margin-top: 10px;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.modal img {
    max-width:90%;
    max-height: 90%;
    border-radius: 10px;
}
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 22px;
    padding: 8px;
    border-radius: 50%;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
}

.instagram {
    position: fixed;
    bottom: 70px; /* 👈 arriba del WhatsApp */
    right: 20px;
    background: #E1306C;
    color: white;
    font-size: 20px;
    padding: 8px;
    border-radius: 50%;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
}

.servicios {
    padding: 60px 20px;
    text-align: center;
}

.servicios h2 {
    margin-bottom: 40px;
    font-size: 30px;
}

.cards {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.card {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
}

.info-contacto {
    background: black;
    color: white;
    text-align: center;
    padding: 40px 20px;
    
}

.info-contacto h2 {
    font-size: 30px;
    margin-bottom: 20px;
    
}

.info-contacto p {
    margin: 10px 0;
}

@media (max-width: 768px) {
    .contacto-grid {
        grid-template-columns: 1fr;
    }
}

.btn-wsp {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.contacto-pagina {
    text-align: center;
    padding: 100px 20px;
}

.contacto-pagina h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.contacto-pagina form {
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contacto-pagina input,
.contacto-pagina textarea {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.contacto-pagina button {
    background: black;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
}
/* ===== CONTACTO NUEVO ===== */
.contacto {
    background: black;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.contacto h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.contacto-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contacto-grid div {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
}

.contacto a {
    color: #c59d5f;
    text-decoration: none;
}

.contacto a:hover {
    text-decoration: underline;
}
.contacto-grid div {
    border-right: 1px solid rgba(255,255,255,0.2);
}

.contacto-grid div:last-child {
    border-right: none;
}
.direccion {
    white-space: nowrap;
}


/* ===== MENÚ DESPLEGABLE ===== */

.dropdown {
    position: relative;
}

/* Submenú oculto */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 180px;
    z-index: 1000;
}

/* Cada opción */
.submenu li {
    width: 100%;
}

/* Links */
.submenu li a {
    display: block;
    padding: 10px;
    color: black;
    text-decoration: none;
}

/* Hover bonito */
.submenu li a:hover {
    background: #f0f0f0;
}

/* Mostrar */
.dropdown:hover .submenu {
    display: block;
}

.submenu li {
    display: block;
}

/* OCULTAR submenú por defecto */
.submenu {
    display: none !important;  /* fuerza que no se vea */
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    flex-direction: column;   /* 👈 clave si usas flex arriba */
    min-width: 180px;
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 1000;
}

/* Mostrar solo al pasar el mouse */
.dropdown:hover .submenu {
    display: block !important;
}

/* Evitar que herede el horizontal */
.submenu li {
    display: block;
}



/* ===== CARRUSEL TERRACOTA ===== */

.carousel-terra {
    position: relative;   
    width: 100%;
    height: 600px;        /* altura fija */
    overflow: hidden;
}

/* contenedor de imágenes */
.slides-terra {
    display: flex;
   /* width: 600%;*/
    height: 100%;
    transition: transform 1s ease;
}

/* imágenes */
.slides-terra img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

/* overlay encima */
.overlay-terra {
    position: absolute;  
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
   
    z-index: 2;           /*  para que esté encima */
    pointer-events: none;
}
.overlay-terra h1 {
    font-size: 70px;
    letter-spacing: 6px;
    font-family: 'Montserrat', sans-serif;
     font-weight: 600;
      color: #F5F1E8;
      text-shadow: 0px 3px 8px rgba(0, 0, 0, 0.45);
}

.overlay-terra {
    pointer-events: none;
}


/* BOTONES TERRACOTA */
.prev-terra, .next-terra {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    font-size: 30px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 3;
    border-radius: 50%;
}

/* izquierda */
.prev-terra {
    left: 20px;
}

/* derecha */
.next-terra {
    right: 20px;
}

/* hover bonito */
.prev-terra:hover, .next-terra:hover {
    background: rgba(0,0,0,0.7);
}

.carousel-terra::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    pointer-events: none;
}

.info-terra {
     padding: 0px 0px;
    text-align: center;
}

.info-terra h2 {
   font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 500;

    color: #2b2b2b;
    margin: 0 0 20px 0;

    letter-spacing: 0.5px;
}

.info-terra a {
    display: inline-block;
    padding: 12px 28px;

    background-color: #C9A227; /* dorado elegante */
    color: white;
    text-decoration: none;

    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;

    transition: all 0.3s ease;
}

.info-terra a:hover {
    background-color: #a8841c;
}

.hero-terra {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.hero-terra .carousel-terra {
    position: absolute;
    width: 100%;
    height: 100%;
}

.item img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.item p {
    margin-top: 10px;
    font-size: 15px;
    letter-spacing: 1px;
}

.item {
    width: 100%;
}
@media (max-width: 768px) {
    .galeria {
        grid-template-columns: repeat(2, 1fr);
    }
}

.titulo-galeria {
     text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 600;

    letter-spacing: 1px;
    line-height: 1.2;

    margin: 10px 0 5px 0;
    color: #2b2b2b;

    text-transform: capitalize; 
}

.titulo-galeria::after {
    content: "";
    display: block;
    width: 100px;
    height: 2px;
    background: #C9A227; /* dorado elegante */
    margin: 8px auto 0;
}

/* ===== CARRUSEL ANTIGUA ===== */

.carousel-antigua {
    position: relative;   
    width: 100%;
    height: 600px;        /* altura fija */
    overflow: hidden;
}

/* contenedor de imágenes */
.slides-antigua {
    display: flex;
   /* width: 600%;*/
    height: 100%;
    transition: transform 1s ease;
}

/* imágenes */
.slides-antigua img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

/* overlay encima */
.overlay-antigua {
    position: absolute;   /* 👈 CLAVE */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: white;

    z-index: 2;           /* 👈 para que esté encima */
    pointer-events: none;
}
.overlay-antigua h1 {
    font-size: 70px;
    letter-spacing: 6px;
    font-family: 'Montserrat', sans-serif;
     font-weight: 600;
      color: #F5F1E8;
      text-shadow: 0px 3px 8px rgba(0, 0, 0, 0.45);
}

.overlay-antigua {
    pointer-events: none;
}


/* BOTONES ANTIGUA */
.prev-antigua, .next-antigua {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    font-size: 30px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 3;
    border-radius: 50%;
}

/* izquierda */
.prev-antigua {
    left: 20px;
}

/* derecha */
.next-antigua {
    right: 20px;
}

/* hover bonito */
.prev-antigua:hover, .next-antigua:hover {
    background: rgba(0,0,0,0.7);
}

.carousel-antigua::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    pointer-events: none;
}

.info-antigua {
    padding: 0px 0px;
    text-align: center;
}

.info-antigua h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 500;

    color: #2b2b2b;
    margin: 0 0 20px 0;

    letter-spacing: 0.5px;
}

.info-antigua a {
    display: inline-block;
    padding: 12px 28px;

    background-color: #C9A227; /* dorado elegante */
    color: white;
    text-decoration: none;

    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;

    transition: all 0.3s ease;
}



.hero-antigua {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.hero-antigua .carousel-antigua {
    position: absolute;
    width: 100%;
    height: 100%;
}

.item img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.item p {
    margin-top: 10px;
    font-size: 15px;
    letter-spacing: 1px;
}

.item {
    width: 100%;
}
@media (max-width: 768px) {
    .galeria {
        grid-template-columns: repeat(2, 1fr);
    }
}

.titulo-galeria {
 text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 600;

    letter-spacing: 1px;
    line-height: 1.2;

    margin: 10px 0 5px 0;
    color: #2b2b2b;

    text-transform: capitalize; 
}

.titulo-galeria::after {
    content: "";
    display: block;
    width: 100px;
    height: 2px;
    background: #C9A227; /* dorado elegante */
    margin: 8px auto 0;
}

/* ===== CARRUSEL CERAMICO ===== */

.carousel-ceramico {
    position: relative;   
    width: 100%;
    height: 600px;        /* altura fija */
    overflow: hidden;
}

/* contenedor de imágenes */
.slides-ceramico {
    display: flex;
   /* width: 600%;*/
    height: 100%;
    transition: transform 1s ease;
}

/* imágenes */
.slides-ceramico img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

/* overlay encima */
.overlay-ceramico {
    position: absolute;   
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: white;

    z-index: 2;           /*  para que esté encima */
    pointer-events: none;
}
.overlay-ceramico h1 {
    font-size: 70px;
    letter-spacing: 6px;
    font-family: 'Montserrat', sans-serif;
     font-weight: 600;
      color: #F5F1E8;
      text-shadow: 0px 3px 8px rgba(0, 0, 0, 0.45);
}

.overlay-ceramico {
    pointer-events: none;
}


/* BOTONES ANTIGUA */
.prev-ceramico, .next-ceramico {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    font-size: 30px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 3;
    border-radius: 50%;
}

/* izquierda */
.prev-ceramico {
    left: 20px;
}

/* derecha */
.next-ceramico {
    right: 20px;
}

/* hover bonito */
.prev-ceramico:hover, .next-ceramico:hover {
    background: rgba(0,0,0,0.7);
}

.carousel-ceramico::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    pointer-events: none;
}

.info-ceramico {
    padding: 0px 0px;
    text-align: center;
}

.info-ceramico h2 {
     font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 500;

    color: #2b2b2b;
    margin: 0 0 20px 0;

    letter-spacing: 0.5px;
}

.info-ceramico a {
    display: inline-block;
    padding: 12px 28px;

    background-color: #C9A227; /* dorado elegante */
    color: white;
    text-decoration: none;

    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;

    transition: all 0.3s ease;
}

.hero-ceramico {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.hero-ceramico .carousel-ceramico {
    position: absolute;
    width: 100%;
    height: 100%;
}

.item img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.item p {
    margin-top: 10px;
    font-size: 15px;
    letter-spacing: 1px;
}

.item {
    width: 100%;
}
@media (max-width: 768px) {
    .galeria {
        grid-template-columns: repeat(2, 1fr);
    }
}

.titulo-galeria {
 text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 600;

    letter-spacing: 1px;
    line-height: 1.2;

    margin: 10px 0 5px 0;
    color: #2b2b2b;

    text-transform: capitalize; 
}

.titulo-galeria::after {
    content: "";
    display: block;
    width: 100px;
    height: 2px;
    background: #C9A227; /* dorado elegante */
    margin: 8px auto 0;
}