@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
@import url(https://necolas.github.io/normalize.css/8.0.1/normalize.css);

/* Reset básico para asegurar que no haya márgenes o padding no deseados */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins";
}

/* ===== OPTIMIZACIONES TOUCH-FRIENDLY ===== */
/* Mejorar área de toque para dispositivos móviles */
@media (max-width: 768px) {
  a, button, .btn, .menu-toggle, .cart-icon a, .mobile-login {
    min-height: 44px; /* Tamaño mínimo recomendado por Apple y Google */
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Mejorar el área de toque del menú hamburguesa */
  .menu-toggle {
    padding: 8px;
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Asegurar que los enlaces del menú sean fáciles de tocar */
  .nav-links li a {
    min-height: 44px;
    padding: 12px 20px;
  }
  
  /* Mejorar botones en formularios */
  .form-group input,
  .form-group textarea,
  .contact-form-section .btn {
    min-height: 44px;
  }
}

html {
       scroll-behavior: smooth;
}

/* Modificar el estilo del body para agregar márgenes laterales */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  min-width: 320px; /* Ancho mínimo para pantallas muy pequeñas */
}

/* Agregar un contenedor principal para todo el contenido */
.container {
  width: 100%;
  max-width: 1200px; /* Ancho máximo del contenido */
  margin: 0 auto; /* Centrar el contenedor */
  padding: 0 20px; /* Margen interior en los lados */
  box-sizing: border-box;
}

/* Asegurar que las secciones usen el contenedor */
section {
  position: relative;
  z-index: 5;
  padding-top: 80px;
  padding-bottom: 80px;
}

section .container, 
section .hero-text, 
section .hero-img,
section .about-content,
section .about-text-inner,
section h1, section h2, section h3, section p {
  position: relative;
  z-index: 10;
  opacity: 1 !important; /* Forzar opacidad completa */
  visibility: visible !important; /* Forzar visibilidad */
}

/* Para secciones específicas que necesiten fondo de color completo */
section.full-width {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

section.full-width .container {
  padding: 0 20px;
}


header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
}

.dropdown {
  position: relative;
}

/* Enlace principal del dropdown */
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-toggle i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* Rotar la flecha cuando se hace hover */
.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}


.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.05);
  min-width: 200px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  margin: 0;
}

/* Mostrar el menú al hacer hover */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Elementos del menú desplegable */
.dropdown-menu li {
  margin: 0;
  opacity: 1 !important;
  transform: none !important;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 8px; /* Bordes redondeados en los elementos */
  margin: 0 8px; /* Margen para que no toque los bordes */
  white-space: nowrap;
  background-color: transparent;
  }

.dropdown-menu li {
  margin: 0;
  opacity: 1 !important;
  transform: none !important;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease; /* Solo transición de color */
  white-space: nowrap;
  background-color: transparent;
}

.dropdown-menu li a:hover {
  color: #915200;}

.dropdown:hover .dropdown-menu li:nth-child(1) { animation-delay: 0.1s; }
.dropdown:hover .dropdown-menu li:nth-child(2) { animation-delay: 0.15s; }
.dropdown:hover .dropdown-menu li:nth-child(3) { animation-delay: 0.2s; }
.dropdown:hover .dropdown-menu li:nth-child(4) { animation-delay: 0.25s; }
.dropdown:hover .dropdown-menu li:nth-child(5) { animation-delay: 0.3s; }
.dropdown:hover .dropdown-menu li:nth-child(6) { animation-delay: 0.35s; }


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

.dropdown:hover .dropdown-menu li {
  animation: fadeInUp 0.3s ease forwards;
}

/* ===== RESPONSIVE DROPDOWN ===== */

/* Para pantallas grandes - mantener el comportamiento hover */
@media (min-width: 769px) {
  .dropdown-menu {
    position: absolute;
  }
}

/* Para móviles - convertir en menú expandible */
@media (max-width: 768px) {
  .dropdown {
    position: relative;
  }
  
  .dropdown-menu {
    position: static;
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-width: auto;
    width: 100%;
    padding: 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    transition: all 0.3s ease;
  }
  
  
  /* Mostrar menú en móviles al hacer clic */
  .dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
    padding: 12px 0;
  }
  
  .dropdown-menu li a {
    padding: 12px 20px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease; /* Solo transición de color en móviles también */
  }
  
  .dropdown-menu li:last-child a {
    border-bottom: none;
  }
  /* Ajustar el ícono en móviles */

  .dropdown-toggle i {
    transition: transform 0.3s ease;
  }

  .dropdown-menu li a:hover {
    color: #915200;
  }
  
  
  .dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
  }
}

/* Asegurar que el dropdown no interfiera con otros elementos */
.nav-links li.dropdown {
  position: relative;
  z-index: 1001;
}

/* Navbar con efecto de vidrio consistente */
.navbar {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease-in-out;
  z-index: 1001; /* Asegurar que la navbar esté por encima del contenido */
}


.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: none;
}

/* Eliminar cualquier backdrop-filter que pueda estar afectando a todo el contenido */
body, section, .container, main {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Asegurar que los enlaces sean siempre visibles y clickeables */
a, button, .nav-links li a {
  position: relative;
  z-index: 15;
}

/* Ajustar los fondos para que estén definitivamente detrás del contenido */
.background-image-container,
.background-image-container.left::after,
.background-image-container.right::before,
.homepage::after {
  z-index: 1;
  pointer-events: none; /* Evitar que capturen clics */
}

/* Asegurar que no haya elementos que cubran todo el viewport */
.overlay, .modal, .popup {
  display: none; /* Ocultar cualquier posible overlay */
}

/* Estilo específico para el contenedor de la navbar */
.navbar.container {
  width: 100%;
  max-width: none; /* Eliminar cualquier max-width */
  margin: 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px; /* Altura fija para la navbar */
}

/* Ajustar el contenido principal para compensar la navbar fija */
main {
  padding-top: px; /* Debe coincidir con la altura de la navbar */
  width: 100%;
}

/* ===== ESTILOS BASE DEL MENÚ HAMBURGUESA ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1003;
  position: relative;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: scale(1.1);
}

.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* ===== PREVENIR SCROLL CUANDO EL MENÚ ESTÁ ABIERTO ===== */
body.menu-open {
  overflow: hidden;
}

/* ===== OVERLAY PARA CERRAR EL MENÚ ===== */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.1) 0%, 
    rgba(0, 0, 0, 0.2) 50%, 
    rgba(0, 0, 0, 0.15) 100%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 999;
  opacity: 0;
  transition: all 0.4s ease;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

/* Estilos base para la navegación */
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 1002;
  transition: 0.5s ease;
}

.nav-links {
  flex: 1;
  justify-content: center;
  max-width: none;
}

.nav-links li {
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-links li a {
  padding: 10px 15px;
  display: inline-block;
  color: #000000;
  text-decoration: none;
  text-transform: capitalize;
  transition: 0.2s;
  font-size: 16px;
  white-space: nowrap;
  font-weight: 500;
  position: relative;
  z-index: 1002;
  opacity: 1 !important;
  visibility: visible !important;
}

.nav-links li a:hover {
  color: #d1a000;
}

/* ===== MENÚ HAMBURGUESA MÓVIL - VERSIÓN LIMPIA Y OPTIMIZADA ===== */
@media (max-width: 768px) {
  /* === NAVBAR BASE === */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    padding: 0 15px;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  }
  
  /* === LOGO === */
  .logo {
    order: 1;
    z-index: 1001;
  }
  
  .logo img {
    height: 90px;
    width: auto;
  }
  
  /* === NAV-ACTIONS (CARRITO) === */
  .nav-actions {
    order: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1001;
    flex-shrink: 0;
    margin-right: 10px;
  }
  
  .cart-icon a {
    color: #915200;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .cart-icon i {
    font-size: 20px;
  }
  
  .cart-count {
    position: absolute;
    top: -1px;
    right: -1px;
    background-color: #d1a000;
    color: white;
    font-size: 11px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }
  
  /* === MENÚ HAMBURGUESA === */
  .menu-toggle {
    order: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1002;
    position: relative;
  }
  
  .menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 10px;
    transition: all 0.3s ease;
  }
  
  /* Animación del menú hamburguesa */
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  /* === MENÚ MÓVIL === */
  .nav-links {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 75%;
    height: calc(100vh - 80px);
    background: linear-gradient(135deg, 
      rgba(255, 255, 255, 0.75) 0%, 
      rgba(255, 255, 255, 0.85) 50%,
      rgba(255, 255, 255, 0.80) 100%);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.7);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    padding: 40px 20px 40px;
    overflow-y: auto;
    border-radius: 20px 0 0 20px;
  }
  
  .nav-links.active {
    right: 0;
    animation: slideInFromRight 0.5s ease-out;
  }
  
  @keyframes slideInFromRight {
    from {
      right: -100%;
      opacity: 0;
    }
    to {
      right: 0;
      opacity: 1;
    }
  }
  
  /* === ELEMENTOS DEL MENÚ === */
  .nav-links li {
    margin: 8px 0;
    opacity: 0;
    transform: translateX(50px);
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .nav-links.active li {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* === ENLACES PRINCIPALES === */
  .nav-links li a {
    display: block;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    text-align: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
  }
  
  .nav-links li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(145, 82, 0, 0.1), transparent);
    transition: left 0.5s ease;
  }
  
  .nav-links li a:hover::before {
    left: 100%;
  }
  
  .nav-links li a:hover {
    color: #915200;
    background-color: rgba(145, 82, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(145, 82, 0, 0.2);
  }
  
  /* === DROPDOWN MÓVIL === */
  .dropdown {
    position: relative;
    width: 100%;
  }
  
  .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
  }
  
  .dropdown-menu {
    position: static;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: auto;
    width: 90%;
    margin: 10px auto;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    transition: all 0.3s ease;
  }
  
  .dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
    padding: 12px 0;
  }
  
  .dropdown-menu li {
    width: 100%;
    text-align: center;
    margin: 0;
    opacity: 1 !important;
    transform: none !important;
  }
  
  .dropdown-menu li a {
    padding: 12px 20px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: color 0.3s ease;
    display: block;
    text-align: center;
    border-radius: 0;
    background-color: transparent;
  }
  
  .dropdown-menu li:last-child a {
    border-bottom: none;
  }
  
  .dropdown-menu li a:hover {
    color: #915200;
    background-color: rgba(145, 82, 0, 0.1);
  }
  
  .dropdown-toggle i {
    transition: transform 0.3s ease;
  }
  
  .dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
  }
  
  /* === INDICADOR VISUAL DEL MENÚ === */
  .nav-links::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 4px;
    height: 30px;
    background: linear-gradient(to bottom, #915200, #d1a000);
    border-radius: 2px;
    opacity: 0;
    transform: scaleY(0);
    transition: all 0.3s ease;
  }
  
  .nav-links.active::before {
    opacity: 1;
    transform: scaleY(1);
  }
  
  /* === BOTÓN LOGIN MÓVIL === */
  .mobile-login-item {
    display: block !important;
    margin-top: 30px;
    width: 85%;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    position: relative;
  }
  
  /* Separador visual antes del botón de login */
  .mobile-login-item::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #915200, transparent);
    border-radius: 1px;
  }
  
  .mobile-login {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #915200 0%, #d1a000 50%, #643500 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(145, 82, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    text-align: center;
    margin: 0 auto;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
  
  .mobile-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
  }
  
  .mobile-login:hover::before {
    left: 100%;
  }
  
  .mobile-login:hover,
  .mobile-login:focus {
    background: linear-gradient(135deg, #643500 0%, #915200 50%, #d1a000 100%);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 40px rgba(145, 82, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
  }
  
  .mobile-login:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(145, 82, 0, 0.4);
  }
  
  .mobile-login i {
    font-size: 18px;
    transition: transform 0.3s ease;
  }
  
  .mobile-login:hover i {
    transform: rotate(360deg) scale(1.1);
  }
  
  /* === ANIMACIONES ESCALONADAS === */
  .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
  .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
  .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
  .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
  .nav-links.active li:nth-child(6) { transition-delay: 0.35s; }
  .nav-links.active .mobile-login-item { transition-delay: 0.4s; }
  
  /* === OCULTAR ELEMENTOS DESKTOP === */
  .auth-button {
    display: none !important;
  }
  
  /* === MOSTRAR BOTÓN LOGIN MÓVIL === */
  .mobile-login-item {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
}

/* ===== PANTALLAS PEQUEÑAS (480px) ===== */
@media (max-width: 480px) {
  .navbar {
    padding: 0 10px;
  }
  
  .logo img {
    height: 75px;
  }
  
  .nav-actions {
    margin-right: 8px;
  }
  
  .menu-toggle {
    width: 25px;
    height: 18px;
  }
  
  .nav-links {
    width: 85%;
    padding: 30px 15px 30px;
  }
  
  .nav-links li a {
    padding: 12px 15px;
    font-size: 15px;
  }
  
  .mobile-login-item {
    width: 90%;
  }
  
  .mobile-login {
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .dropdown-menu {
    width: 95%;
  }
  
  .dropdown-menu li a {
    padding: 10px 15px;
    font-size: 13px;
  }
}

/* ===== PANTALLAS ULTRA PEQUEÑAS (360px) ===== */
@media (max-width: 360px) {
  .navbar {
    padding: 0 8px;
    min-height: 70px;
  }
  
  .logo img {
    height: 65px;
  }
  
  .nav-actions {
    margin-right: 5px;
    gap: 5px;
  }
  
  .cart-icon i {
    font-size: 18px;
  }
  
  .cart-count {
    font-size: 9px;
    min-width: 14px;
    height: 14px;
  }
  
  .menu-toggle {
    width: 22px;
    height: 16px;
  }
  
  .nav-links {
    width: 90%;
    top: 70px;
    height: calc(100vh - 70px);
    padding: 25px 10px 25px;
  }
  
  .nav-links li a {
    padding: 10px 12px;
    font-size: 14px;
  }
  
  .dropdown-menu li a {
    padding: 8px 12px;
    font-size: 12px;
  }
  
  .mobile-login {
    padding: 10px 15px;
    font-size: 13px;
    gap: 8px;
  }
  
  .mobile-login i {
    font-size: 16px;
  }
  
  .container {
    padding: 0 15px;
  }
}

/* ===== ESTILOS PARA PANTALLAS GRANDES ===== */
@media (min-width: 769px) {
  .navbar {
    padding: 0 20px;
  }
  
  .menu-toggle {
    display: none;
  }
  
  .mobile-login-item {
    display: none !important;
  }
  
  .nav-links {
    position: relative;
    right: auto;
    width: auto;
    height: auto;
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    flex-direction: row;
    box-shadow: none;
    padding: 0;
    overflow: visible;
    top: auto;
    z-index: 1002;
  }
  
  .nav-links li {
    margin: 0;
    opacity: 1 !important;
    transform: none !important;
    width: auto;
    text-align: left;
    transition: none;
  }
  
  .nav-links li a {
    font-size: 16px;
    opacity: 1 !important;
    visibility: visible !important;
    text-align: left;
    width: auto;
    padding: 10px 15px;
    border-radius: 0;
  }
  
  .nav-actions {
    order: 4;
    margin-left: 20px;
    margin-right: 0;
  }
  
  .logo {
    order: 1;
  }
  
  .nav-links {
    order: 2;
    flex: 1;
    justify-content: center;
  }
  
  .auth-button {
    display: block;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 20px;
  z-index: 1001;
}

/* Estilos del carrito de compras - SIN CÍRCULO DE FONDO */
.cart-icon {
  position: relative;
}

.cart-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #915200;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 6px; /* Padding para área de click más grande */
}

.cart-icon a:hover {
  color: #643500;
  transform: translateY(-2px);
}

.cart-icon i {
  font-size: 20px; /* Más grande que antes (era 18px) */
  transition: transform 0.3s ease;
}

.cart-icon a:hover i {
  transform: scale(1.15);
}


/* Contador del carrito */
.cart-count {
  position: absolute;
  top: -1px;
  right: -1px;
  background-color: #d1a000;
  color: white;
  font-size: 11px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.cart-icon a:hover .cart-count {
  background-color: #643500;
  transform: scale(1.1);
}

.mobile-login-item {
  display: none;
}

.mobile-login-item {
    display: none;
  }



@media (max-width: 992px) {
  .nav-actions {
    gap: 15px;
    margin-left: 15px;
  }
  
  .cart-icon i {
    font-size: 22px; /* Mantener tamaño grande en tablets */
  }
  
}



@media (min-width: 769px) {
  .dropdown-menu {
    position: absolute;
  }
}


@media (max-width: 480px) {
  .logo img {
    height: 80px;
  }
  
  .nav-actions {
    gap: 6px;
    margin-right: 8px;
  }
  
  .cart-icon i {
    font-size: 18px;
  }
  
  .cart-count {
    font-size: 10px;
    min-width: 16px;
    height: 16px;
  }
  
  .nav-links {
    width: 80%; /* Menú un poco más ancho en pantallas muy pequeñas */
  }
}







/* Animaciones adicionales */
@keyframes cartBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.cart-icon a:hover {
  animation: cartBounce 0.6s ease-in-out;
}

/* Efecto de pulso para el contador cuando hay items */
.cart-count.has-items {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}



.nav-actions {
    position: relative;
    gap: 8px;
    margin-left: 0;
    margin-right: 10px;
    z-index: 1002;
    flex-shrink: 0;
    order: 2; /* Entre el logo y el menú hamburguesa */
  }


/* Estilos del botón de login/register */
.auth-button .login-btn {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, #915200 0%, #643500 100%);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(145, 82, 0, 0.2);
}


.auth-button .login-btn:hover {
  background: linear-gradient(135deg, #643500 0%, #915200 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(145, 82, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

.auth-button .login-btn:active {
  transform: translateY(0);
}




/* Estilos para el logo */
.logo {
  display: flex;
  align-items: center;
  z-index: 1001; /* Asegurar que el logo siempre sea visible */
}

.logo img {
  height: 120px; /* Ajusta la altura según tus necesidades */
  width: auto; /* Mantiene la proporción de la imagen */
  vertical-align: middle; /* Alinea la imagen verticalmente */
}

.flex {
  display: flex;
  align-items: center;
}

.navbar-shadow {
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 1001; /* Asegurar que los enlaces siempre sean visibles */
}

/* Asegurar que los enlaces sean siempre visibles */
.navbar a {
  padding: 10px 15px;
  display: inline-block;
  color: #000000;
  text-decoration: none;
  text-transform: capitalize;
  transition: 0.2s;
  font-size: 16px;
  white-space: nowrap;
  font-weight: 500;
  position: relative;
  z-index: 1001; /* Asegurar que los enlaces siempre sean visibles */
}

.navbar {
  justify-content: space-between;
  padding: 0 20px;
}


.navbar a:hover {
  color: #d1a000; /* Color rojo al pasar el mouse */
}




/* Homepage Styles - Enhanced and Responsive */
.homepage {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.hero-text, .hero-img {
  flex: 1;
  position: relative;
  z-index: 10;
  padding: 20px;
}

.hero-text {
  padding-right: 40px;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 25px;
  color: #915200;
  line-height: 1.2;
  transition: all 0.3s ease;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #643500;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.primary-btn {
  background-color: #915200;
  color: white;
  box-shadow: 0 4px 15px rgba(145, 82, 0, 0.3);
}

.primary-btn:hover {
  background-color: #643500;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(145, 82, 0, 0.4);
}

.secondary-btn {
  background-color: transparent;
  color: #915200;
  border: 2px solid #915200;
}

.secondary-btn:hover {
  background-color: rgba(145, 82, 0, 0.1);
  transform: translateY(-3px);
}

.hero-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-img img {
  max-width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

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

.hero-img h2 {
  font-weight: 600;
  text-align: center;
  color: #643500;
  margin-top: 25px;
  font-size: 1.5rem;
  line-height: 1.4;
}

.background-image-container {
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: opacity 0.5s ease;
}

/* Find these sections in your CSS and update the opacity values */

.background-image-container.left {
  left: 0;
  background-image: url('Links/top-5-most-common-roof-repair-needs_orig\ copy.jpg');
  opacity: 0.3; /* Increased from 0.15 */
}

.background-image-container.right {
  right: 0;
  background-image: url('Links/top-5-most-common-roof-repair-needs_orig\ copy.jpg');
  opacity: 0.9; /* Increased from 0.08 */
  background-position: center;
}

/* You might also want to adjust the gradient overlay to make it less opaque */
.background-image-container.left::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 100%;
  background: linear-gradient(to right, 
                rgba(245, 245, 245, 0), 
                rgba(245, 245, 245, 0.7) 50%, /* Reduced from 0.8 */
                rgba(245, 245, 245, 1) 100%);
  z-index: 2;
}

.background-image-container.right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 100%;
  background: linear-gradient(to left, 
                rgba(245, 245, 245, 0), 
                rgba(245, 245, 245, 0.7) 50%, /* Reduced from 0.8 */
                rgba(245, 245, 245, 1) 100%);
  z-index: 2;
}

/* Also adjust the center overlay to make it less opaque */
.homepage::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(245, 245, 245, 0.4) 0%, /* Reduced from 0.5 */
    rgba(245, 245, 245, 0) 70%
  );
  z-index: 2;
  pointer-events: none;
}

/* Responsive styles for homepage */
@media (max-width: 1200px) {
  .hero-text h1 {
    font-size: 3rem;
  }
  
  .hero-text p {
    font-size: 1rem;
  }
}

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text, .hero-img {
    flex: none;
    width: 100%;
    padding: 20px;
  }
  
  .hero-text {
    order: 1;
    padding-bottom: 40px;
  }
  
  .hero-img {
    order: 2;
  }
  
  .hero-text p {
    margin: 0 auto 30px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .homepage {
    padding: 100px 0 60px;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .hero-img h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .homepage {
    padding: 90px 0 50px;
  }
  
  .hero-content {
    padding: 0 15px;
  }
  
  .hero-text h1 {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  
  .hero-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .hero-img h2 {
    font-size: 1.2rem;
    line-height: 1.3;
  }
}

/* ===== HOMEPAGE ULTRA RESPONSIVE ===== */
@media (max-width: 360px) {
  .homepage {
    padding: 80px 0 40px;
  }
  
  .hero-content {
    padding: 0 10px;
  }
  
  .hero-text h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .hero-text p {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }
  
  .btn {
    padding: 10px 15px;
    font-size: 0.85rem;
  }
  
  .hero-img h2 {
    font-size: 1.1rem;
  }
}

/* Animation classes */
.fade-in {
  animation: fadeIn 1s ease forwards;
}

.slide-up {
  animation: slideUp 0.8s ease forwards;
}

.slide-right {
  animation: slideRight 0.8s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes slideRight {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Estilos para la sección About - Propuesta renovada */
.about {
  padding: 80px 0;
  background-color: #ebdcc5;
}

.presentation-products {
                        background-color: #ebdcc5;
}


/* Add these styles for the about section title with decorative images on sides */
.about-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  position: relative;
  padding: 0 20px;
}

.about-header .heading {
  height: 100px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.about-header .heading:first-of-type {
  left: 0;
}

.about-header .heading:last-of-type {
  right: 0;
}

.about-title-container {
  text-align: center;
  padding: 0 120px; /* Make space for the logos on sides */
}

.about-title-container .about-title {
  margin: 0;
  padding: 5px 0;
  text-align: center;
}

.about-title-container .about-title:first-of-type {
  color: #915200;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-title-container .about-title:last-of-type {
  color: #643500;
  font-size: 2.2rem;
  font-weight: 600;
}

/* Add a decorative underline to make it more eye-catching */
.about-title-container::after {
  content: "";
  display: block;
  width: 150px;
  height: 3px;
  background: linear-gradient(to right, transparent, #d1a000, transparent);
  margin: 20px auto 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-header .heading {
    height: 50px; /* Logos más pequeños */
    width: 80px; /* Ancho reducido también */
  }
  
  .about-title-container {
    padding: 0 100px; /* Más padding para mayor separación */
  }
  
  .about-title-container .about-title:first-of-type {
    font-size: 1.3rem; /* Más pequeño */
    line-height: 1.1;
  }
  
  .about-title-container .about-title:last-of-type {
    font-size: 1.1rem; /* Más pequeño */
    line-height: 1.2;
  }
}

@media (max-width: 480px) {
  .about-header .heading {
    height: 40px; /* Logos aún más pequeños */
    width: 60px;
  }
  
  .about-title-container {
    padding: 0 80px; /* Más padding */
  }
  
  .about-title-container .about-title:first-of-type {
    font-size: 1rem; /* Más pequeño */
    line-height: 1.1;
  }
  
  .about-title-container .about-title:last-of-type {
    font-size: 0.85rem; /* Más pequeño */
    line-height: 1.2;
  }
}

@media (max-width: 360px) {
  .about-header .heading {
    height: 30px; /* Logos muy pequeños */
    width: 45px;
  }
  
  .about-title-container {
    padding: 0 65px; /* Más padding */
  }
  
  .about-title-container .about-title:first-of-type {
    font-size: 0.8rem; /* Muy pequeño */
    line-height: 1.1;
  }
  
  .about-title-container .about-title:last-of-type {
    font-size: 0.7rem; /* Muy pequeño */
    line-height: 1.2;
  }
}

/* Para pantallas extremadamente pequeñas */
@media (max-width: 320px) {
  .about-header .heading {
    height: 25px; /* Logos ultra pequeños */
    width: 35px;
  }
  
  .about-title-container {
    padding: 0 70px; /* Máximo padding */
  }
  
  .about-title-container .about-title:first-of-type {
    font-size: 0.7rem; /* Ultra pequeño */
    line-height: 1.1;
  }
  
  .about-title-container .about-title:last-of-type {
    font-size: 0.6rem; /* Ultra pequeño */
    line-height: 1.2;
  }
}


/* Mejoras para la sección About */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  overflow: hidden; /* Para controlar animaciones */
}

.about-block h3 {
                 color: #8d4b00;
}

/* Efecto de escala al pasar el cursor sobre la imagen */
.hover-scale {
  transition: transform 0.5s ease;
  transform-origin: center center;
}

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

/* Contenedor de imagen sin marco */
.about-image-container {
  position: relative;
  overflow: visible !important;
  transition: transform 0.5s ease;
  margin: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.about-image {

  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.8s ease;

}

/* Mejorar el contenedor de texto */
.about-text-container {
  order: 2;
  display: flex;
  align-items: center;
  padding: 0 15px;
}

.about-text-inner {
  padding: 20px 15px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px; /* Aumentado de 12px a 20px para más espacio entre párrafos */
}

/* Estilo para los párrafos */
.about-paragraph {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #000000; /* Cambiado de #555 a negro */
  position: relative;
  padding-left: 15px;
  border-left: 3px solid #915200;
  opacity: 0;
  transform: translateY(30px);
  margin: 0; /* Eliminar márgenes predeterminados */
}

/* Animación para elementos que se deslizan hacia arriba */
.slide-up-element {
  animation: slideUpFade 0.8s ease forwards;
  animation-delay: calc(var(--index, 0) * 0.2s);
}

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

/* Responsive design - Versión mejorada */
@media (min-width: 768px) {
  .about-content {
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }
  
  .about-image-container {
    flex: 0 0 40%;
    order: 1;
    height: auto;
    max-height: 450px;
  }
  
  .about-image {
    height: 100%;
    object-fit: cover;
  }
  
  .about-text-container {
    flex: 0 0 60%;
    order: 2;
    padding: 0 20px 0 0;
  }
  
  .about-text-inner {
    padding: 20px 20px 20px 0;
    height: auto;
    min-height: auto;
    justify-content: center;
    gap: 25px; /* Aumentado a 25px en pantallas más grandes */
  }
  
  .about-paragraph {
    padding-left: 20px;
    font-size: 1.1rem;
  }
}

/* Para tablets y dispositivos similares */
@media (min-width: 768px) and (max-width: 991px) {
  .about-image-container {
    max-height: 400px; /* Aún más reducido para tablets */
  }
  
  .about-text-inner {
    gap: 10px; /* Espacio aún más reducido entre párrafos en tablets */
  }
}

/* Inicializar las animaciones cuando el elemento está en viewport */
.about-content.aos-animate .slide-up-element:nth-child(1) {
  --index: 1;
}

.about-content.aos-animate .slide-up-element:nth-child(2) {
  --index: 2;
}

/* Para tablets y dispositivos similares */
@media (min-width: 768px) and (max-width: 991px) {
  .about-text-container {
    padding: 0 25px 0 0; /* Más padding derecho específicamente para tablets */
  }
  
  .about-text-inner {
    padding: 30px 25px 30px 0; /* Más padding derecho */
  }
  
  .about-text-inner p {
    padding-right: 15px; /* Más padding derecho para el texto */
    font-size: 1rem; /* Reducir ligeramente el tamaño de fuente si es necesario */
  }
}

/* Para pantallas más grandes */
@media (min-width: 992px) {
  .about-image-container {
    flex: 0 0 48%;
  }
  
  .about-text-container {
    flex: 0 0 52%;
    padding: 0 30px 0 0;
  }
  
  .about-text-inner {
    padding-left: 20px;
    padding-right: 30px;
  }
}

/* Para pantallas más grandes, ajustar proporcionalmente */
@media (min-width: 992px) {
  .about-image-container {
    max-height: 400px; /* Ajustado para ser más proporcional al texto */
  }
  
  .about-text-inner {
    padding: 10px 20px 10px 0; /* Reducir padding vertical */
  }
}

/* Para pantallas extra grandes */
@media (min-width: 1200px) {
  .about-content {
    gap: 60px;
  }
  
  .about-image-container {
    height: 600px;
  }
  
  .about-text-inner {
    height: 600px;
    padding-left: 30px;
    padding-right: 40px;
  }
}

/* Versión invertida (texto a la izquierda, imagen a la derecha) */
.about-content-reverse .about-text-container {
  order: 1; /* Cambia el orden para que el texto aparezca primero */
}

.about-content-reverse .about-image-container {
  order: 2; /* Cambia el orden para que la imagen aparezca después */
}

/* Ajustes específicos para la versión invertida en pantallas medianas y grandes */
@media (min-width: 768px) {
  .about-content-reverse .about-text-container {
    padding: 0 0 0 20px; /* Ajusta el padding (derecha 0, izquierda 20px) */
  }
  
  .about-content-reverse .about-text-inner {
    padding: 20px 0 20px 20px; /* Ajusta el padding interno */
  }
}

/* Ajustes para las animaciones en la versión invertida */
.about-content-reverse .about-text-container {
  animation-name: fade-right; /* Cambia la dirección de la animación */
}

.about-content-reverse .about-image-container {
  animation-name: fade-left; /* Cambia la dirección de la animación */
}

/* Para pantallas más grandes */
@media (min-width: 992px) {
  .about-content-reverse .about-text-inner {
    padding: 10px 0 10px 20px; /* Ajusta el padding vertical */
  }
}

/* Asegurar que todas las imágenes se muestren completas */
.full-visible {
  overflow: visible !important;


  transform: none !important;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Contenedor unificado para los últimos divs */
.about-unified-container {
  display: flex;
  flex-direction: column;
  gap: 15px; /* Espacio reducido entre bloques */
  margin-top: 10px; /* Espacio desde el primer div */
  overflow: visible; /* Asegurar que las animaciones no se corten */
}

/* Estilo para cada bloque dentro del contenedor unificado */
.about-block {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 10px 0;
}

/* Ajustar el contenedor de texto para mayor continuidad */
.about-block .about-text-container {
  padding: 0 15px;
  order: 1; /* Texto siempre primero en móviles */
}

.about-block .about-image-container {
  order: 2; /* Imagen siempre después en móviles */
  border-radius: 0; /* Eliminar bordes redondeados que puedan cortar */
}

.about-block .about-text-inner {
  padding: 10px 15px;
  gap: 15px;
}

.about-block .about-image {
  border-radius: 0; /* Eliminar bordes redondeados */
  transform-origin: center center; /* Centrar el punto de origen de transformaciones */
}

/* Versión responsive para tablets y escritorio */
@media (min-width: 768px) {
  .about-block {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }
  
  .about-block .about-image-container {
    flex: 0 0 40%;
    height: auto;
    max-height: 350px; /* Altura reducida para mejor proporción */
    order: 2; /* Imagen siempre a la derecha */
  }
  
  .about-block .about-text-container {
    flex: 0 0 60%;
    padding: 0;
    order: 1; /* Texto siempre a la izquierda */
  }
  
  .about-block .about-text-inner {
    padding: 15px 20px 15px 0; /* Padding a la derecha */
    height: auto;
  }
  
  /* Ajustar el primer div para que la imagen se muestre completa */
  .about-content .about-image-container {
    overflow: visible !important;
    padding: 5px;
  }
  
  .about-content .about-image {
    border-radius: 0;
    transform-origin: center center;
  }
}

/* Ajustes para asegurar que las imágenes se vean completas en todos los dispositivos */
.hover-scale {
  transition: transform 0.5s ease;
  transform-origin: center center;
}

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

/* Ajustes para dispositivos móviles */
@media (max-width: 767px) {
  .about-unified-container {
    gap: 5px;
  }
  
  .about-block {
    gap: 15px;
    padding: 5px 0;
  }
  
  .about-block .about-image-container {
    max-height: 250px;
  }
  
  .about-content .about-image-container {
    overflow: visible !important;
    padding: 5px;
  }
}

/* ===== ABOUT ULTRA RESPONSIVE ===== */
@media (max-width: 480px) {
  .about {
    padding: 60px 0;
  }
  
  .about-header .heading {
    height: 60px;
  }
  
  .about-title-container {
    padding: 0 70px;
  }
  
  .about-title-container .about-title:first-of-type {
    font-size: 2rem;
  }
  
  .about-title-container .about-title:last-of-type {
    font-size: 1.6rem;
  }
  
  .about-paragraph {
    font-size: 0.95rem;
    line-height: 1.7;
    padding-left: 12px;
  }
}

@media (max-width: 360px) {
  .about {
    padding: 50px 0;
  }
  
  .about-header .heading {
    height: 50px;
  }
  
  .about-title-container {
    padding: 0 60px;
  }
  
  .about-title-container .about-title:first-of-type {
    font-size: 1.8rem;
  }
  
  .about-title-container .about-title:last-of-type {
    font-size: 1.4rem;
  }
  
  .about-paragraph {
    font-size: 0.9rem;
    line-height: 1.6;
    padding-left: 10px;
  }
  
  .about-text-inner {
    padding: 15px 10px;
    gap: 15px;
  }
}

/* Ajustes específicos para el contenedor unificado */
.about-unified-container .about-block + .about-block {
  margin-top: -10px; /* Acercar más los bloques dentro del contenedor unificado */
}

/* Asegurar que no haya espacios innecesarios */
.about-paragraph {
  margin: 0;
}

/* ===== SECCIÓN PRESENTATION COMPACTA Y RESPONSIVA ===== */

.presentation-products {
    background: linear-gradient(135deg, #ebdcc5 0%, #f5f0e8 50%, #ebdcc5 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Decoración de fondo sutil */
.presentation-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(145, 82, 0, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(209, 160, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Container principal compacto */
.present-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Header de la sección presentation */
.present-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.present-section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #915200;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #915200 0%, #d1a000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.present-section-subtitle {
    font-size: 1.1rem;
    color: #643500;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contenedor de cards compacto */
.present-cards-container {
    display: grid;
    gap: 40px;
    position: relative;
}

/* Card compacta individual - Layout horizontal */
.present-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(145, 82, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
}

.present-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(145, 82, 0, 0.15);
    border-color: rgba(209, 160, 0, 0.3);
}

/* Imagen de la card - Más grande y completa */
.present-card-image {
    position: relative;
    width: 350px;
    height: 350px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px !important;
}

/* Reglas específicas para forzar bordes redondeados */
.presentation-products .present-card-image img {
    border-radius: 12px !important;
    overflow: hidden !important;
}

.presentation-products .present-card-image {
    border-radius: 12px !important;
    overflow: hidden !important;
}

.present-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px !important;
    overflow: hidden;
}

.present-card:hover .present-card-image img {
    transform: scale(1.05);
}

/* Overlay de categoría */
.present-card-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.present-card-category {
    display: inline-block;
    background: linear-gradient(135deg, #915200 0%, #d1a000 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(145, 82, 0, 0.3);
}

/* Contenido de texto */
.present-card-text {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px;
}

/* Card con imagen a la derecha */
.present-card-reverse {
    flex-direction: row-reverse;
}

/* Título de la card */
.present-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #915200;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* Descripción */
.present-card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    flex: 1;
}

/* Frase destacada con icono */
.present-card-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: linear-gradient(135deg, rgba(145, 82, 0, 0.1) 0%, rgba(209, 160, 0, 0.05) 100%);
    border-radius: 10px;
    border-left: 3px solid #915200;
    font-size: 0.9rem;
    font-weight: 500;
    color: #643500;
    font-style: italic;
}

.present-card-highlight i {
    color: #915200;
    font-size: 1rem;
    flex-shrink: 0;
}

.present-card-highlight span {
    flex: 1;
}

/* ===== RESPONSIVE DESIGN COMPACTO ===== */

@media (max-width: 1200px) {
    .present-section-title {
        font-size: 2.5rem;
    }
    
    .present-card-image {
        width: 320px;
        height: 320px;
    }
    
    .present-card-text {
        padding: 20px;
    }
    
    .present-card-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .presentation-products {
        padding: 70px 0;
    }
    
    .present-section-header {
        margin-bottom: 50px;
    }
    
    .present-section-title {
        font-size: 2.2rem;
    }
    
    .present-cards-container {
        gap: 35px;
    }
    
    .present-card-image {
        width: 280px;
        height: 280px;
    }
    
    .present-card-text {
        padding: 20px;
    }
    
    .present-card-title {
        font-size: 1.2rem;
    }
    
    .present-card-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .presentation-products {
        padding: 60px 0;
    }
    
    .present-container {
        padding: 0 15px;
    }
    
    .present-section-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .present-section-subtitle {
        font-size: 1rem;
    }
    
    .present-section-header {
        margin-bottom: 40px;
    }
    
    .present-cards-container {
        gap: 30px;
    }
    
    /* En móviles, cambiar a layout vertical */
    .present-card,
    .present-card-reverse {
        flex-direction: column;
    }
    
    .present-card-image {
        width: 250px;
        height: 250px;
        margin: 20px auto 0;
        border-radius: 12px !important;
        overflow: hidden !important;
    }
    
    .present-card-image img {
        border-radius: 12px !important;
        overflow: hidden !important;
    }
    
    .present-card-text {
        padding: 20px;
        text-align: center;
    }
    
    .present-card-title {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 12px;
    }
    
    .present-card-description {
        font-size: 0.85rem;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .present-card-highlight {
        text-align: center;
        padding: 10px 12px;
        font-size: 0.8rem;
    }
    
    .present-card-category {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .presentation-products {
        padding: 50px 0;
    }
    
    .present-section-title {
        font-size: 1.6rem;
    }
    
    .present-section-subtitle {
        font-size: 0.9rem;
    }
    
    .present-card {
        border-radius: 12px;
    }
    
    .present-card-image {
        width: 220px;
        height: 220px;
    }
    
    .present-card-text {
        padding: 15px;
    }
    
    .present-card-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .present-card-description {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .present-card-highlight {
        padding: 8px 10px;
        font-size: 0.75rem;
    }
    
    .present-card-highlight i {
        font-size: 0.9rem;
    }
    
    .present-cards-container {
        gap: 25px;
    }
}

@media (max-width: 360px) {
    .presentation-products {
        padding: 40px 0;
    }
    
    .present-section-title {
        font-size: 1.4rem;
    }
    
    .present-section-subtitle {
        font-size: 0.85rem;
    }
    
    .present-card-image {
        width: 200px;
        height: 200px;
    }
    
    .present-card-text {
        padding: 12px;
    }
    
    .present-card-title {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .present-card-description {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }
    
    .present-card-highlight {
        padding: 6px 8px;
        font-size: 0.7rem;
    }
    
    .present-card-highlight i {
        font-size: 0.8rem;
    }
    
    .present-cards-container {
        gap: 20px;
    }
}

/* ===== ANIMACIONES SIMPLES ===== */

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.present-card:hover {
    animation: cardFloat 2s ease-in-out infinite;
}
  

/* ===== CONTACT SECTION STYLES ===== */
.contact {
  background-color: #fafafa;
  padding: 80px 0;
}

/* Contact Header */
.contact-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  position: relative;
  padding: 0 20px;
}

.contact-heading {
  width: 120px;
  height: auto;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.contact-heading:first-of-type {
  left: 0;
}

.contact-heading:last-of-type {
  right: 0;
}

.contact-title-container {
  text-align: center;
  max-width: 600px;
  padding: 0 140px; /* Espacio para los logos decorativos */
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #915200;
  margin-bottom: 15px;
  position: relative;
}

.contact-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #d1a000;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-top: 20px;
}

/* Contact Content */
.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Contact section spacing improvements */
@media (max-width: 768px) {
  .contact-content {
    padding: 0 15px;
  }
  
  .contact-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .contact-content {
    padding: 0 10px;
  }
  
  .contact-row {
    gap: 30px;
  }
}

/* Contact Information Section */
.contact-info-section {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: fit-content;
}

.contact-info-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #915200;
  margin-bottom: 30px;
  position: relative;
  text-align: center;
}

.contact-info-section h3::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #d1a000;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item:hover {
  background-color: rgba(145, 82, 0, 0.02);
  padding-left: 10px;
  border-radius: 8px;
}



.contact-item i {
  font-size: 18px;
  color: #d1a000;
  margin-right: 15px;
  width: 25px;
  text-align: center;
}

.contact-item span {
  font-size: 16px;
  color: #555;
  font-weight: 400;
}

/* Map Container */
.map-container {
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  background: #f8f8f8;
  min-height: 250px;
  position: relative;
}

.map-placeholder {
  position: relative;
  height: 250px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  display: block;
}

/* Contact Form Section */
.contact-form-section {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: fit-content;
}

.contact-form-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #915200;
  margin-bottom: 30px;
  position: relative;
  text-align: center;
}

.contact-form-section h3::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #d1a000;
}

/* Form Styles */
.form-group {
  margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  background-color: #fafafa;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #915200;
  background-color: white;
  box-shadow: 0 0 0 3px rgba(145, 82, 0, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
  font-weight: 400;
}

/* Form validation styles */
.form-group input:valid,
.form-group textarea:valid {
  border-color: #28a745;
}

.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group textarea:invalid:not(:focus):not(:placeholder-shown) {
  border-color: #dc3545;
}

/* Form responsive improvements */
@media (max-width: 768px) {
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group input,
  .form-group textarea {
    font-size: 16px; /* Prevent zoom on iOS */
    padding: 12px 15px;
  }
  
  .form-group textarea {
    min-height: 100px;
  }
}

/* Button Styles */
.contact-form-section .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(135deg, #915200 0%, #643500 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(145, 82, 0, 0.3);
}

.contact-form-section .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(145, 82, 0, 0.4);
  background: linear-gradient(135deg, #643500 0%, #915200 100%);
}

.contact-form-section .btn:active {
  transform: translateY(0);
}

.contact-form-section .btn i {
  font-size: 14px;
}

.form-note {
  font-size: 14px;
  color: #888;
  margin-top: 15px;
  text-align: center;
}

/* Mobile button improvements */
@media (max-width: 768px) {
  .contact-form-section .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 16px;
    margin-top: 10px;
  }
  
  .contact-form-section .btn i {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .contact-form-section .btn {
    padding: 12px 20px;
    font-size: 15px;
  }
  
  .form-note {
    font-size: 13px;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-heading {
    width: 100px;
  }
  
  .contact-title {
    font-size: 2.2rem;
  }
  
  .contact-title-container {
    padding: 0 120px;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 60px 0;
  }
  
  .contact-header {
    margin-bottom: 50px;
  }
  
  .contact-heading {
    width: 80px;
  }
  
  .contact-title-container {
    padding: 0 100px;
  }
  
  .contact-title {
    font-size: 2rem;
  }
  
  .contact-subtitle {
    font-size: 1rem;
  }
  
  .contact-info-section,
  .contact-form-section {
    padding: 30px 20px;
  }
  
  .map-container {
    min-height: 200px;
  }
  
  .map-placeholder {
    height: 200px;
  }
  
  .map-placeholder iframe {
    width: 100%;
    height: 100%;
  }
  
  .contact-item {
    margin-bottom: 15px;
    padding: 10px 0;
  }
  
  .contact-item i {
    font-size: 16px;
    margin-right: 12px;
  }
  
  .contact-item span {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .contact {
    padding: 50px 0;
  }
  
  .contact-header {
    margin-bottom: 40px;
  }
  
  .contact-heading {
    width: 60px;
  }
  
  .contact-title-container {
    padding: 0 80px;
  }
  
  .contact-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  
  .contact-subtitle {
    font-size: 0.95rem;
  }
  
  .contact-info-section,
  .contact-form-section {
    padding: 25px 15px;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 12px 15px;
    font-size: 14px;
  }
  
  .contact-form-section .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
  
  .contact-item {
    margin-bottom: 12px;
    padding: 8px 0;
  }
  
  .contact-item i {
    font-size: 14px;
    margin-right: 10px;
  }
  
  .contact-item span {
    font-size: 14px;
  }
  
  .map-container {
    min-height: 180px;
  }
  
  .map-placeholder {
    height: 180px;
  }
}

/* ===== CONTACT ULTRA RESPONSIVE ===== */
@media (max-width: 360px) {
  .contact {
    padding: 40px 0;
  }
  
  .contact-header {
    margin-bottom: 30px;
  }
  
  .contact-heading {
    width: 50px;
  }
  
  .contact-title-container {
    padding: 0 70px;
  }
  
  .contact-title {
    font-size: 1.6rem;
  }
  
  .contact-subtitle {
    font-size: 0.9rem;
  }
  
  .contact-info-section,
  .contact-form-section {
    padding: 20px 12px;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .contact-form-section .btn {
    padding: 10px 15px;
    font-size: 14px;
  }
  
  .contact-item {
    padding: 6px 0;
    margin-bottom: 10px;
  }
  
  .contact-item i {
    font-size: 12px;
    margin-right: 8px;
    width: 16px;
  }
  
  .contact-item span {
    font-size: 13px;
    line-height: 1.3;
  }
  
  .map-container {
    min-height: 160px;
  }
  
  .map-placeholder {
    height: 160px;
  }
}

/* Footer Styles */
footer {
  background-color: #240909;
  color: #f2f2f2;
  padding: 30px 0 10px; /* Reducido de 50px 0 15px a 30px 0 10px */
  font-family: "Poppins", sans-serif;
  text-align: center;
}

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px; /* Reducido de 30px a 20px */
  margin-bottom: 20px; /* Reducido de 30px a 20px */
  justify-items: center;
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 280px;
  width: 100%;
}

/* Company section - Más compacto */
.logo-footer {
  width: 140px; /* Reducido de 160px a 140px */
  margin-bottom: 10px; /* Reducido de 15px a 10px */
  transition: transform 0.3s ease;
}

.logo-footer:hover {
  transform: scale(1.05);
}



/* Add a subtle glow effect on hover */
#company:hover .logo-footer {
  animation: logoGlow 1.5s infinite alternate;
}

@keyframes logoGlow {
  from {
    filter: brightness(1);
  }
  to {
    filter: brightness(1.3) drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
  }
}

#company p {
  margin-bottom: 15px; /* Reducido de 20px a 15px */
  line-height: 1.4; /* Reducido de 1.5 a 1.4 */
  color: #ccc;
  text-align: center;
  font-size: 0.9rem; /* Reducido de 0.95rem a 0.9rem */
  max-width: 200px;
}

.social-links {
  display: flex;
  gap: 10px; /* Reducido de 12px a 10px */
  justify-content: center;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; /* Reducido de 36px a 32px */
  height: 32px; /* Reducido de 36px a 32px */
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 14px; /* Reducido de 16px a 14px */
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #915200;
  transform: translateY(-2px);
}

.footer-col h3 {
  color: #fff;
  font-size: 16px; /* Reducido de 18px a 16px */
  font-weight: 600;
  margin-bottom: 15px; /* Reducido de 20px a 15px */
  position: relative;
  padding-bottom: 6px; /* Reducido de 8px a 6px */
  text-align: center;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 30px; /* Reducido de 35px a 30px */
  height: 2px;
  background-color: #915200;
}


.footer-links {
  list-style: none;
  padding: 0;
  text-align: center;
  width: 100%;
}

.footer-links li {
  margin-bottom: 6px; /* Reducido de 8px a 6px */
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding: 3px 6px; /* Reducido de 4px 8px a 3px 6px */
  font-size: 0.85rem; /* Reducido de 0.9rem a 0.85rem */
}

.footer-links a:hover {
  color: #fff;
  transform: translateY(-2px);
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #915200;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover::before {
  width: 100%;
  opacity: 1;
}

/* Logo footer hover effect - clean and simple */
.logo-footer {
  width: 200px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  border: none;
  outline: none;
  box-shadow: none;
}

.logo-footer:hover {
  transform: scale(1.08);
  border: none;
  outline: none;
  box-shadow: none;
}

.footer-bottom {
  text-align: center;
  padding-top: 15px; /* Reducido si había más padding */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 15px; /* Reducido si había más margen */
}

.footer-bottom p {
  margin: 0;
  font-size: 0.8rem; /* Más pequeño */
  color: #aaa;
}

/* Responsive adjustments - Más compactos */
@media (max-width: 768px) {
  footer {
    padding: 25px 0 8px; /* Aún más compacto en móviles */
  }
  
  .footer-content {
    gap: 15px;
    margin-bottom: 15px;
  }

  .footer-col {
    margin-bottom: 25px; /* Espacio entre cada sección */
    padding-bottom: 20px; /* Padding interno */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);}
  

    .footer-col:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }

  .contact-info {
    gap: 8px; /* Reducido de 15px a 8px */
  }
  
  .contact-item {
    padding: 6px 0; /* Reducido de 8px a 6px */
    margin-bottom: 6px; /* Reducido de 8px a 6px */
  }
  
  .contact-item i {
    font-size: 14px;
    margin-right: 10px;
    width: 16px;
  }
  
  .contact-item p {
    font-size: 0.8rem;
    line-height: 1.2;
}
  }

@media (max-width: 480px) {
  .footer-col {
    margin-bottom: 30px; /* Más espacio en pantallas muy pequeñas */
    padding-bottom: 25px;
  }
}

/* Contact section in footer - Modern redesign without background boxes */
#contact {
  position: relative;
  text-align: center;
}

#contact h3 {
  margin-bottom: 30px;
  text-align: center;
}


.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px; /* Reducido de 20px a 10px */
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px; /* Reducido de 20px a 8px */
  padding: 8px 0; /* Reducido de 15px 0 a 8px 0 */
}




.contact-item:hover {
  transform: translateX(5px);
  border-left: 2px solid #915200;
  padding-left: 8px;
}

.contact-item i {
  color: #915200;
  font-size: 16px; /* Reducido de 18px a 16px */
  margin-right: 12px; /* Reducido de 15px a 12px */
  margin-top: 2px; /* Reducido de 3px a 2px */
  width: 18px; /* Reducido de 20px a 18px */
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-item:hover i {
  transform: scale(1.2);
}

.contact-item p {
  color: #ccc;
  margin: 0;
  line-height: 1.3; /* Reducido de 1.5 a 1.3 */
  font-size: 0.85rem; /* Reducido de 0.95rem a 0.85rem */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-info {
    gap: 15px;
  }
  
  .contact-item {
    padding: 8px;
  }
}

/* Estilos para la sección Products */
.products {
  padding: 80px 0;
  background-color: #f5f0e8;
}

/* Header de la sección Products - Similar al About */
.products-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  position: relative;
  padding: 0 20px;
}

.products-header .heading {
  height: 100px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.products-header .heading:first-of-type {
  left: 0;
}

.products-header .heading:last-of-type {
  right: 0;
}

.products-title-container {
  text-align: center;
  padding: 0 120px;
}

.products-title {
  color: #915200;
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.products-subtitle {
  color: #643500;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0;
  font-style: italic;
}

/* Grid de productos - Layout horizontal */
.products-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 60px;
}

/* ===== PRODUCT CARDS - ESTILO ESTANDARIZADO ===== */
.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: row;
  min-height: 300px;
  height: auto;
  align-items: stretch;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Contenedor de imagen - Tamaño fijo y consistente */
.product-image-container {
  position: relative;
  flex: 0 0 350px;
  min-height: 300px;
  height: auto;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px 0 0 15px;
}

/* Contenedores más grandes para productos específicos */
.product-card:nth-child(8) .product-image-container,
.product-card:nth-child(9) .product-image-container,
.product-card:nth-child(10) .product-image-container,
.product-card:nth-child(11) .product-image-container,
.product-card:nth-child(12) .product-image-container,
.product-card:nth-child(13) .product-image-container,
.product-card:nth-child(14) .product-image-container,
.product-card:nth-child(15) .product-image-container,
.product-card:nth-child(16) .product-image-container,
.product-card:nth-child(17) .product-image-container,
.product-card:nth-child(18) .product-image-container,
.product-card:nth-child(19) .product-image-container,
.product-card:nth-child(20) .product-image-container,
.product-card:nth-child(21) .product-image-container,
.product-card:nth-child(22) .product-image-container,
.product-card:nth-child(23) .product-image-container,
.product-card:nth-child(24) .product-image-container,
.product-card:nth-child(25) .product-image-container,
.product-card:nth-child(26) .product-image-container,
.product-card:nth-child(27) .product-image-container,
.product-card:nth-child(28) .product-image-container,
.product-card:nth-child(29) .product-image-container,
.product-card:nth-child(30) .product-image-container,
.product-card:nth-child(31) .product-image-container,
.product-card:nth-child(32) .product-image-container,
.product-card:nth-child(33) .product-image-container,
.product-card:nth-child(34) .product-image-container,
.product-card:nth-child(35) .product-image-container,
.product-card:nth-child(36) .product-image-container,
.product-card:nth-child(37) .product-image-container,
.product-card:nth-child(38) .product-image-container,
.product-card:nth-child(39) .product-image-container,
.product-card:nth-child(40) .product-image-container,
.product-card:nth-child(41) .product-image-container,
.product-card:nth-child(42) .product-image-container,
.product-card:nth-child(43) .product-image-container,
.product-card:nth-child(44) .product-image-container,
.product-card:nth-child(45) .product-image-container,
.product-card:nth-child(46) .product-image-container,
.product-card:nth-child(47) .product-image-container,
.product-card:nth-child(48) .product-image-container,
.product-card:nth-child(49) .product-image-container,
.product-card:nth-child(50) .product-image-container {
  flex: 0 0 400px;
  min-height: 350px;
}

/* Imagen del producto - Tamaño consistente */
.product-image {
  max-width: 280px;
  max-height: 280px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
}

/* Imágenes más grandes para productos específicos */
.product-card:nth-child(8) .product-image,
.product-card:nth-child(9) .product-image,
.product-card:nth-child(10) .product-image,
.product-card:nth-child(11) .product-image,
.product-card:nth-child(12) .product-image,
.product-card:nth-child(13) .product-image,
.product-card:nth-child(14) .product-image,
.product-card:nth-child(15) .product-image,
.product-card:nth-child(16) .product-image,
.product-card:nth-child(17) .product-image,
.product-card:nth-child(18) .product-image,
.product-card:nth-child(19) .product-image,
.product-card:nth-child(20) .product-image,
.product-card:nth-child(21) .product-image,
.product-card:nth-child(22) .product-image,
.product-card:nth-child(23) .product-image,
.product-card:nth-child(24) .product-image,
.product-card:nth-child(25) .product-image,
.product-card:nth-child(26) .product-image,
.product-card:nth-child(27) .product-image,
.product-card:nth-child(28) .product-image,
.product-card:nth-child(29) .product-image,
.product-card:nth-child(30) .product-image,
.product-card:nth-child(31) .product-image,
.product-card:nth-child(32) .product-image,
.product-card:nth-child(33) .product-image,
.product-card:nth-child(34) .product-image,
.product-card:nth-child(35) .product-image,
.product-card:nth-child(36) .product-image,
.product-card:nth-child(37) .product-image,
.product-card:nth-child(38) .product-image,
.product-card:nth-child(39) .product-image,
.product-card:nth-child(40) .product-image,
.product-card:nth-child(41) .product-image,
.product-card:nth-child(42) .product-image,
.product-card:nth-child(43) .product-image,
.product-card:nth-child(44) .product-image,
.product-card:nth-child(45) .product-image,
.product-card:nth-child(46) .product-image,
.product-card:nth-child(47) .product-image,
.product-card:nth-child(48) .product-image,
.product-card:nth-child(49) .product-image,
.product-card:nth-child(50) .product-image {
  max-width: 320px;
  max-height: 320px;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

/* Overlay de categoría */
.product-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
}

.product-category {
  background: rgba(145, 82, 0, 0.9);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(5px);
}

/* Información del producto - Layout horizontal */
.product-info {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: visible;
  height: auto;
}

.product-name {
  color: #915200;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.product-text {
  color: #a57936;
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 15px 0;
  font-style: italic;
}

.product-description {
  color: #333;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  text-align: left;
  padding-left: 0;
  list-style: none;
  counter-reset: list-counter;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-description li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 25px;
  margin-bottom: 6px;
  flex-shrink: 0;
}

.product-description li:last-child {
  margin-bottom: 0;
}

.product-description li::before {
  content: counter(list-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #915200;
  font-weight: 600;
  font-size: 0.85em;
}

/* Variantes del producto */
.product-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.variant {
  background: rgba(145, 82, 0, 0.1);
  color: #915200;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(145, 82, 0, 0.2);
  transition: all 0.3s ease;
}

.variant:hover {
  background: rgba(145, 82, 0, 0.2);
  transform: translateY(-2px);
}

/* Call to action */
.products-cta {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  margin-top: 40px;
}

.products-cta h3 {
  color: #915200;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 15px 0;
}

.products-cta p {
  color: #643500;
  font-size: 1.1rem;
  margin: 0 0 30px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== RESPONSIVE DESIGN PARA PRODUCT CARDS ===== */
@media (max-width: 1200px) {
  .product-image-container {
    flex: 0 0 320px;
    min-height: 280px;
  }
  
  .product-image {
    max-width: 250px;
    max-height: 250px;
  }
  
  .product-card {
    min-height: 280px;
  }
  
  /* Productos específicos más grandes en pantallas grandes */
  .product-card:nth-child(8) .product-image-container,
  .product-card:nth-child(9) .product-image-container,
  .product-card:nth-child(10) .product-image-container,
  .product-card:nth-child(11) .product-image-container,
  .product-card:nth-child(12) .product-image-container,
  .product-card:nth-child(13) .product-image-container,
  .product-card:nth-child(14) .product-image-container,
  .product-card:nth-child(15) .product-image-container,
  .product-card:nth-child(16) .product-image-container,
  .product-card:nth-child(17) .product-image-container,
  .product-card:nth-child(18) .product-image-container,
  .product-card:nth-child(19) .product-image-container,
  .product-card:nth-child(20) .product-image-container,
  .product-card:nth-child(21) .product-image-container,
  .product-card:nth-child(22) .product-image-container,
  .product-card:nth-child(23) .product-image-container,
  .product-card:nth-child(24) .product-image-container,
  .product-card:nth-child(25) .product-image-container,
  .product-card:nth-child(26) .product-image-container,
  .product-card:nth-child(27) .product-image-container,
  .product-card:nth-child(28) .product-image-container,
  .product-card:nth-child(29) .product-image-container,
  .product-card:nth-child(30) .product-image-container,
  .product-card:nth-child(31) .product-image-container,
  .product-card:nth-child(32) .product-image-container,
  .product-card:nth-child(33) .product-image-container,
  .product-card:nth-child(34) .product-image-container,
  .product-card:nth-child(35) .product-image-container,
  .product-card:nth-child(36) .product-image-container,
  .product-card:nth-child(37) .product-image-container,
  .product-card:nth-child(38) .product-image-container,
  .product-card:nth-child(39) .product-image-container,
  .product-card:nth-child(40) .product-image-container,
  .product-card:nth-child(41) .product-image-container,
  .product-card:nth-child(42) .product-image-container,
  .product-card:nth-child(43) .product-image-container,
  .product-card:nth-child(44) .product-image-container,
  .product-card:nth-child(45) .product-image-container,
  .product-card:nth-child(46) .product-image-container,
  .product-card:nth-child(47) .product-image-container,
  .product-card:nth-child(48) .product-image-container,
  .product-card:nth-child(49) .product-image-container,
  .product-card:nth-child(50) .product-image-container {
    flex: 0 0 360px;
    min-height: 320px;
  }
  
  .product-card:nth-child(8) .product-image,
  .product-card:nth-child(9) .product-image,
  .product-card:nth-child(10) .product-image,
  .product-card:nth-child(11) .product-image,
  .product-card:nth-child(12) .product-image,
  .product-card:nth-child(13) .product-image,
  .product-card:nth-child(14) .product-image,
  .product-card:nth-child(15) .product-image,
  .product-card:nth-child(16) .product-image,
  .product-card:nth-child(17) .product-image,
  .product-card:nth-child(18) .product-image,
  .product-card:nth-child(19) .product-image,
  .product-card:nth-child(20) .product-image,
  .product-card:nth-child(21) .product-image,
  .product-card:nth-child(22) .product-image,
  .product-card:nth-child(23) .product-image,
  .product-card:nth-child(24) .product-image,
  .product-card:nth-child(25) .product-image,
  .product-card:nth-child(26) .product-image,
  .product-card:nth-child(27) .product-image,
  .product-card:nth-child(28) .product-image,
  .product-card:nth-child(29) .product-image,
  .product-card:nth-child(30) .product-image,
  .product-card:nth-child(31) .product-image,
  .product-card:nth-child(32) .product-image,
  .product-card:nth-child(33) .product-image,
  .product-card:nth-child(34) .product-image,
  .product-card:nth-child(35) .product-image,
  .product-card:nth-child(36) .product-image,
  .product-card:nth-child(37) .product-image,
  .product-card:nth-child(38) .product-image,
  .product-card:nth-child(39) .product-image,
  .product-card:nth-child(40) .product-image,
  .product-card:nth-child(41) .product-image,
  .product-card:nth-child(42) .product-image,
  .product-card:nth-child(43) .product-image,
  .product-card:nth-child(44) .product-image,
  .product-card:nth-child(45) .product-image,
  .product-card:nth-child(46) .product-image,
  .product-card:nth-child(47) .product-image,
  .product-card:nth-child(48) .product-image,
  .product-card:nth-child(49) .product-image,
  .product-card:nth-child(50) .product-image {
    max-width: 290px;
    max-height: 290px;
  }
}

@media (max-width: 992px) {
  .product-image-container {
    flex: 0 0 300px;
    min-height: 260px;
  }
  
  .product-image {
    max-width: 230px;
    max-height: 230px;
  }
  
  .product-card {
    min-height: 260px;
  }
  
  .products-title {
    font-size: 2.4rem;
  }
  
  .products-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .products {
    padding: 60px 0;
  }
  
  .products-header {
    margin-bottom: 40px;
  }
  
  .products-header .heading {
    height: 60px;
  }
  
  .products-title-container {
    padding: 0 80px;
  }
  
  .products-title {
    font-size: 1.7rem;
    line-height: 1.2;
  }
  
  .products-subtitle {
    font-size: 1rem;
    line-height: 1.3;
  }
  
  /* Cambiar a layout vertical en móviles */
  .product-card {
    flex-direction: column;
    min-height: auto;
    height: auto;
  }
  
  .product-image-container {
    flex: 0 0 250px;
    height: 250px;
    border-radius: 15px 15px 0 0;
  }
  
  .product-image {
    max-width: 200px;
    max-height: 200px;
  }
  
  .product-info {
    padding: 20px;
    overflow-y: visible;
    height: auto;
  }
  
  .product-name {
    font-size: 1.3rem;
  }
  
  .product-description {
    font-size: 0.85rem;
  }
  
  .product-description li {
    margin-bottom: 5px;
    padding-left: 20px;
  }
  
  .product-description li::before {
    font-size: 0.75em;
  }
  
  .products-cta {
    padding: 30px 15px;
  }
  
  .products-cta h3 {
    font-size: 1.6rem;
  }
  
  .products-cta p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .products {
    padding: 50px 0;
  }
  
  .products-header .heading {
    height: 45px;
  }
  
  .products-title-container {
    padding: 0 60px;
  }
  
  .products-title {
    font-size: 1.4rem;
    line-height: 1.2;
  }
  
  .products-subtitle {
    font-size: 0.9rem;
    line-height: 1.3;
}
  
  .product-image-container {
    flex: 0 0 220px;
    height: 220px;
  }
  
  .product-image {
    max-width: 180px;
    max-height: 180px;
  }
  
  .product-info {
    padding: 15px;
  }
  
  .product-name {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .product-description {
    font-size: 0.8rem;
  }
  
  .product-description li {
    margin-bottom: 4px;
    padding-left: 18px;
  }
  
  .product-description li::before {
    font-size: 0.7em;
  }
  
  .variant {
    font-size: 0.8rem;
    padding: 5px 10px;
  }
  }

@media (max-width: 360px) {
  .products {
    padding: 40px 0;
  }
  
  .products-header .heading {
    height: 30px;
  }
  
  .products-title-container {
    padding: 0 40px;
  }
  
  .products-title {
    font-size: 1.2rem;
    line-height: 1.2;
  }
  
  .products-subtitle {
    font-size: 0.8rem;
    line-height: 1.3;
  }
  
  .product-image-container {
    flex: 0 0 200px;
    height: 200px;
  }
  
  .product-image {
    max-width: 160px;
    max-height: 160px;
  }
  
  .product-info {
    padding: 12px;
  }
  
  .product-name {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  
  .product-description {
    font-size: 0.75rem;
  }
  
  .product-description li {
    margin-bottom: 3px;
    padding-left: 16px;
  }
  
  .product-description li::before {
    font-size: 0.65em;
  }
}

@media (max-width: 320px) {
  .products-header .heading {
    height: 25px;
  }
  
  .products-title-container {
    padding: 0 30px;
  }
  
  .products-title {
    font-size: 1.1rem;
    line-height: 1.2;
  }
  
  .products-subtitle {
    font-size: 0.75rem;
    line-height: 1.3;
  }
  
  .product-image-container {
    flex: 0 0 180px;
    height: 180px;
  }
  
  .product-image {
    max-width: 140px;
    max-height: 140px;
  }
  
  .product-info {
    padding: 10px;
  }
  
  .product-name {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  
  .product-description {
    font-size: 0.7rem;
  }
  
  .product-description li {
    margin-bottom: 2px;
    padding-left: 14px;
  }
  
  .product-description li::before {
    font-size: 0.6em;
  }
}

/* ===== PRODUCTS DESCRIPTION ===== */
.products-description {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 10;
}

.products-description p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #643500;
  font-weight: 400;
  margin: 0;
  padding: 25px 30px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(145, 82, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s ease;
}

.products-description p::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #915200, transparent);
  border-radius: 2px;
}

.products-description p:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-color: rgba(145, 82, 0, 0.2);
}

/* Variante con icono */
.products-description.with-icon {
  position: relative;
}

.products-description.with-icon::before {
  content: '🌿';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  z-index: 11;
  background: #f5f0e8;
  padding: 5px 15px;
  border-radius: 20px;
  border: 2px solid rgba(145, 82, 0, 0.2);
}

.products-description.with-icon p {
  margin-top: 20px;
}

/* Variante con borde lateral */
.products-description.bordered {
  border-left: 4px solid #915200;
  padding-left: 30px;
  text-align: left;
  margin-left: 20px;
}

.products-description.bordered p {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 20px 0;
}

.products-description.bordered p::before {
  display: none;
}

/* Responsive design para productos description */
@media (max-width: 768px) {
  .products-description {
    margin-bottom: 30px;
    padding: 0 15px;
  }
  
  .products-description p {
    font-size: 1rem;
    padding: 20px 20px;
    line-height: 1.6;
  }
  
  .products-description.with-icon::before {
    font-size: 1.5rem;
    top: -10px;
  }
  
  .products-description.bordered {
    margin-left: 10px;
    padding-left: 20px;
  }
}

@media (max-width: 480px) {
  .products-description p {
    font-size: 0.95rem;
    padding: 15px 15px;
  }
  
  .products-description.with-icon::before {
    font-size: 1.3rem;
  }
}

/* Todas las product cards siguen el mismo patrón estandarizado */
