/*Reseteo básico*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:"Roboto", sans-serif;
}




/* Estilos del body */
.fondo-index {
  background-image: url('../images/fondo.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
}

/*Header del Sitio web*/
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: #303b36ee;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo y nombre */
.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  color: white;
  gap: 10px;
  z-index: 1001;
}

.logo img {
  width: 60px;
  height: 60px;
}

.logo h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
}

/* Contenedor derecho (nav + carrito) */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Navegación */
nav ul {
  display: flex;
  list-style: none;
  gap: 29px;
  align-items: center;
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 1.15rem;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: rgb(193, 163, 98);
}

/* Carrito */
.cart-icon {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  z-index: 1001;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: rgb(193, 163, 98);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
}

/* Menú Hamburguesa */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Animación del menú hamburguesa cuando está abierto */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero / Inicio */
.hero {
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: whitesmoke;
  padding: 20px;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Botón */
.btn {
  background: rgb(193, 163, 98);
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: inline-block;
}

.btn:hover {
  background: #40916c;
  transform: translateY(-2px);
}

/* Estilos del Footer */
footer {
  background-color: #303b36;
  color: #fff;
  padding: 40px 60px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-col ul li a:hover {
  opacity: 0.7;
}

/* Formulario */
.footer-col form {
  display: flex;
  margin-top: 10px;
}

.footer-col input {
  padding: 10px;
  border: none;
  border-radius: 20px 0 0 20px;
  outline: none;
  flex: 1;
  font-size: 0.9rem;
}

.footer-col button {
  padding: 10px 20px;
  border: none;
  background: rgb(193, 163, 98);
  color: black;
  border-radius: 0 20px 20px 0;
  cursor: pointer;
  transition: background 0.3s;
}

.footer-col button:hover {
  background: rgb(173, 143, 78);
}

/* ========================================
   MEDIA QUERIES - RESPONSIVO
   ======================================== */

/* Tablets - pantallas medianas (768px - 1024px) */
@media (max-width: 1024px) {
  header {
    padding: 15px 30px;
  }

  nav ul {
    gap: 20px;
  }

  nav ul li a {
    font-size: 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  footer {
    padding: 30px 40px;
  }
}

/* Tablets pequeñas y móviles grandes (481px - 768px) */
@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }

  .logo h1 {
    font-size: 1.2rem;
  }

  .logo img {
    width: 50px;
    height: 50px;
  }

  /* Mostrar menú hamburguesa */
  .menu-toggle {
    display: flex;
  }

  /* Ocultar navegación por defecto en móvil */
  nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #303b36;
    transition: left 0.3s ease;
    padding-top: 80px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
  }

  nav.active {
    left: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    padding: 20px;
  }

  nav ul li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  nav ul li a {
    display: block;
    padding: 15px 10px;
    font-size: 1.1rem;
  }

  /* Overlay cuando el menú está abierto */
  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .overlay.active {
    display: block;
  }

  .hero {
    min-height: 80vh;
    padding: 15px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .btn {
    font-size: 1rem;
    padding: 10px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  footer {
    padding: 30px 20px;
  }

  .footer-col form {
    flex-direction: column;
  }

  .footer-col input {
    border-radius: 20px;
    margin-bottom: 10px;
  }

  .footer-col button {
    border-radius: 20px;
  }
}

/* Móviles pequeños (hasta 480px) */
@media (max-width: 480px) {
  header {
    padding: 10px 15px;
  }

  .logo h1 {
    font-size: 1rem;
  }

  .logo img {
    width: 40px;
    height: 40px;
  }

  .menu-toggle span {
    width: 25px;
  }

  nav {
    width: 85%;
  }

  .cart-icon svg {
    width: 24px;
    height: 24px;
  }

  .cart-count {
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
  }

  .hero {
    min-height: 70vh;
    padding: 10px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  .btn {
    font-size: 0.9rem;
    padding: 10px 18px;
  }

  footer {
    padding: 20px 15px;
  }

  .footer-col h2 {
    font-size: 1.3rem;
  }

  .footer-col h3 {
    font-size: 1.1rem;
  }

  .footer-col p {
    font-size: 0.85rem;
  }
}

/* Móviles muy pequeños (hasta 320px) */
@media (max-width: 320px) {
  .logo h1 {
    font-size: 0.9rem;
  }

  nav {
    width: 90%;
  }

  nav ul li a {
    font-size: 1rem;
  }

  .hero-content h1 {
    font-size: 1.3rem;
  }

  .hero-content p {
    font-size: 0.85rem;
  }
}

/* ========================================
   SOBRE NOSOTROS - DISEÑO
   ======================================== */

.fondo-sobre {
  background-image: url('../images/fondo-sobrenosotros.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}

.sobre-nosotros-contenido {
  display: flex;
  gap: 40px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 60px;
  padding: 0 20px;
}

.sobre-nosotros-hero {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.sobre-nosotros-container {
  width: 700px;
  max-width: 100%;
  height: auto;
  min-height: 650px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 30px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px;
  gap: 30px;
}

.sobre-nosotros-secundario {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sobre-nosotros-mini-container {
  width: 650px;
  max-width: 100%;
  height: auto;
  min-height: 300px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 30px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 60px;
  gap: 18px;
}

.sobre-nosotros-label {
  font-size: 1rem;
  letter-spacing: 2px;
  color: #222;
  opacity: 0.7;
  margin-bottom: 10px;
}

.sobre-nosotros-container h2,
.sobre-nosotros-mini-container h2 {
  font-size: 3rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 0;
}

.sobre-nosotros-container .about-text,
.sobre-nosotros-mini-container .about-text {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 0;
  line-height: 1.6;
}

.sobre-nosotros-btn {
  background: rgb(193, 163, 98);
  color: #222;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 20px;
  padding: 16px 40px;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.3s, transform 0.2s;
}

.sobre-nosotros-btn:hover {
  background: #38e37a;
  transform: translateY(-2px);
}

/* Sección equipo de trabajo */
.equipo-section {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 30px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
  margin: 40px auto 60px auto;
  padding: 40px 20px 60px 20px;
  max-width: 95vw;
}

.equipo-titulo {
  text-align: center;
  font-size: 2.5rem;
  color: black;
  font-weight: bold;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.equipo-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.equipo-card {
  background: rgba(193, 163, 98, 0.614);
  border-radius: 22px;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.08);
  padding: 38px 28px;
  min-width: 280px;
  max-width: 320px;
  width: 100%;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.equipo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(44, 62, 80, 0.15);
}

.equipo-card h4 {
  font-size: 1.5rem;
  color: black;
  font-weight: bold;
  margin-bottom: 18px;
}

.equipo-card p {
  font-size: 1.15rem;
  color: #222;
  margin-bottom: 0;
  line-height: 1.5;
}

/* ========================================
   MEDIA QUERIES - SOBRE NOSOTROS RESPONSIVO
   ======================================== */

/* Tablets - pantallas medianas (768px - 1024px) */
@media (max-width: 1024px) {
  .sobre-nosotros-contenido {
    gap: 30px;
    margin-top: 40px;
  }

  .sobre-nosotros-container {
    width: 600px;
    min-height: auto;
    padding: 50px 40px;
  }

  .sobre-nosotros-mini-container {
    width: 550px;
    padding: 35px 40px;
  }

  .sobre-nosotros-container h2,
  .sobre-nosotros-mini-container h2 {
    font-size: 2.5rem;
  }

  .sobre-nosotros-container .about-text,
  .sobre-nosotros-mini-container .about-text {
    font-size: 1.1rem;
  }

  .equipo-titulo {
    font-size: 2.2rem;
  }

  .equipo-cards {
    gap: 30px;
  }

  .equipo-card {
    min-width: 260px;
  }
}

/* Tablets pequeñas (481px - 768px) */
@media (max-width: 768px) {
  .sobre-nosotros-contenido {
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
    padding: 0 15px;
  }

  .sobre-nosotros-hero {
    width: 100%;
    justify-content: center;
  }

  .sobre-nosotros-container {
    width: 100%;
    max-width: 600px;
    padding: 40px 30px;
    gap: 20px;
  }

  .sobre-nosotros-secundario {
    width: 100%;
    align-items: center;
    gap: 20px;
  }

  .sobre-nosotros-mini-container {
    width: 100%;
    max-width: 600px;
    padding: 30px 30px;
    gap: 15px;
  }

  .sobre-nosotros-container h2,
  .sobre-nosotros-mini-container h2 {
    font-size: 2rem;
  }

  .sobre-nosotros-container .about-text,
  .sobre-nosotros-mini-container .about-text {
    font-size: 1rem;
  }

  .sobre-nosotros-label {
    font-size: 0.9rem;
  }

  .sobre-nosotros-btn {
    font-size: 1rem;
    padding: 14px 35px;
  }

  .equipo-section {
    padding: 35px 15px 50px 15px;
    margin: 30px auto 40px auto;
  }

  .equipo-titulo {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .equipo-cards {
    gap: 25px;
    padding: 0 10px;
  }

  .equipo-card {
    min-width: 240px;
    max-width: 100%;
    padding: 32px 24px;
  }

  .equipo-card h4 {
    font-size: 1.3rem;
  }

  .equipo-card p {
    font-size: 1.05rem;
  }
}

/* Móviles pequeños (hasta 480px) */
@media (max-width: 480px) {
  .sobre-nosotros-contenido {
    margin-top: 20px;
    padding: 0 10px;
  }

  .sobre-nosotros-container {
    padding: 30px 25px;
    border-radius: 20px;
    gap: 15px;
  }

  .sobre-nosotros-mini-container {
    padding: 25px 25px;
    border-radius: 20px;
    gap: 12px;
  }

  .sobre-nosotros-container h2,
  .sobre-nosotros-mini-container h2 {
    font-size: 1.7rem;
  }

  .sobre-nosotros-container .about-text,
  .sobre-nosotros-mini-container .about-text {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .sobre-nosotros-label {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
  }

  .sobre-nosotros-btn {
    font-size: 0.95rem;
    padding: 12px 30px;
    margin-top: 10px;
  }

  .equipo-section {
    padding: 30px 10px 40px 10px;
    margin: 25px auto 30px auto;
    border-radius: 20px;
  }

  .equipo-titulo {
    font-size: 1.7rem;
    margin-bottom: 25px;
  }

  .equipo-cards {
    gap: 20px;
    padding: 0 5px;
  }

  .equipo-card {
    min-width: 100%;
    padding: 28px 20px;
    border-radius: 18px;
  }

  .equipo-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .equipo-card p {
    font-size: 1rem;
  }
}

/* Móviles muy pequeños (hasta 320px) */
@media (max-width: 320px) {
  .sobre-nosotros-container {
    padding: 25px 20px;
  }

  .sobre-nosotros-mini-container {
    padding: 20px 20px;
  }

  .sobre-nosotros-container h2,
  .sobre-nosotros-mini-container h2 {
    font-size: 1.5rem;
  }

  .sobre-nosotros-container .about-text,
  .sobre-nosotros-mini-container .about-text {
    font-size: 0.9rem;
  }

  .sobre-nosotros-btn {
    font-size: 0.9rem;
    padding: 10px 25px;
  }

  .equipo-titulo {
    font-size: 1.5rem;
  }

  .equipo-card {
    padding: 24px 18px;
  }

  .equipo-card h4 {
    font-size: 1.1rem;
  }

  .equipo-card p {
    font-size: 0.95rem;
  }
}


/* ========================================
   SERVICIOS - DISEÑO
   ======================================== */

.fondo-servicios {
  background-color: bisque;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}

.services-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* Encabezado de la sección */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #4a5568;
  line-height: 1.7;
  font-weight: 400;
}

/* Estadísticas */
.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin: 60px 0;
  text-align: center;
}

.stat-item {
  padding: 20px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #10b981;
  margin-bottom: 8px;
}

.stat-label {
  color: #6b7280;
  font-weight: 500;
  font-size: 1rem;
}

/* Grid de servicios */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

/* Tarjeta de servicio */
.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(229, 231, 235, 0.8);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10b981, #059669);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

/* Icono de servicio */
.service-icon {
  font-size: 3rem;
  margin-bottom: 24px;
  display: block;
}

/* Título y descripción de la tarjeta */
.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.service-description {
  color: #4a5568;
  line-height: 1.7;
  font-size: 1rem;
}

/* Sección CTA (llamado a la acción) */
.cta-section {
  text-align: center;
  margin-top: 80px;
  padding: 60px 40px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 20px;
  color: white;
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1rem;
}

.cta-button:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.cta-button span {
  transition: transform 0.3s ease;
}

.cta-button:hover span {
  transform: translateX(4px);
}

/* ========================================
   MEDIA QUERIES - SERVICIOS RESPONSIVO
   ======================================== */

/* Tablets - pantallas medianas (768px - 1024px) */
@media (max-width: 1024px) {
  .services-section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 3rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .stats-section {
    gap: 30px;
    margin: 50px 0;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .services-grid {
    gap: 30px;
    margin-top: 50px;
  }

  .service-card {
    padding: 35px 25px;
  }

  .cta-section {
    margin-top: 60px;
    padding: 50px 30px;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-subtitle {
    font-size: 1.05rem;
  }
}

/* Tablets pequeñas (481px - 768px) */
@media (max-width: 768px) {
  .services-section {
    padding: 50px 15px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .stats-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.95rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
  }

  .service-card {
    padding: 30px 25px;
  }

  .service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .service-title {
    font-size: 1.35rem;
  }

  .service-description {
    font-size: 0.95rem;
  }

  .cta-section {
    margin-top: 50px;
    padding: 40px 25px;
    border-radius: 16px;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .cta-subtitle {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .cta-button {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}

/* Móviles pequeños (hasta 480px) */
@media (max-width: 480px) {
  .services-section {
    padding: 40px 15px;
  }

  .section-header {
    margin-bottom: 35px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .section-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .stats-section {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 35px 0;
  }

  .stat-item {
    padding: 15px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .services-grid {
    gap: 20px;
    margin-top: 35px;
  }

  .service-card {
    padding: 25px 20px;
    border-radius: 12px;
  }

  .service-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
  }

  .service-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }

  .service-description {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .cta-section {
    margin-top: 40px;
    padding: 35px 20px;
    border-radius: 14px;
  }

  .cta-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .cta-subtitle {
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.5;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 0.9rem;
    border-radius: 40px;
  }
}

/* Móviles muy pequeños (hasta 320px) */
@media (max-width: 320px) {
  .services-section {
    padding: 30px 10px;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .section-subtitle {
    font-size: 0.88rem;
  }

  .stats-section {
    margin: 30px 0;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .service-card {
    padding: 20px 15px;
  }

  .service-icon {
    font-size: 2rem;
  }

  .service-title {
    font-size: 1.15rem;
  }

  .service-description {
    font-size: 0.85rem;
  }

  .cta-section {
    padding: 30px 15px;
  }

  .cta-title {
    font-size: 1.4rem;
  }

  .cta-subtitle {
    font-size: 0.88rem;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}


/* ========================================
   PRODUCTOS - DISEÑO
   ======================================== */

.fondo-productos {
  background-color: bisque;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}

.products-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 3.8rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #1a202c 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.3rem;
  color: #4a5568;
  line-height: 1.8;
  font-weight: 400;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.product-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(229, 231, 235, 0.5);
  position: relative;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

.product-image-container {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(16, 185, 129, 0.95);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.product-content {
  padding: 32px 28px;
}

.product-category {
  color: #10b981;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.product-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.product-description {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.product-features {
  list-style: none;
  margin-bottom: 28px;
  padding: 0;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.product-features li::before {
  content: "✓";
  color: #10b981;
  font-weight: bold;
  font-size: 1rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.product-price {
  display: flex;
  flex-direction: column;
}

.price-current {
  font-size: 2rem;
  font-weight: 900;
  color: #1a202c;
  line-height: 1;
}

.price-unit {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 2px;
}

.add-to-cart-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 14px 24px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.add-to-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.add-to-cart-btn:active {
  transform: translateY(0);
}

.cta-section {
  text-align: center;
  margin-top: 100px;
  padding: 80px 40px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 24px;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.1"/></svg>');
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 36px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   MEDIA QUERIES - PRODUCTOS RESPONSIVO
   ======================================== */

/* Tablets - pantallas medianas (768px - 1024px) */
@media (max-width: 1024px) {
  .products-section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 3.2rem;
  }

  .section-subtitle {
    font-size: 1.2rem;
  }

  .products-grid {
    gap: 35px;
    margin-top: 50px;
  }

  .product-card {
    border-radius: 18px;
  }

  .product-image-container {
    height: 230px;
  }

  .product-content {
    padding: 28px 24px;
  }

  .product-title {
    font-size: 1.5rem;
  }

  .cta-section {
    margin-top: 80px;
    padding: 60px 35px;
  }

  .cta-title {
    font-size: 2.2rem;
  }

  .cta-subtitle {
    font-size: 1.1rem;
  }
}

/* Tablets pequeñas (481px - 768px) */
@media (max-width: 768px) {
  .products-section {
    padding: 50px 15px;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .section-subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }

  .product-card {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

  .product-image-container {
    height: 220px;
  }

  .product-content {
    padding: 26px 22px;
  }

  .product-category {
    font-size: 0.8rem;
  }

  .product-title {
    font-size: 1.4rem;
    margin-bottom: 14px;
  }

  .product-description {
    font-size: 0.92rem;
    margin-bottom: 20px;
  }

  .product-features {
    margin-bottom: 24px;
  }

  .product-features li {
    font-size: 0.88rem;
  }

  .product-footer {
    gap: 12px;
  }

  .price-current {
    font-size: 1.8rem;
  }

  .add-to-cart-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .cta-section {
    margin-top: 60px;
    padding: 50px 25px;
    border-radius: 20px;
  }

  .cta-title {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .cta-subtitle {
    font-size: 1.05rem;
    margin-bottom: 32px;
  }

  .cta-button {
    padding: 16px 32px;
    font-size: 1rem;
  }
}

/* Móviles pequeños (hasta 480px) */
@media (max-width: 480px) {
  .products-section {
    padding: 40px 12px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .section-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .products-grid {
    gap: 25px;
    margin-top: 35px;
  }

  .product-card {
    border-radius: 16px;
  }

  .product-image-container {
    height: 200px;
  }

  .product-badge {
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    font-size: 0.75rem;
  }

  .product-content {
    padding: 24px 20px;
  }

  .product-category {
    font-size: 0.75rem;
    margin-bottom: 6px;
  }

  .product-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .product-description {
    font-size: 0.88rem;
    margin-bottom: 18px;
    line-height: 1.6;
  }

  .product-features {
    margin-bottom: 20px;
  }

  .product-features li {
    font-size: 0.85rem;
    margin-bottom: 5px;
  }

  .product-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .price-current {
    font-size: 1.7rem;
  }

  .price-unit {
    font-size: 0.75rem;
  }

  .add-to-cart-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  .cta-section {
    margin-top: 50px;
    padding: 40px 20px;
    border-radius: 16px;
  }

  .cta-title {
    font-size: 1.7rem;
    margin-bottom: 14px;
  }

  .cta-subtitle {
    font-size: 0.95rem;
    margin-bottom: 28px;
    line-height: 1.5;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}

/* Móviles muy pequeños (hasta 320px) */
@media (max-width: 320px) {
  .products-section {
    padding: 30px 10px;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .section-subtitle {
    font-size: 0.88rem;
  }

  .products-grid {
    gap: 20px;
  }

  .product-image-container {
    height: 180px;
  }

  .product-content {
    padding: 20px 16px;
  }

  .product-title {
    font-size: 1.2rem;
  }

  .product-description {
    font-size: 0.85rem;
  }

  .product-features li {
    font-size: 0.8rem;
  }

  .price-current {
    font-size: 1.5rem;
  }

  .add-to-cart-btn {
    padding: 12px 18px;
    font-size: 0.88rem;
  }

  .cta-section {
    padding: 35px 15px;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-subtitle {
    font-size: 0.88rem;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 0.88rem;
  }
}


/* ========================================
   CONTACTO - DISEÑO
   ======================================== */

.fondo-contacto {
  background-color: bisque;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}

.contact-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #1a202c 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #4a5568;
  line-height: 1.7;
  font-weight: 400;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  padding-right: 40px;
}

.contact-info-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.contact-info-text {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(229, 231, 235, 0.8);
}

.contact-method:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 8px;
}

.contact-details p {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-details a {
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-details a:hover {
  color: #059669;
}

.contact-form {
  background: #ffffff;
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(229, 231, 235, 0.5);
}

.form-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.form-subtitle {
  color: #6b7280;
  margin-bottom: 32px;
  font-size: 1rem;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease;
  background: #fafafa;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #10b981;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0;
}

.form-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  accent-color: #10b981;
}

.checkbox-label {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.5;
  cursor: pointer;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 18px 32px;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 16px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

.map-section {
  margin-top: 100px;
  text-align: center;
}

.map-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.map-subtitle {
  color: #6b7280;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.map-container {
  background: #e5e7eb;
  height: 400px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #6b7280;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Animaciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-method,
.contact-form {
  animation: fadeInUp 0.6s ease forwards;
}

.contact-method:nth-child(1) { animation-delay: 0.1s; }
.contact-method:nth-child(2) { animation-delay: 0.2s; }
.contact-method:nth-child(3) { animation-delay: 0.3s; }
.contact-form { animation-delay: 0.4s; }

/* ========================================
   MEDIA QUERIES - CONTACTO RESPONSIVO
   ======================================== */

/* Tablets - pantallas medianas (768px - 1024px) */
@media (max-width: 1024px) {
  .contact-section {
    padding: 60px 20px;
  }

  .section-header {
    margin-bottom: 60px;
  }

  .section-title {
    font-size: 3rem;
  }

  .section-subtitle {
    font-size: 1.15rem;
  }

  .contact-grid {
    gap: 60px;
  }

  .contact-info {
    padding-right: 20px;
  }

  .contact-info-title {
    font-size: 2.2rem;
  }

  .contact-info-text {
    font-size: 1.05rem;
  }

  .contact-form {
    padding: 40px;
  }

  .form-title {
    font-size: 1.8rem;
  }

  .map-section {
    margin-top: 80px;
  }

  .map-title {
    font-size: 2.2rem;
  }
}

/* Tablets pequeñas (481px - 768px) */
@media (max-width: 768px) {
  .contact-section {
    padding: 50px 15px;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .section-subtitle {
    font-size: 1.05rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-info {
    padding-right: 0;
  }

  .contact-info-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .contact-info-text {
    font-size: 1rem;
    margin-bottom: 35px;
  }

  .contact-methods {
    gap: 28px;
    margin-bottom: 40px;
  }

  .contact-method {
    padding: 20px;
    gap: 16px;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }

  .contact-details h4 {
    font-size: 1.1rem;
  }

  .contact-details p {
    font-size: 0.95rem;
  }

  .contact-form {
    padding: 35px 28px;
  }

  .form-title {
    font-size: 1.7rem;
  }

  .form-subtitle {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 14px;
    font-size: 0.95rem;
  }

  .submit-btn {
    padding: 16px 28px;
    font-size: 1.05rem;
  }

  .map-section {
    margin-top: 60px;
  }

  .map-title {
    font-size: 2rem;
  }

  .map-subtitle {
    font-size: 1.05rem;
    margin-bottom: 35px;
  }

  .map-container {
    height: 350px;
  }
}

/* Móviles pequeños (hasta 480px) */
@media (max-width: 480px) {
  .contact-section {
    padding: 40px 12px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .section-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .contact-grid {
    gap: 40px;
  }

  .contact-info-title {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }

  .contact-info-text {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .contact-methods {
    gap: 24px;
    margin-bottom: 35px;
  }

  .contact-method {
    padding: 18px;
    gap: 14px;
    border-radius: 14px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    border-radius: 10px;
  }

  .contact-details h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
  }

  .contact-details p {
    font-size: 0.9rem;
  }

  .contact-form {
    padding: 30px 20px;
    border-radius: 16px;
  }

  .form-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .form-subtitle {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-label {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 12px;
    font-size: 0.9rem;
    border-radius: 10px;
  }

  .form-textarea {
    min-height: 100px;
  }

  .form-checkbox-group {
    gap: 10px;
    margin: 20px 0;
  }

  .form-checkbox {
    width: 18px;
    height: 18px;
  }

  .checkbox-label {
    font-size: 0.85rem;
  }

  .submit-btn {
    padding: 14px 24px;
    font-size: 1rem;
    border-radius: 10px;
  }

  .map-section {
    margin-top: 50px;
  }

  .map-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .map-subtitle {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .map-container {
    height: 300px;
    border-radius: 16px;
  }
}

/* Móviles muy pequeños (hasta 320px) */
@media (max-width: 320px) {
  .contact-section {
    padding: 30px 10px;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .section-subtitle {
    font-size: 0.88rem;
  }

  .contact-info-title {
    font-size: 1.6rem;
  }

  .contact-info-text {
    font-size: 0.88rem;
  }

  .contact-method {
    padding: 16px;
    gap: 12px;
  }

  .contact-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .contact-details h4 {
    font-size: 1rem;
  }

  .contact-details p {
    font-size: 0.85rem;
  }

  .contact-form {
    padding: 25px 16px;
  }

  .form-title {
    font-size: 1.4rem;
  }

  .form-subtitle {
    font-size: 0.85rem;
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 10px;
    font-size: 0.85rem;
  }

  .submit-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .map-title {
    font-size: 1.6rem;
  }

  .map-subtitle {
    font-size: 0.88rem;
  }

  .map-container {
    height: 250px;
  }
}


/* ========================================
   CARRITO DE COMPRAS - DISEÑO
   ======================================== */

.fondo-carrito {
  display: flex;
  background-color: bisque;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-direction: column;
  min-height: 100vh;
}

.fondo-carrito main {
  flex: 1;
}

/* Main Container */
.cart-container {
  max-width: 1400px;
  margin: 2rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
  align-items: start;
}

.cart-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #1a202c 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Cart Items */
.cart-items {
  background-color: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1.5rem;
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  align-items: center;
}

.cart-item:last-child {
  border-bottom: none;
}

.item-image {
  width: 100px;
  height: 100px;
  object-fit: contain;
  background-color: #f9fafb;
  border-radius: 8px;
  padding: 0.5rem;
}

.item-details {
  flex: 1;
}

.item-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.item-remove {
  color: #3b82f6;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0;
  margin-top: 0.5rem;
  transition: color 0.3s;
}

.item-remove:hover {
  color: #2563eb;
  text-decoration: underline;
}

.item-availability {
  color: #6b7280;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.item-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
}

.quantity-control {
  display: flex;
  align-items: center;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  overflow: hidden;
}

.quantity-btn {
  background-color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 1.2rem;
  color: #6b7280;
  transition: background-color 0.2s;
}

.quantity-btn:hover {
  background-color: #f3f4f6;
}

.quantity-btn:active {
  background-color: #e5e7eb;
}

.quantity-input {
  border: none;
  width: 50px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  padding: 0.5rem 0;
}

.quantity-input:focus {
  outline: none;
}

/* Empty Cart */
.empty-cart {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.empty-cart svg {
  color: #d1d5db;
  margin-bottom: 1.5rem;
}

.empty-cart h2 {
  color: #1f2937;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.empty-cart p {
  color: #6b7280;
  margin-bottom: 2rem;
}

.btn-shop {
  display: inline-block;
  background-color: #22c55e;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn-shop:hover {
  background-color: #16a34a;
}

/* Summary Card */
.summary-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 100px;
}

.summary-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.summary-details {
  margin-bottom: 1.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: #6b7280;
}

.summary-row.total {
  color: #1f2937;
  font-size: 1.25rem;
  font-weight: 700;
}

.summary-divider {
  border-top: 1px solid #e5e7eb;
  margin: 1.5rem 0;
}

.btn-checkout {
  width: 100%;
  background-color: #3b82f6;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.btn-checkout:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
}

.btn-checkout:disabled {
  background-color: #9ca3af;
  cursor: not-allowed;
  transform: none;
}

/* ========================================
   MEDIA QUERIES - CARRITO RESPONSIVO
   ======================================== */

/* Tablets - pantallas medianas (768px - 1024px) */
@media (max-width: 1024px) {
  .cart-container {
    grid-template-columns: 1fr 350px;
    gap: 1.5rem;
    padding: 0 1.5rem;
  }

  .cart-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }

  .cart-item {
    gap: 1.2rem;
    padding: 1.2rem;
  }

  .summary-card {
    padding: 1.5rem;
  }
}

/* Tablets pequeñas (481px - 768px) */
@media (max-width: 768px) {
  .cart-container {
    grid-template-columns: 1fr;
    margin: 1.5rem auto;
    padding: 0 1rem;
    gap: 1.5rem;
  }

  .cart-content h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
  }

  .cart-items {
    padding: 1rem;
  }

  .cart-item {
    grid-template-columns: 80px 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .item-image {
    width: 80px;
    height: 80px;
  }

  .item-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
  }

  .item-price {
    font-size: 1.15rem;
  }

  .summary-card {
    position: static;
    padding: 1.5rem;
  }

  .summary-card h2 {
    font-size: 1.3rem;
  }

  .empty-cart {
    padding: 3rem 1.5rem;
  }

  .empty-cart svg {
    width: 60px;
    height: 60px;
  }

  .empty-cart h2 {
    font-size: 1.3rem;
  }
}

/* Móviles pequeños (hasta 480px) */
@media (max-width: 480px) {
  .cart-container {
    margin: 1rem auto;
    padding: 0 0.75rem;
  }

  .cart-content h1 {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .cart-items {
    padding: 0.75rem;
    border-radius: 10px;
  }

  .cart-item {
    grid-template-columns: 70px 1fr;
    gap: 0.75rem;
    padding: 0.75rem;
  }

  .item-image {
    width: 70px;
    height: 70px;
    border-radius: 6px;
  }

  .item-title {
    font-size: 0.95rem;
  }

  .item-remove {
    font-size: 0.85rem;
  }

  .item-availability {
    font-size: 0.8rem;
  }

  .item-actions {
    margin-top: 0.75rem;
    gap: 0.75rem;
  }

  .item-price {
    font-size: 1.05rem;
  }

  .quantity-control {
    border-radius: 6px;
  }

  .quantity-btn {
    padding: 0.4rem 0.8rem;
    font-size: 1.1rem;
  }

  .quantity-input {
    width: 40px;
    font-size: 0.95rem;
    padding: 0.4rem 0;
  }

  .empty-cart {
    padding: 2.5rem 1rem;
  }

  .empty-cart svg {
    width: 50px;
    height: 50px;
  }

  .empty-cart h2 {
    font-size: 1.2rem;
  }

  .empty-cart p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .btn-shop {
    padding: 0.65rem 1.5rem;
    font-size: 0.95rem;
  }

  .summary-card {
    padding: 1.25rem;
    border-radius: 10px;
  }

  .summary-card h2 {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
  }

  .summary-row {
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
  }

  .summary-row.total {
    font-size: 1.15rem;
  }

  .btn-checkout {
    padding: 0.85rem;
    font-size: 0.95rem;
    border-radius: 6px;
  }
}

/* Móviles muy pequeños (hasta 320px) */
@media (max-width: 320px) {
  .cart-container {
    padding: 0 0.5rem;
  }

  .cart-content h1 {
    font-size: 1.7rem;
  }

  .cart-item {
    grid-template-columns: 60px 1fr;
    gap: 0.6rem;
    padding: 0.6rem;
  }

  .item-image {
    width: 60px;
    height: 60px;
  }

  .item-title {
    font-size: 0.9rem;
  }

  .item-price {
    font-size: 1rem;
  }

  .quantity-btn {
    padding: 0.35rem 0.7rem;
    font-size: 1rem;
  }

  .quantity-input {
    width: 35px;
    font-size: 0.9rem;
  }

  .summary-card {
    padding: 1rem;
  }

  .summary-card h2 {
    font-size: 1.1rem;
  }

  .summary-row {
    font-size: 0.9rem;
  }

  .summary-row.total {
    font-size: 1.1rem;
  }

  .btn-checkout {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
}