/* SYP Fence - CSS unificado refactorizado */
:root{--color-primary:#09263c;--color-secondary:#f4f4f4;--color-accent:#1a1a1a;--color-text:#333;--color-white:#fff;--font-heading:'DM Serif Display',serif;--font-body:'Work Sans','Segoe UI',sans-serif;}
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Estilos base */
body {
  font-family: 'Work Sans', sans-serif;
  color: #fff;
}

/* Navbar */
.navbar {
  background-color: #09263c;
  padding: 1rem 0;
}


.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  height: 60px;
  border-radius: 50%;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* Links */
.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
}

.nav-links a:hover {
  text-decoration: underline;
}
/* Responsive */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    z-index: 1001;
    position: relative;
  }

  .nav-links {
    flex-direction: column;
    background-color: #09263c;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    display: none;
    z-index: 1000;
  }

  .nav-links.show {
    display: flex;
  }
}
@media (min-width: 769px) {
  .nav-links {
    display: flex !important;
    position: static;
    padding: 0;
  }
}






  
  /* Hero Section */
  .hero {
    background: url('https://alliancefencesupply.com/cdn/shop/files/Header_Image.jpg?v=1724454523&width=2000') no-repeat center center/cover;
    height: 65vh;
    position: relative;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: left;
  }
  
  .hero-content {
    max-width: 600px;
    text-align: left;
    padding: 2rem 3rem;
    margin-left: 5%;
  }
  
  .hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
  }
  
  .hero p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #fff;
  }
  
  .btn {
    background-color: #b1d4e0;
    color: #000;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    display: inline-block;
  }
  
  .btn:hover {
    background-color: #89bcd2;
  }
  @media (max-width: 768px) {
    .hero {
      height: auto;
      padding: 3rem 0;
    }
  
    .hero-overlay {
      position: static;
      background-color: rgba(0, 0, 0, 0.6);
      display: block;
    }
  
    .hero-content {
      margin: 0;
      padding: 2rem 1.5rem;
      text-align: center;
      max-width: 100%;
    }
  
    .hero h1 {
      font-size: 2rem;
    }
  
    .hero p {
      font-size: 1rem;
    }
  
    .btn {
      font-size: 1rem;
      padding: 0.6rem 1.5rem;
    }
  }
  
  

  /* Sección de galería */
.gallery {
  background-color: #f5f5f5;
  padding: 6rem 2rem;
}

/* Grid adaptable */
.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Estilos de tarjeta */
.card {
  background-color: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  animation: fadeInUp 0.6s ease forwards;
}

.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

/* Imagen dentro de la card */
.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* Contenido textual */
.card-content {
  padding: 1.8rem 1.5rem;
  background-color: #fff;
}

.card-content h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #163f5f;
  margin-bottom: 0.4rem;
  transition: color 0.3s ease;
}

.card-content p {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

/* Animación al cargar */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive text sizing (opcional) */
@media (max-width: 600px) {
  .card-content h3 {
    font-size: 1.3rem;
  }

  .card-content p {
    font-size: 0.95rem;
  }

  .card img {
    height: 220px;
  }
}

  


  /* CSS */
.footer {
  background-color: #09263c;
  color: #c4c4c4;
  font-family: 'Segoe UI', sans-serif;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-col {
  flex: 1 1 200px;
}

.logo-col img {
  width: 180px;
  margin-bottom: 15px;
  border-radius: 50%;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  color: #cccccc;
}

.footer-col ul li a {
  text-decoration: none;
  color: #cccccc;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #E3C07B;
}

.social-links a {
  color: #ffffff;
  margin-right: 10px;
  font-size: 18px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #E3C07B;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input[type="email"] {
  padding: 10px;
  border: none;
  border-radius: 4px;
  background-color: #222;
  color: white;
}

.newsletter-form button {
  padding: 10px;
  background-color: white;
  color: #09263c;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.newsletter-form button:hover {
  background-color: #d6ad63;
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #999;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    width: 100%;
  }

  .newsletter-form {
    align-items: center;
  }
}

/* FontAwesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');





/* WhatsApp Chatbot Estilo */
.whatsapp-chatbot {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  font-family: 'Segoe UI', sans-serif;
}

/* Botón principal flotante */
.whatsapp-toggle {
  background-color: #25D366;
  color: white;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: background 0.3s;
}

.whatsapp-toggle:hover {
  background-color: #1ebc59;
}

/* Ventana tipo chatbot */
.chatbot-window {
  display: none;
  flex-direction: column;
  width: 270px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: absolute;
  bottom: 80px;
  right: 0;
  overflow: hidden;
}

/* Encabezado tipo WhatsApp */
.chatbot-header {
  background-color: #20075e;
  color: white;
  padding: 12px 15px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}

/* Botones del menú */
.chatbot-options {
  display: flex;
  flex-direction: column;
  padding: 10px;
  background-color: #f4f4f4;
}

.chatbot-options button {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 8px;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s;
}

.chatbot-options button:hover {
  background-color: #e0f7e9;
}

.chat-hint {
  position: absolute;
  right: 70px;
  bottom: 35px;
  background-color: #ffffff; /* Fondo blanco */
  color: #08075e; /* Azul oscuro de WhatsApp */
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  border: 1px solid #dcdcdc;
}

/* Triángulo estilo globo */
.chat-hint::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 10px solid #ffffff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.chat-hint {
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/*carrusel*/
.auto-carousel {
  background-color: #f9f9f9;
  padding: 3rem 1rem;
  text-align: center;
}

.carousel-title {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: #09263c;
  margin-bottom: 2rem;
}

.carousel-wrapper {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.carousel-track img {
  min-width: 100%;
  height: 350px;
  object-fit: contain; /* antes era cover */
  background-color: #e0e0e0; /* para que el fondo no se vea vacío */
  border-radius: 10px;
}


/* Botones de navegación */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(9, 38, 60, 0.8);
  color: #fff;
  border: none;
  padding: 0.6rem 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 5px;
  z-index: 10;
}

.carousel-btn:hover {
  background-color: rgba(9, 38, 60, 1);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-title {
    font-size: 1.5rem;
  }

  .carousel-track img {
    height: 220px;
  }

  .carousel-btn {
    font-size: 1.2rem;
    padding: 0.4rem 0.8rem;
  }
}

/* --- Productos --- */
 
 :root {
    --color-primary: #003366;
    --color-secondary: #f4f4f4;
    --color-accent: #1a1a1a;
    --color-text: #333;
    --color-white: #ffffff;
    --font-heading: 'Segoe UI', sans-serif;
    --font-body: 'Segoe UI', sans-serif;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: var(--font-body);
    background-color: var(--color-secondary);
    color: var(--color-text);
    line-height: 1.6;
    scroll-behavior: smooth;
  }
 
 /* HERO SECTION */
 .hero {
    height: 38vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .hero-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }
  
  .hero-content {
    text-align: center;
    color: var(--color-white);
    max-width: 800px;
    animation: fadeInUp 1.2s ease-out forwards;
  }
  
  .hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  .hero-content p {
    font-size: 1.4rem;
    color: #ddd;
  }
  

  .vinyl-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .vinyl-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
  }
  
  .vinyl-image {
    flex: 1 1 40%;
  }
  
  .vinyl-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
  }
  
  .vinyl-text {
    flex: 1 1 50%;
    color: #333;
  }
  
  .vinyl-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .vinyl-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
  }
  .proveedores-vinilo {
    background-color: #f6f6f6;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .contenedor-vinilo {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
  }
  
  .texto-vinilo {
    flex: 1 1 50%;
    color: #333;
  }
  
  .texto-vinilo .etiqueta {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 10px;
  }
  
  .texto-vinilo h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .texto-vinilo p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
  }
  
  .imagen-vinilo {
    flex: 1 1 40%;
  }
  
  .imagen-vinilo img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
  }

  .categorias-productos {
    background-color: #f5f5f5;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .titulo-categorias {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
  }
  
  .grid-categorias {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .card-categoria {
    background-color: #fff;
    border-radius: 10px;
    width: 200px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.2s ease;
  }
  
  .card-categoria:hover {
    transform: translateY(-5px);
  }
  
  .card-categoria img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  
  .card-categoria p {
    padding: 15px;
    font-size: 1rem;
    color: #222;
    font-weight: 500;
  }
  


  /*navbar*/
  /* Navbar */
.navbar {
    background-color: #09263c;
    padding: 1rem 0;
  }
  
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  
  .logo {
    height: 60px;
    border-radius: 50%;
  }
  .nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
  }
  
  /* Links */
  .nav-links {
    display: flex;
    gap: 1.8rem;
    list-style: none;
  }
  
  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
  }
  
  .nav-links a:hover {
    text-decoration: underline;
  }
  /* Responsive */
  @media (max-width: 768px) {
    .nav-toggle {
      display: block;
      z-index: 1001;
      position: relative;
    }
  
    .nav-links {
      flex-direction: column;
      background-color: #09263c;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      padding: 1rem;
      display: none;
      z-index: 1000;
    }
  
    .nav-links.show {
      display: flex;
    }
  }
  @media (min-width: 769px) {
    .nav-links {
      display: flex !important;
      position: static;
      padding: 0;
    }
  }
  
  /*footer*/
  .footer {
    background-color: #09263c;
    color: #c4c4c4;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
  }
  
  .footer-col {
    flex: 1 1 200px;
  }
  
  .logo-col img {
    width: 180px;
    margin-bottom: 15px;
    border-radius: 50%;
  }
  
  .footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-col ul li {
    margin-bottom: 10px;
    color: #cccccc;
  }
  
  .footer-col ul li a {
    text-decoration: none;
    color: #cccccc;
    transition: color 0.3s;
  }
  
  .footer-col ul li a:hover {
    color: #E3C07B;
  }
  
  .social-links a {
    color: #ffffff;
    margin-right: 10px;
    font-size: 18px;
    transition: color 0.3s;
  }
  
  .social-links a:hover {
    color: #E3C07B;
  }
  
  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .newsletter-form input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #222;
    color: white;
  }
  
  .newsletter-form button {
    padding: 10px;
    background-color: white;
    color: #09263c;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  
  .newsletter-form button:hover {
    background-color: #d6ad63;
  }
  
  .footer-bottom {
    border-top: 1px solid #333;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #999;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-inner {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-col {
      width: 100%;
    }
  
    .newsletter-form {
      align-items: center;
    }
  }
  
  /* FontAwesome */
  @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');
  
/* --- Nosotros y contacto --- */
:root {
    --color-primary: #003366;
    --color-secondary: #f4f4f4;
    --color-accent: #1a1a1a;
    --color-text: #333;
    --color-white: #ffffff;
    --font-heading: 'Segoe UI', sans-serif;
    --font-body: 'Segoe UI', sans-serif;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: var(--font-body);
    background-color: var(--color-secondary);
    color: var(--color-text);
    line-height: 1.6;
    scroll-behavior: smooth;
  }
  
  /* HERO SECTION */
  .hero {
    background: url('https://alliancefencesupply.com/cdn/shop/files/BUTTEFENCE-VISIONKIT-1V3A9753-Edit_1.jpg?v=1726170833') center/cover no-repeat;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .hero-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }
  
  .hero-content {
    text-align: center;
    color: var(--color-white);
    max-width: 800px;
    animation: fadeInUp 1.2s ease-out forwards;
  }
  
  .hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  .hero-content p {
    font-size: 1.4rem;
    color: #ddd;
  }
  
  /* MAIN SECTION */
  .about-section {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    padding: 5rem 1.5rem;
    max-width: 1200px;
    margin: auto;
  }
  
  .text-block {
    text-align: center;
    padding: 0 1rem;
  }
  
  .text-block h2 {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 1.2rem;
  }
  
  .text-block p {
    font-size: 1.1rem;
    color: #444;
    max-width: 850px;
    margin: 0 auto;
  }
  
  .text-block.dark {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  
  .text-block.dark h2 {
    color: #fff;
  }
  .text-block.dark p {
    color: #fff;
  }
  
  .image-block {
    display: flex;
    justify-content: center;
    padding: 0 2rem;
  }
  
  .image-block img {
    width: 50%;
    max-width: 750px;
    border-radius: 1rem;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
  }
  
  .image-block img:hover {
    transform: scale(1.015);
  }
  
  /* FOOTER */
  .footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    padding: 1.5rem;
    font-size: 0.95rem;
    margin-top: 3rem;
  }
  
  /* ANIMATIONS */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 2.3rem;
    }
  
    .hero-content p {
      font-size: 1.1rem;
    }
  
    .text-block h2 {
      font-size: 1.8rem;
    }
  
    .text-block p {
      font-size: 1rem;
    }
  
    .about-section {
      gap: 3rem;
      padding: 3rem 1rem;
    }
  
    .image-block {
      padding: 0 1rem;
    }
  }

  .card-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: auto;
  }
  
  .info-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  }
  
  .info-card h2 {
    color: var(--color-primary);
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  
  .info-card p {
    color: #444;
    line-height: 1.6;
    font-size: 1.05rem;
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .card-section {
      grid-template-columns: 1fr;
      padding: 3rem 1rem;
    }
  
    .info-card {
      padding: 2rem;
    }
  }
  

  
  /* Navbar */
.navbar {
    background-color: #09263c;
    padding: 1rem 0;
  }
  
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  
  .logo {
    height: 60px;
    border-radius: 50%;
  }
  .nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
  }
  
  /* Links */
  .nav-links {
    display: flex;
    gap: 1.8rem;
    list-style: none;
  }
  
  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
  }
  
  .nav-links a:hover {
    text-decoration: underline;
  }
  /* Responsive */
  @media (max-width: 768px) {
    .nav-toggle {
      display: block;
      z-index: 1001;
      position: relative;
    }
  
    .nav-links {
      flex-direction: column;
      background-color: #09263c;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      padding: 1rem;
      display: none;
      z-index: 1000;
    }
  
    .nav-links.show {
      display: flex;
    }
  }
  @media (min-width: 769px) {
    .nav-links {
      display: flex !important;
      position: static;
      padding: 0;
    }
  }
  


    /* CSS */
.footer {
    background-color: #09263c;
    color: #c4c4c4;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
  }
  
  .footer-col {
    flex: 1 1 200px;
  }
  
  .logo-col img {
    width: 180px;
    margin-bottom: 15px;
    border-radius: 50%;
  }
  
  .footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-col ul li {
    margin-bottom: 10px;
    color: #cccccc;
  }
  
  .footer-col ul li a {
    text-decoration: none;
    color: #cccccc;
    transition: color 0.3s;
  }
  
  .footer-col ul li a:hover {
    color: #E3C07B;
  }
  
  .social-links a {
    color: #ffffff;
    margin-right: 10px;
    font-size: 18px;
    transition: color 0.3s;
  }
  
  .social-links a:hover {
    color: #E3C07B;
  }
  
  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .newsletter-form input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #222;
    color: white;
  }
  
  .newsletter-form button {
    padding: 10px;
    background-color: white;
    color: #09263c;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  
  .newsletter-form button:hover {
    background-color: #d6ad63;
  }
  
  .footer-bottom {
    border-top: 1px solid #333;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #999;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-inner {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-col {
      width: 100%;
    }
  
    .newsletter-form {
      align-items: center;
    }
  }
  
/* FOOTER */
.footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    padding: 1.5rem;
    font-size: 0.95rem;

  }
  
  /* ANIMATIONS */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 2.3rem;
    }
  
    .hero-content p {
      font-size: 1.1rem;
    }
  
    .text-block h2 {
      font-size: 1.8rem;
    }
  
    .text-block p {
      font-size: 1rem;
    }
  
    .about-section {
      gap: 3rem;
      padding: 3rem 1rem;
    }
  
    .image-block {
      padding: 0 1rem;
    }
  }

  .card-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: auto;
  }
  
  .info-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  }
  
  .info-card h2 {
    color: var(--color-primary);
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  
  .info-card p {
    color: #444;
    line-height: 1.6;
    font-size: 1.05rem;
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .card-section {
      grid-template-columns: 1fr;
      padding: 3rem 1rem;
    }
  
    .info-card {
      padding: 2rem;
    }
  }
  

  
  /* Navbar */
.navbar {
    background-color: #09263c;
    padding: 1rem 0;
  }
  
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  
  .logo {
    height: 60px;
    border-radius: 50%;
  }
  .nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
  }
  
  /* Links */
  .nav-links {
    display: flex;
    gap: 1.8rem;
    list-style: none;
  }
  
  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
  }
  
  .nav-links a:hover {
    text-decoration: underline;
  }
  /* Responsive */
  @media (max-width: 768px) {
    .nav-toggle {
      display: block;
      z-index: 1001;
      position: relative;
    }
  
    .nav-links {
      flex-direction: column;
      background-color: #09263c;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      padding: 1rem;
      display: none;
      z-index: 1000;
    }
  
    .nav-links.show {
      display: flex;
    }
  }
  @media (min-width: 769px) {
    .nav-links {
      display: flex !important;
      position: static;
      padding: 0;
    }
  }
  


    /* CSS */
.footer {
    background-color: #09263c;
    color: #c4c4c4;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
  }
  
  .footer-col {
    flex: 1 1 200px;
  }
  
  .logo-col img {
    width: 180px;
    margin-bottom: 15px;
    border-radius: 50%;
  }
  
  .footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-col ul li {
    margin-bottom: 10px;
    color: #cccccc;
  }
  
  .footer-col ul li a {
    text-decoration: none;
    color: #cccccc;
    transition: color 0.3s;
  }
  
  .footer-col ul li a:hover {
    color: #E3C07B;
  }
  
  .social-links a {
    color: #ffffff;
    margin-right: 10px;
    font-size: 18px;
    transition: color 0.3s;
  }
  
  .social-links a:hover {
    color: #E3C07B;
  }
  
  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .newsletter-form input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #222;
    color: white;
  }
  
  .newsletter-form button {
    padding: 10px;
    background-color: white;
    color: #09263c;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  
  .newsletter-form button:hover {
    background-color: #d6ad63;
  }
  
  .footer-bottom {
    border-top: 1px solid #333;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #999;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-inner {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-col {
      width: 100%;
    }
  
    .newsletter-form {
      align-items: center;
    }
  }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: var(--font-body);
    background-color: var(--color-secondary);
    color: var(--color-text);
    line-height: 1.6;
    scroll-behavior: smooth;
  }
  


  .contacto {
    background-color: #fff;
    padding: 60px 20px;
  }
  
  .contenedor {
    max-width: 600px;
    margin: auto;
    text-align: center;
  }
  
  .contacto h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #0c2d48;
  }
  
  .contacto p {
    margin-bottom: 30px;
    color: #555;
  }
  
  .formulario {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .campo label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #0c2d48;
    text-align: left;
  }
  
  .campo input,
  .campo textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    transition: border 0.3s ease;
  }
  
  .campo input:focus,
  .campo textarea:focus {
    border-color: #0c2d48;
    outline: none;
  }
  
  .btn-enviar {
    background-color: #0c2d48;
    color: white;
    padding: 12px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .btn-enviar:hover {
    background-color: #145374;
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .contenedor {
      padding: 0 15px;
    }
  
    .contacto h2 {
      font-size: 1.6rem;
    }
  }

  .contacto {
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
  
  .contenedor {
    max-width: 700px;
    margin: auto;
    width: 100%;
  }
  
  .form-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    text-align: center;
    backdrop-filter: blur(5px);
  }
  
  .form-card h2 {
    color: #0c2d48;
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .form-card p {
    color: #555;
    margin-bottom: 30px;
  }
  

/* Ajustes refactor */
body{font-family:var(--font-body);}
#header,#footer{width:100%;}
.product-content{background:#f5f5f5;}
.page-hero-title{font-family:var(--font-heading);}
.formulario .respuesta{margin-top:12px;color:#0c2d48;font-weight:600;}


/* =========================
   Página Vinyl premium
   ========================= */
.vinyl-floating-catalog {
  position: fixed;
  right: 22px;
  bottom: 98px;
  z-index: 999;
  background: #09263c;
  color: #fff !important;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .2px;
  box-shadow: 0 14px 34px rgba(9, 38, 60, .28);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.vinyl-floating-catalog:hover { transform: translateY(-3px); background: #0d3554; box-shadow: 0 18px 42px rgba(9, 38, 60, .36); }
.vinyl-floating-catalog::before { content: "↓"; margin-right: 8px; }
.vinyl-premium-hero { position: relative; min-height: 76vh; overflow: hidden; display: flex; align-items: center; color: #fff; background: #09263c; }
.vinyl-premium-hero__media { position: absolute; inset: 0; }
.vinyl-premium-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.vinyl-premium-hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,38,60,.92), rgba(9,38,60,.62) 48%, rgba(9,38,60,.18)); }
.vinyl-premium-hero__content { position: relative; max-width: 760px; padding: 88px 7vw; }
.vinyl-eyebrow, .vinyl-section-label { display: inline-block; text-transform: uppercase; letter-spacing: 2px; font-size: .78rem; font-weight: 800; color: #7fb7d4; margin-bottom: 14px; }
.vinyl-premium-hero h1 { font-family: var(--font-heading); font-size: clamp(2.6rem, 6vw, 5.8rem); line-height: .95; margin-bottom: 22px; color: #fff; }
.vinyl-premium-hero p { font-size: clamp(1rem, 2vw, 1.25rem); line-height: 1.7; color: rgba(255,255,255,.92); max-width: 650px; }
.vinyl-hero-actions, .vinyl-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.vinyl-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 13px 22px; border-radius: 999px; text-decoration: none; font-weight: 800; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.vinyl-btn:hover { transform: translateY(-2px); }
.vinyl-btn--primary { background: #b1d4e0; color: #061b2c !important; box-shadow: 0 12px 28px rgba(177,212,224,.25); }
.vinyl-btn--ghost { color: #fff !important; border: 1px solid rgba(255,255,255,.55); background: rgba(255,255,255,.08); }
.vinyl-btn--dark { color: #fff !important; background: #09263c; }
.vinyl-intro-section, .vinyl-cards-section, .vinyl-colors-section, .vinyl-specs-section, .vinyl-install-section, .vinyl-cta-section { background: #f7f9fb; padding: 76px 7vw; color: #102033; }
.vinyl-intro-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: 34px; align-items: stretch; }
.vinyl-intro-copy, .vinyl-benefit-panel, .vinyl-specs-card, .vinyl-install-section, .vinyl-cta-section { background: #fff; border: 1px solid rgba(9,38,60,.08); border-radius: 28px; box-shadow: 0 18px 52px rgba(9,38,60,.08); }
.vinyl-intro-copy, .vinyl-benefit-panel { padding: clamp(28px, 4vw, 48px); }
.vinyl-intro-copy h2, .vinyl-section-heading h2, .vinyl-specs-card h2, .vinyl-install-section h2, .vinyl-cta-section h2 { font-family: var(--font-heading); color: #09263c; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.05; margin-bottom: 18px; }
.vinyl-intro-copy p, .vinyl-section-heading p, .vinyl-product-card p, .vinyl-specs-card p, .vinyl-install-section p, .vinyl-cta-section p { color: #415064; font-size: 1.04rem; line-height: 1.75; }
.vinyl-benefit-panel { background: #09263c; color: #fff; }
.vinyl-benefit-panel h3 { font-size: 1.5rem; margin-bottom: 18px; color: #fff; }
.vinyl-benefit-panel ul, .vinyl-specs-card ul { padding-left: 20px; }
.vinyl-benefit-panel li { margin-bottom: 12px; line-height: 1.55; color: rgba(255,255,255,.92); }
.vinyl-section-heading { max-width: 900px; margin: 0 auto 34px; text-align: center; }
.vinyl-product-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.vinyl-product-card { background: #fff; border-radius: 24px; overflow: hidden; border: 1px solid rgba(9,38,60,.08); box-shadow: 0 14px 38px rgba(9,38,60,.08); transition: transform .25s ease, box-shadow .25s ease; }
.vinyl-product-card:hover { transform: translateY(-6px); box-shadow: 0 22px 55px rgba(9,38,60,.13); }
.vinyl-product-card img { width: 100%; height: 245px; object-fit: cover; object-position: top center; display: block; }
.vinyl-product-card div { padding: 24px; }
.vinyl-product-card h3 { color: #09263c; font-size: 1.28rem; margin-bottom: 9px; }
.vinyl-colors-section { background: #fff; }
.vinyl-color-grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(9, minmax(92px, 1fr)); gap: 14px; }
.vinyl-color-card { background: #f7f9fb; border: 1px solid rgba(9,38,60,.08); border-radius: 18px; padding: 16px 10px; text-align: center; color: #09263c; }
.vinyl-color-card span { display: block; width: 54px; height: 54px; margin: 0 auto 10px; border-radius: 50%; border: 1px solid rgba(9,38,60,.14); box-shadow: inset 0 0 0 2px rgba(255,255,255,.35); }
.vinyl-color-card strong { display: block; font-size: .88rem; line-height: 1.2; }
.vinyl-color-card small { display: block; color: #637287; margin-top: 4px; font-size: .72rem; }
.vinyl-specs-section { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; max-width: none; }
.vinyl-specs-card { padding: clamp(28px, 4vw, 44px); }
.vinyl-specs-card--dark { background: #09263c; color: #fff; }
.vinyl-specs-card--dark h2, .vinyl-specs-card--dark p, .vinyl-specs-card--dark li { color: #fff; }
.vinyl-spec-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.vinyl-spec-list span { display: inline-flex; padding: 9px 12px; border-radius: 999px; background: #eef5f9; color: #09263c; font-weight: 700; font-size: .9rem; }
.vinyl-install-section { max-width: 1180px; margin: 76px auto; display: grid; grid-template-columns: 1fr 420px; gap: 34px; align-items: center; padding: clamp(28px, 4vw, 48px); }
.vinyl-install-section img { width: 100%; border-radius: 22px; box-shadow: 0 14px 36px rgba(9,38,60,.1); }
.vinyl-install-section strong { display: block; margin-top: 18px; color: #09263c; font-size: 1.05rem; }
.vinyl-cta-section { max-width: 1180px; margin: 0 auto 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: clamp(28px, 4vw, 48px); background: linear-gradient(135deg, #ffffff, #eef7fb); }
.vinyl-cta-section h2 { max-width: 760px; }
@media (max-width: 1100px) { .vinyl-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .vinyl-color-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 820px) { .vinyl-floating-catalog { right: 14px; bottom: 88px; padding: 12px 14px; font-size: .9rem; } .vinyl-premium-hero { min-height: 68vh; } .vinyl-premium-hero__overlay { background: rgba(9,38,60,.78); } .vinyl-premium-hero__content { padding: 70px 24px; } .vinyl-intro-section, .vinyl-cards-section, .vinyl-colors-section, .vinyl-specs-section, .vinyl-install-section, .vinyl-cta-section { padding: 52px 20px; } .vinyl-intro-grid, .vinyl-specs-section, .vinyl-install-section { grid-template-columns: 1fr; } .vinyl-product-grid { grid-template-columns: 1fr; } .vinyl-product-card img { height: 280px; } .vinyl-cta-section { flex-direction: column; align-items: flex-start; margin: 0 20px 56px; } }
@media (max-width: 520px) { .vinyl-color-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .vinyl-product-card img { height: 220px; } .vinyl-floating-catalog span { display: none; } .vinyl-floating-catalog { width: 52px; height: 52px; display: grid; place-items: center; padding: 0; } .vinyl-floating-catalog::before { margin: 0; font-size: 1.25rem; } }


/* =========================
   Avimore premium pages
   Reutiliza la estructura visual de Vinyl
   ========================= */
.vinyl-product-card img[src*="avimore"] {
  object-position: center top;
}
.vinyl-install-section img[src*="avimore"] {
  object-position: center top;
}
.vinyl-floating-catalog[href*="Avimore"] {
  background: #071b2d;
}
@media (max-width: 768px) {
  .vinyl-floating-catalog {
    right: 14px;
    bottom: 88px;
    padding: 12px 14px;
    font-size: 13px;
  }
}
