body {
    margin: 0;
    font-family: Arial, sans-serif;
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

body.categoria .about-text ul {
    text-align: justify;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.logo img {
    height: 70px;
}
.social-icons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-right: 50px;
}
.social-icons img {
    height: 35px;
    width: 35px;
}
.main-content {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 50px;
    padding: 20px;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.main-text {
    flex: 1 1 45%;
    text-align: left;
}
.main-text p {
    margin: 5px 0;
    font-size: clamp(1.5rem, 3vw, 4vw);
    line-height: 1.5;
}
.main-image {
    flex: 1 1 45%;
    text-align: center;
}
.main-image img {
    width: 80%;
    height: auto;
    object-fit: contain;
    display: block;
}



.banner-section {
    text-align: center;
    margin: 40px auto 20px auto;
    max-width: 1200px;
    background-color: #ffffff;
    padding: 40px 20px;
    border-radius: 8px;
}
.banner-section img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

/* === NUEVOS ESTILOS SOLO PARA index.html === */

/* Botón destacado “Ver y descargar catálogos” */
/* Botón CTA para catálogo */
.btn-download.cta-catalogo {
  background-color: #CB9305;
  color: #fff;
  font-weight: bold;
  font-size: 1.05rem;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
  margin-top: 12px;
  margin-right: 20px;
}

.btn-download.cta-catalogo:hover {
  background-color: #B8870C;
}
.catalog-download {
  margin-bottom: 60px; /* Ajusta este valor según el espacio deseado */
}
/* Contenedor del botón + imagen */
.catalog-flex {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Imagen junto al botón */
.catalog-img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.catalog-img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .catalog-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .catalog-img {
    margin-top: 12px;
  }
  .catalog-download {
    margin-bottom: 80px;
  }
}


/* Espacio superior para evitar que el header fijo tape el contenido */
.main-content {
  padding-top: 110px;
 
}

/* Estilos para bloque principal texto index */
.main-content.home-hero {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 80px 20px;
  box-sizing: border-box;
  min-height: 500px;
}

.hero-text {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  padding: 20px 30px;
}

.hero-text h1 {
  font-size: clamp(2.8rem, 4.2vw, 4rem);
  line-height: 1.2;
  margin-bottom: 20px;
  color: #CB9305;
  font-weight: 800;
}



.hero-text p {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem); /* tamaño mayor */
  color: #333;
  line-height: 1.6;
  margin-bottom: 16px;
}


.hero-img {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
}

/* Versión responsive */
@media (max-width: 768px) {
  .main-content.home-hero {
    flex-direction: column-reverse;
    padding: 40px 16px;
    min-height: auto;
  }

  .hero-text {
    text-align: center;
    padding: 0 10px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

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

  .hero-img img {
    max-width: 100%;
    max-height: 300px;
  }
}


/* Estilo optimizado para imagen principal en index.html */
.main-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.main-image img:hover {
  transform: scale(1.02); /* Efecto visual leve al pasar el mouse */
}
/*ESTILO PARA COLUMNAS INDEX*/
.columns-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 5vw;
  background-color: #ffffff;
  max-width: 1200px;
  margin: 40px auto 80px auto;
  gap: 40px;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.column {
  flex: 1 1 45%;
  min-width: 260px;
  max-width: 100%;
}

.column h2 {
  font-size: 1.6rem;
  color: #CB9305;
  margin-bottom: 14px;
  font-weight: bold;
}

.column p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 16px;
}

.column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.column li {
  margin-bottom: 10px;
}

.column a {
  color: #222;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.column a:hover {
  color: #CB9305;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .columns-section {
    flex-direction: column;
    padding: 30px 5vw 50px 5vw;
    gap: 24px;
  }

  .column {
    flex: 1 1 100%;
  }

  .column h2 {
    font-size: 1.4rem;
  }

  .column p {
    font-size: 0.98rem;
  }
}



/* === MEDIA QUERIES PARA RESPONSIVE INDEX(MÓVIL) === */

@media (max-width: 600px) {
  .main-content {
    padding-top: 90px;
  }

  .btn-download.cta-catalogo {
    font-size: 1rem;
    padding: 10px 20px;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 90px;
  }

  .main-text {
    text-align: center;
    margin-bottom: 20px;
  }

  .main-image img {
    max-width: 90%;
  }
}




/*======= CATÁLOGOS =======*/

.catalog-page h1 {
    font-size: 2rem;
    margin: 120px auto 24px auto;
    color: #222;
    text-align: center;
    padding: 0 1rem;
}

.intro-seo {
    margin: 1rem auto 2.5rem auto;
    max-width: 960px;
    padding: 0 1rem;
    text-align: center;
}

.intro-seo h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #B8870C;
}

.intro-seo p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin: 0 auto;
}

/* ====== ESTILOS PARA CATÁLOGOS (ACTUALIZADOS) ====== */

.pdf-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 40px auto 80px auto;
  width: 100%;
}

.pdf-item {
  flex: 1 1 280px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1.2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
}

.pdf-item:hover {
  transform: translateY(-4px);
}

.pdf-content {
  flex-grow: 1;
}

.pdf-item h2 {
  font-size: 1.3rem;
  margin-top: 0.5rem;
  margin-bottom: 0.6rem;
  color: #CB9305;
}

.pdf-item p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.pdf-thumbnail {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: 6px;
  border: 1px solid #ddd;
  transition: transform 0.2s ease;
}

.pdf-thumbnail:hover {
  transform: scale(1.03);
}

.pdf-actions {
  margin-top: auto;
  text-align: center;
}

.download-btn {
  display: inline-block;
  background-color: #CB9305;
  color: #fff;
  padding: 10px 18px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.download-btn:hover {
  background-color: #B8870C;
}

/* Responsive para catálogos */
@media (max-width: 768px) {
  .pdf-container {
    gap: 1.5rem;
  }

  .pdf-item {
    max-width: 90%;
  }
}



/*SECCION COLUMNAS INDEX*/
.columns-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 40px;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 20px auto 60px auto;
    gap: 20px;
    box-sizing: border-box;
}
.column {
    flex: 1 1 30%;
    min-width: 240px;
    max-width: 100%;
}
/* Footer estilizado */
footer {
    width: 100%;
    margin-top: auto;
    background: #222;
    color: #fff;
    padding: 30px 0 15px 0;
    text-align: center;
    font-size: 1rem;
    border-top: none;
}
footer a {
    color: #ffd700;
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.2s;
}
footer a:hover {
    color: #dddd;
    text-decoration: underline;
}
footer p {
    margin: 8px 0;
    line-height: 1.5;
}
footer div {
    max-width: 900px;
    margin: 0 auto;
}

footer .designer-credit {
  display: block;
  margin-top: 16px;
  color: #b8a05c;
  font-size: 0.96em;
  letter-spacing: 0.03em;
  text-align: right;
  font-style: italic;
  font-family: 'Segoe UI', Arial, sans-serif;
  opacity: 0.82;
}
footer .designer-credit a {
  color: #CB9305;
  font-weight: 600;
  text-decoration: underline dotted #CB9305 1.5px;
  transition: color 0.18s;
}
footer .designer-credit a:hover {
  color: #8e6903;
  text-decoration: underline solid #8e6903 1.5px;
}
@media (max-width: 650px) {
  footer .designer-credit {
    text-align: center;
    font-size: 0.92em;
    margin-top: 12px;
  }
}

/*pagina SOBRE NOSOTROS*/
.about-text {
    max-width: 800px;
    margin: 40px auto 32px auto;
    padding: 32px 24px;
    border-radius: 14px;
    color: #000000;
    text-align: center;
}
.about-text h2 {
    font-size: 2.4rem;
    color: #000000;
    margin-bottom: 18px;
    font-weight: bold;
    letter-spacing: 1px;
}
.about-text p {
    font-size: 1.25rem;
    color: #000000;
    line-height: 1.7;
    margin-bottom: 18px;
}
/*nuestros clientes*/
.nuestrosclientes {
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: 0px auto 0px auto;
    padding: 10px 0;
    align-items: center;
}
/* Galería animada  de logos */
.logo-gallery-container {
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: 10px auto 100px auto;
    padding: 20px 0;
    background-color: #fff;
    display: flex;
    align-items: center;
}
.logo-gallery-track {
    display: flex;
    gap: 10px;
    animation: scrollLogos 80s linear infinite;
}
.logo-gallery-track img {
    height: clamp(30px, 6vw, 80px);
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}
@keyframes scrollLogos {
    0% { transform: translateX(0);}
    100% { transform: translateX(-50%);}
}

/* ========== MENU DE NAVEGACION ========== */
.main-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    position: relative;
}
.main-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2vw;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}
.main-nav li {
    flex: 1 1 0;
    text-align: center;
}
.main-nav .nav-link {
    display: inline-block;
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: #111;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 4px;
    transition: background 0.2s, border 0.2s;
    font-size: 1.1rem;
}
.main-nav .nav-link:hover,
.main-nav .nav-link:focus {
    background: #cccaca;
}
.main-nav .nav-link.active {
    border: none;
    color: #CB9305;
    
    
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    margin-top: 8px;
    cursor: pointer;
}




/* ====== NOVEDADES/BLOG EN HOME ====== 
.blog-highlights {
    max-width: 1200px;
    margin: 60px auto 35px auto;
    padding: 34px 16px 24px 16px;
    background: #faf8f2;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(180, 150, 40, 0.03);
    text-align: center;
}
.blog-highlights h2 {
    color: #CB9305;
    font-size: 2.1rem;
    margin-bottom: 26px;
    font-weight: bold;
    letter-spacing: 0.5px;
}
.blog-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-bottom: 20px;
}
.blog-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(190, 160, 32, 0.06);
    overflow: hidden;
    max-width: 320px;
    min-width: 240px;
    flex: 1 1 270px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s;
}
.blog-card:hover {
    box-shadow: 0 4px 18px rgba(203, 147, 5, 0.11);
}
.blog-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-bottom: 1px solid #ffe6a0;
}
.blog-card-text {
    padding: 18px 14px 18px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.blog-card-text h3 {
    font-size: 1.18rem;
    color: #222;
    margin-bottom: 12px;
    font-weight: bold;
    text-align: left;
}
.blog-card-text p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 16px;
    text-align: left;
}
.blog-link {
    color: #CB9305;
    font-weight: bold;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
    text-align: left;
}
.blog-link:hover {
    color: #8e6903;
    text-decoration: underline;
}
.blog-more {
    margin-top: 12px;
}
.blog-link-more {
    display: inline-block;
    background: #CB9305;
    color: #fff;
    padding: 9px 25px;
    border-radius: 6px;
    margin-top: 6px;
    transition: background 0.2s;
}
.blog-link-more:hover {
    background: #a37806;
    color: #fff;
}
@media (max-width: 900px) {
    .blog-cards-container {
        flex-direction: column;
        gap: 22px;
    }
    .blog-card {
        max-width: 100%;
    }
}
*/
/*------------ESTILO PARA CONTACTO.HTML-----------*/
.contact-section {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    padding: 32px 18px 26px 18px;
    margin-bottom: 30px;
    max-width: 550px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.contact-section h2 {
    margin-top: 0;
    color: #B8870C;
    font-weight: bold;
    font-size: 1.7rem;
    letter-spacing: 0.5px;
}
.contact-section p {
    color: #444;
    font-size: 1.06rem;
}
.contact-section label {
    display: block;
    margin: 16px 0 5px 0;
    font-weight: 600;
    color: #444;
}
.contact-section input,
.contact-section textarea {
    width: 100%;
    border: 1px solid #E4C98E;
    border-radius: 6px;
    padding: 8px;
    font-size: 1rem;
    margin-bottom: 12px;
    background: #faf8f2;
    transition: border 0.18s;
    box-sizing: border-box;
}
.contact-section input:focus,
.contact-section textarea:focus {
    border: 1.5px solid #CB9305;
    outline: none;
}
.contact-section button[type="submit"] {
    background: #CB9305;
    color: #fff;
    border: none;
    padding: 10px 34px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 6px;
    transition: background .18s;
    letter-spacing: 0.5px;
}
.contact-section button[type="submit"]:hover {
    background: #B8870C;
}
.contact-section #formMessage {
    margin-top: 12px;
    color: #D69E1D;
    font-size: 1rem;
}

/* ==== ESTILO SIMPLE PARA UBICACIÓN ==== */
.location-section {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
    padding: 24px 18px 18px 18px;
    margin-bottom: 30px;
    max-width: 550px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.location-section h3 {
    color: #B8870C;
    margin-top: 0;
    font-weight: bold;
    font-size: 1.25rem;
}
.location-section p {
    color: #444;
    font-size: 1.05rem;
    margin: 7px 0;
}
.location-section a {
    color: #B8870C;
    text-decoration: none;
    transition: color .15s;
}
.location-section a:hover {
    text-decoration: underline;
    color: #8e6903;
}

/* ========= NUEVO ESTILO SECCIÓN NOSOTROS ========= */

.about-text {
  max-width: 860px;
  margin: 60px auto 40px auto;
  padding: 24px 20px;
  border-radius: 14px;
  color: #222;
  background-color: #fff;
  text-align: center;
}

.about-text h2 {
  font-size: 2rem;
  color: #CB9305;
  margin-top: 42px;
  font-weight: bold;
  text-align: center;
}

.about-text p {
  text-align: left;
  font-size: 1.2rem;
  color: #333;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 18px auto;
}

.image-team {
  max-width: 720px;
  margin: 30px auto;
  text-align: center;
}
.image-team img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.cta-container {
  margin-top: 40px;
  text-align: center;
}

.btn-download.cta-nosotros {
  background-color: #CB9305;
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background-color 0.25s;
  display: inline-block;
}
.btn-download.cta-nosotros:hover {
  background-color: #B8870C;
}



/* ========== RESPONSIVE MOVIL ========== */
@media (max-width: 768px) {
  header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
    transition: all 0.3s ease;
  }
  .logo img {
    height: 50px;
  }
  .social-icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 12px;
}

  .social-icons img {
    height: 30px;
    width: 30px;
  }
  .main-content {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px 8px 0 8px;
  }
  .main-text p {
    font-size: 1.2rem;
    margin: 3px 0;
    line-height: 1.25;
  }
  .main-image img {
    max-width: 90%;
    max-height: 180px;
    margin-top: 10px;
  }
  .banner-section {
    margin: 18px auto 8px auto;
    padding: 16px 8px;
  }
  .banner-section img {
    max-height: 130px;
  }
  .catalog-download {
    flex-direction: column;
    text-align: center;
    padding: 20px 10px;
    gap: 16px;
    margin: 10px auto 35px auto;
  }
  .catalog-info h2 {
    font-size: 1.25rem;
    margin-bottom: 6px;
  }
  .catalog-info p {
    font-size: 0.97rem;
    margin-bottom: 10px;
  }
  .catalog-icon img {
    height: 46px;
  }
  .nuestrosclientes {
    padding: 3px 0 3px 0;
    margin-bottom: 0;
  }
  .logo-gallery-container {
    margin: 4px auto 32px auto;
    padding: 10px 0;
  }
  .logo-gallery-track img {
    height: 38px;
  }
  .columns-section {
    flex-direction: column;
    gap: 8px;
    padding: 10px 4vw 8px 4vw;
    margin: 8px auto 18px auto;
  }
  .column {
    margin-bottom: 4px;
  }
  footer {
    padding: 16px 0 8px 0;
    font-size: 0.97rem;
  }
  .main-nav {
    width: 100%;
    position: relative;
    align-items: stretch;
    z-index: 2000;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 8px;
    background: #fff;
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 2000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    display: none;
    border-bottom: 1px solid #ececec;
  }
  .main-nav ul.open {
    display: flex;
  }
  .main-nav li {
    width: 100%;
  }
  .main-nav .nav-link {
    display: block;
    width: 100%;
    padding: 14px 0;
    text-align: center;
    font-size: 1.2rem;
    border-bottom: 1px solid #eee;
    background: transparent;
    box-sizing: border-box;
    border-radius: 0;
  }
  .main-nav .nav-link:last-child {
    border-bottom: none;
  }
  .nav-toggle {
    display: block;
    z-index: 2100;
    background: none;
    border: none;
    font-size: 2rem;
    margin-top: 8px;
    cursor: pointer;
  }
/* ==== ESTILO SIMPLE PARA FORMULARIO DE CONTACTO Y UBICACIÓN ==== */
.contact-section {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    padding: 32px 18px 26px 18px;
    margin-bottom: 30px;
    max-width: 550px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.contact-section h2 {
    margin-top: 0;
    color: #B8870C;
    font-weight: bold;
    font-size: 1.7rem;
    letter-spacing: 0.5px;
}
.contact-section p {
    color: #444;
    font-size: 1.06rem;
}
.contact-section label {
    display: block;
    margin: 16px 0 5px 0;
    font-weight: 600;
    color: #444;
}
.contact-section input,
.contact-section textarea {
    width: 100%;
    border: 1px solid #E4C98E;
    border-radius: 6px;
    padding: 8px;
    font-size: 1rem;
    margin-bottom: 12px;
    background: #faf8f2;
    transition: border 0.18s;
    box-sizing: border-box;
}
.contact-section input:focus,
.contact-section textarea:focus {
    border: 1.5px solid #CB9305;
    outline: none;
}
.contact-section button[type="submit"] {
    background: #CB9305;
    color: #fff;
    border: none;
    padding: 10px 34px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 6px;
    transition: background .18s;
    letter-spacing: 0.5px;
}
.contact-section button[type="submit"]:hover {
    background: #B8870C;
}
.contact-section #formMessage {
    margin-top: 12px;
    color: #D69E1D;
    font-size: 1rem;
}

/* ==== ESTILO SIMPLE PARA UBICACIÓN ==== */
.location-section {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
    padding: 24px 18px 18px 18px;
    margin-bottom: 30px;
    max-width: 550px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.location-section h3 {
    color: #B8870C;
    margin-top: 0;
    font-weight: bold;
    font-size: 1.25rem;
}
.location-section p {
    color: #444;
    font-size: 1.05rem;
    margin: 7px 0;
}
.location-section a {
    color: #B8870C;
    text-decoration: none;
    transition: color .15s;
}
.location-section a:hover {
    text-decoration: underline;
    color: #8e6903;
}

/* ==== RESPONSIVE SOLO PARA CONTACTO ==== */
@media (max-width: 600px) {
    .contact-section,
    .location-section {
        box-sizing: border-box;
        padding: 14px 4vw 12px 4vw;
        max-width: 100vw;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .contact-section h2,
    .location-section h3 {
        font-size: 1.1rem;
    }
}



}

/* ===== Estilos unificados desde trabajos.html ===== */
/* --- Rediseño visual para trabajos --- */
    .hero-trabajos {
      background: none;
      min-height: 220px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 60px 10px 34px 10px;
      margin-bottom: 22px;
      font-family:Arial, sans-serif;
    }
    .hero-trabajos h1 {
      font-size: 2.4em;
      color: #0a0a0a;
      margin: 0 0 12px 0;
      font-weight: 800;
      letter-spacing: .03em;
    }
    .hero-trabajos p {
      font-size: 1.18em;
      color: #444;
      max-width: 480px;
      margin: 0 auto 8px auto;
      line-height: 1.5;
      font-weight: 500;
    }

    .sectores-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 38px;
      max-width: 1100px;
      margin: 0 auto 60px auto;
      padding: 0 12px;
    }
    .tarjeta-sector {
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 2px 18px #2222, 0 1px 0 #f6d067 inset;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 30px 0 20px 0;
      gap: 18px;
      transition: transform .22s, box-shadow .21s;
      position: relative;
      min-height: 330px;
    }
    .tarjeta-sector:hover {
      transform: translateY(-4px) scale(1.025);
      box-shadow: 0 8px 34px #2223;
    }
    
    .tarjeta-sector img.icono-sector {
    width: auto;
    height: 100px;
    object-fit: contain;
    margin-top: 12px;
}
    

    .tarjeta-sector h2 {
      font-size: 1.16em;
      margin: 20px 0 6px 0;
      font-weight: 700;
      color: #CB9305;
      text-align: center;
      letter-spacing: .04em;
    }
    .tarjeta-sector p {
      color: #222;
      font-size: 1em;
      margin: 0 18px 10px 18px;
      text-align: center;
      min-height: 50px;
    }
    .tarjeta-sector button {
      background: #CB9305;
      color: #fff;
      border: none;
      padding: 10px 26px;
      border-radius: 7px;
      font-size: 1em;
      margin-top: 6px;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 1px 8px #CB930522;
      transition: background .16s;
      letter-spacing: .02em;
      text-transform: capitalize;
    }
    .tarjeta-sector button:hover {
      background: #B8870C;
    }
    


    /* Galería popup */
    .popup {
      display: none;
      position: fixed;
      z-index: 199;
      left: 0; top: 0;
      width: 100vw; height: 100vh;
      background: rgba(20,16,0,0.16);
      justify-content: center;
      align-items: center;
    }
    .popup-content {
      background: #fff;
      border-radius: 14px;
      padding: 2em 1em 1em 1em;
      max-width: 96vw;
      max-height: 93vh;
      box-shadow: 0 12px 46px #2224;
      display: flex;
      flex-direction: column;
      align-items: center;
      overflow: auto;
      border: 2.2px solid #f6d067;
      position: relative;
      min-width: 260px;
      min-height: 180px;
    }
    .galeria {
      display: flex;
      flex-wrap: wrap;
      gap: 28px;
      justify-content: center;
      align-items: center;
      width: 100%;
      max-width: 1200px;
      margin: 0;
      padding: 0;
    }
    .galeria img {
      width: 100%;
      height: auto;
      max-width: 210px;
      object-fit: cover;
      border-radius: 11px;
      background: #eee;
      box-shadow: 0 1px 10px #2222;
      margin: 0;
      cursor: pointer;
      border: 2px solid #ffe;
      filter: grayscale(0);
      transition: filter 0.13s, box-shadow 0.17s;
    }
    .galeria img:hover {
      filter: grayscale(65%);
      box-shadow: 0 8px 28px #1113;
      border-color: #CB9305;
    }
    .btn-cerrar {
      position: absolute;
      top: 12px;
      right: 24px;
      font-size: 1.3em;
      color: #CB9305;
      background: none;
      border: none;
      cursor: pointer;
      font-weight: bold;
      transition: color .18s;
      z-index: 10;
      line-height: 1;
    }
    .btn-cerrar:hover {
      font-size: 1.3em;
      color: #CB9305;
    }

    /* LIGHTBOX DENTRO DE POPUP */
    .popup-lightbox-bg {
      display: none;
      position: fixed;
      z-index: 300;
      top: 0; left: 0; width: 100vw; height: 100vh;
      background: rgba(30,24,10,0.85);
      justify-content: center;
      align-items: center;
      align-content: center;
      transition: background 0.23s;
    }
    .popup-lightbox-bg.active {
      display: flex;
    }
    .popup-lightbox-close {
      position: absolute;
      top: 30px;
      right: 48px;
      font-size: 2em;
      color: #fff;
      background: none;
      border: none;
      cursor: pointer;
      font-weight: bold;
      z-index: 2;
      line-height: 1;
      transition: color .14s;
    }
    .popup-lightbox-close:hover {
      color: #CB9305;
    }
    #popup-lightbox-img {
      max-width: 88vw;
      max-height: 82vh;
      border-radius: 12px;
      box-shadow: 0 8px 44px #000b;
      background: #fff;
      border: 7px solid #fff;
      margin: 0 auto;
      display: block;
      animation: popupfadein .24s;
    }
    @keyframes popupfadein {
      0% { opacity: 0; transform: scale(0.94);}
      100% { opacity: 1; transform: scale(1);}
    }
    @media (max-width: 900px) {
      .sectores-grid { grid-template-columns: 1fr 1fr; }
      .galeria img { width: 120px; height: 120px;}
      .popup-content { padding: 0.9em 0.1em; }
    }
    @media (max-width: 600px) {
      .sectores-grid { grid-template-columns: 1fr; gap: 18px;}
      .tarjeta-sector { min-height: 230px;}
      .galeria img { width: 70px; height: 70px;}
      .popup-lightbox-close { font-size: 1.3em; top:14px; right:18px;}
      #popup-lightbox-img { max-width: 98vw; max-height: 60vh; }
    }
    /* CTA flotante */
    .btn-sticky {
      position: fixed;
      bottom: 30px; right: 30px;
      background: #CB9305;
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 16px 28px;
      font-size: 1.1em;
      font-weight: 700;
      box-shadow: 0 2px 16px #CB930555;
      z-index: 250;
      cursor: pointer;
      transition: background .16s;
      letter-spacing: .04em;
      display: none;
    }
    .btn-sticky.visible { display: block;}
    .btn-sticky:hover { background: #B8870C;}

 	.palabrasclave{
  		color: #b1b1b1;
    }