@charset "UTF-8";
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Reset definitivo para eliminar bordes blancos */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Iconos específicos */
.icono-16 {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}

.icono-32 {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}

.icono-40 {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.icono-48 {
  width: 48px;
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
}

.icono-60 {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Tipografía */
h1, h2, h3 {
  font-family: "Montserrat", sans-serif;
  color: #ff5908;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Utilidades */
.text-centro {
  text-align: center;
}

.bg-claro {
  background-color: #f8f9fa;
}

.bg-oscuro {
  background-color: #121827;
  color: #ffffff;
}

.bg-gradiente-naranja {
  background: linear-gradient(90deg, #ff5908, #ff9a08);
  color: #ffffff;
}

.lista-sin-estilo {
  list-style: none;
  padding: 0;
}

/* Reset de enlaces para todo el sitio */
a {
  text-anchor: none;
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
  flex-wrap: wrap;
}
header .logo-nav {
  display: flex;
  align-items: center;
  text-decoration: none;
}
header .logo-nav p {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff5908;
  margin-left: 10px;
}
header .nav-encabezado ul {
  display: flex;
  list-style: none;
  gap: 20px;
}
header .nav-encabezado a {
  text-decoration: none;
  color: #1a1f29;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
header .nav-encabezado a:hover {
  color: #ff5908;
}
header .navbar .container-fluid {
  display: flex;
  justify-content: center;
}
header .navbar .navbar-toggler {
  margin: 0 auto;
}
header .navbar .navbar-nav {
  text-align: center;
  width: 100%;
}
header .navbar .navbar-nav .nav-item {
  width: 100%;
}

footer {
  padding: 60px 10% 20px;
  background: #1a1f29;
  color: #ffffff;
}
footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
footer .footer-column h3 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.2rem;
}
footer .footer-column li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .footer-column a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
footer .footer-column a:hover {
  color: #ff5908;
}
footer .footer-copyright {
  border-top: 1px solid #333;
  padding-top: 20px;
  color: #888;
  font-size: 0.9rem;
}

section {
  padding: 80px 10%;
  animation: reveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  overflow: hidden;
}

@media (max-width: 768px) {
  .navbar-collapse {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
  }
  .nav-item {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
  }
  .nav-item:last-child {
    border: none;
  }
}
.carrito_compras a {
  text-decoration: none;
  font-size: 52px;
  line-height: 1;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.carrito_compras a:hover {
  transform: scale(1.1);
}
.carrito_compras a span {
  text-decoration: none;
  display: inline-block;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}
.btn-primary {
  background: #ff5908;
  color: #ffffff;
}
.btn-secondary {
  background: #1a1f29;
  color: #ffffff;
}
.btn-light {
  background: #ffffff;
  color: #ff5908;
}
.btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.features-grid, .services-grid, .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card, .service-card, .product-card {
  padding: 30px;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border: 1px solid #eee;
  text-align: center;
}
.feature-card:hover, .service-card:hover, .product-card:hover {
  transform: translateY(-10px);
  border-color: #ff5908;
}
.feature-card img, .service-card img, .product-card img {
  margin: 0 auto 20px;
}

.product-card img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Hero Index */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: radial-gradient(circle, #fffbbd 0%, #fffb9c 100%);
  min-height: 70vh;
}
.hero-section .hero-text {
  flex: 1;
}
.hero-section .hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}
.hero-section .hero-image img {
  width: 450px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
  transition: transform 0.5s ease;
}
.hero-section .hero-image img:hover {
  transform: scale(1.05) rotate(2deg);
}

/* Estadísticas */
.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.stats-container .stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.stats-container .stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.9;
}

/* Equipo */
.team-member img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto 15px;
  border: 5px solid #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive específico */
@media (max-width: 968px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
  }
  .hero-section .hero-image img {
    width: 300px;
  }
  header {
    flex-direction: column;
    gap: 15px;
  }
}
/* Estilos específicos de Contacto */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
}
@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form .form-group label {
  font-weight: 600;
  color: #1a1f29;
}
.contact-form .form-group input, .contact-form .form-group textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
}
.contact-form .form-group input:focus, .contact-form .form-group textarea:focus {
  border-color: #ff5908;
  outline: none;
}
.contact-form .form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.map-placeholder {
  width: 100%;
  height: 300px;
  background: #eee;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.hours-card {
  padding: 25px;
  border-radius: 15px;
}
.hours-card li {
  margin-bottom: 10px;
}

.faq-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 40px auto 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #1a1f29;
  background-color: #ffffff;
  line-height: 1.6;
}/*# sourceMappingURL=style.css.map */