:root {
    --acero: #B0B0B0;
    --gris-oscuro: #2F2F2F;
    --vino: #7A1F2B;
    --vino-oscuro: #5A141D;
    --blanco: #FFFFFF;
}

* {
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    margin: 0;
    background-color: #E5E5E5;
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    background: url(img/IMG20251203130117.jpg) center/cover no-repeat;
}

.overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(47,47,47,0.75);
}

.hero-content {
    position: relative;
    color: white;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

.hero h1 {
    font-size: 4rem;
    letter-spacing: 4px;
}

.hero h2 {
    color: var(--acero);
    
}

.btn {
    background: var(--vino);
    padding: 12px 30px;
    color: white;
    text-decoration: none;
    border-radius: 30px;
}

/* FEATURES */
.features {
    display: flex;
    gap: 2rem;
    padding: 4rem 2rem;
    background: white;
}

.features-grid {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.feature {
    flex: 1;
    text-align: center;
}

.feature i {
    font-size: 3rem;
    color: var(--vino);
}

/* Responsive */
@media (max-width: 700px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}



/* SOBRE NOSOTROS */
.about-us {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 4rem 2rem;
    background-color: ##F2F2F2;
}

.about-text,
.about-image {
    flex: 1;
}

.about-text h2 {
    color: var(--vino);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.about-text p {
    color: var(--gris-oscuro);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-us {
        flex-direction: column;
        text-align: center;
    }
}


/* CLIENTES */
.clients {
    padding: 4rem 2rem;
    background: #F2F2F2;
}

.client {
    margin-bottom: 3rem;
}

.carousel {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel img {
    width: 300px;
    margin: 0 10px;
    cursor: pointer;
    border-radius: 10px;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--vino);
    color: white;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

.prev { left: 0; }
.next { right: 0; }

/* MODAL */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.modal img {
    max-width: 90%;
    max-height: 90%;
}

/* Catalogo */

/*

.catalogo {
  background: #f4f6f8;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.catalogo-contenido {
  background: white;
  max-width: 600px;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.catalogo-contenido h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #222;
}

.catalogo-contenido p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-descargar {
  display: inline-block;
  background: #007bff;
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
}

.btn-descargar:hover {
  background: #0056b3;
  transform: translateY(-3px);
} 
  
*/

.catalogos {
  padding: 70px 20px;
  background: #fafafa;
}

.catalogos-grid {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.catalogo-item {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 35px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.catalogo-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.icono-pdf {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #7A1F2B;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  letter-spacing: 1px;
}

.catalogo-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.catalogo-item p {
  font-size: 15px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.5;
}

.catalogo-item a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
  border-bottom: 2px solid #111;
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}

.catalogo-item a:hover {
  color: #555;
  border-color: #555;
}

/* Responsive */
@media (max-width: 700px) {
  .catalogos-grid {
    grid-template-columns: 1fr;
  }
}


/* CONTACTO */
.contact {
    background: var(--vino-oscuro);
    color: white;
    text-align: center;
    padding: 3rem;
}

.whatsapp-btn {
    background: #25D366;
    padding: 15px 35px;
    border-radius: 40px;
    color: white;
    text-decoration: none;
}

/* MAPA */
.map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

footer {
    background: var(--gris-oscuro);
    color: var(--acero);
    text-align: center;
    padding: 1rem;
}
