/* Variables */
:root {
  --primary-color: #f7931d;
  --secondary-color: #2e2966;
  --dark-color: #1a1a1a;
  --light-color: #ffffff;
}
/* General Styles */
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  scroll-padding-top: 80px;
}
/* Navbar */
.navbar {
  background-color: rgb(46 41 102);
  padding: 1rem 0;
  transition: all 0.3s ease;
}
.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}
.nav-link {
  color: var(--light-color) !important;
  margin: 0 1rem;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: var(--primary-color) !important;
}
.dropdown-menu {
  background-color: rgba(0, 0, 0, 0.9);
  border: none;
  border-radius: 0;
}
.dropdown-item {
  color: var(--light-color);
  transition: all 0.3s ease;
}
.dropdown-item:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}
/* Product Detail Page */
.product-detail {
  margin-top: 80px !important;
}
.main-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.main-image img {
  width: 100%;
  height: auto;
}
.product-gallery {
  margin-top: 2rem;
}
.product-gallery .swiper-slide {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.product-gallery .swiper-slide-active {
  opacity: 1;
}
.tags .badge {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  margin-right: 0.5rem;
}
.features li {
  margin-bottom: 0.5rem;
}
.sizes .btn-group {
  width: 100%;
}
.sizes .btn {
  flex: 1;
}
.cta-buttons {
  margin-top: 2rem;
}
/* Related Products */
.related-products .card {
  border: none;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.related-products .card:hover {
  transform: translateY(-10px);
}
/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('https://images.unsplash.com/photo-1563089145-599997674d42?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--light-color);
}
.hero h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero .lead {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.8rem 2rem;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}
/* Sections */
section {
  padding: 5rem 0;
}
section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 3rem;
  position: relative;
}
.titulo_decorado h2::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}
/* Cards */
.card {
  border: none;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
}
.card:hover {
  transform: translateY(-10px);
}
.card-img-top {
  height: 200px;
  object-fit: cover;
}
/* Services */
.services i {
  color: var(--primary-color);
  margin-bottom: 1rem;
}
/* Contact Form */
.form-control {
  padding: 0.8rem;
  border-radius: 0;
  border: 1px solid #ddd;
}
.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}
/* Footer */
footer {
  background-color: var(--dark-color);
  color: var(--light-color);
}
footer a {
  color: var(--light-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
footer a:hover {
  color: var(--primary-color);
}
.social-links a {
  margin-right: 1rem;
  font-size: 1.5rem;
}
/* Boton Whatsapp */
.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.my-float {
  margin-top: 16px;
}
strong {
  font-weight: bold !important;
  /* Fuerza el bold tradicional */
}
/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero .lead {
    font-size: 1.2rem;
  }
  section {
    padding: 3rem 0;
  }
  section h2 {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  .navbar {
    padding: 0.5rem 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
}


/* Reset Bootstrap */

  .bg-dark {
    --bs-bg-opacity: 1;
    background-color: rgb(13 0 48) !important;
}


.text-primary {
  --bs-text-opacity: 1;
  color: rgb(247 147 29) !important
}
.bg-primary-light {
  background-color: rgb(247 147 29 / 32%) !important;
}
.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  display: flex;
  align-items: center;
}
.slogan {
  font-size: 1rem;
  margin-left: 2rem;
  color: #ffffff;
  font-weight: normal;
  letter-spacing: 1px;
  opacity: 0.8;
}
/* Para dispositivos móviles */
@media (max-width: 768px) {
  .slogan {
    display: none;
    /* Opcional: ocultar el slogan en móviles */
  }
}


/* Additional Custom Styles */
  .icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(13, 110, 253, 0.1);
  }
  .hover-transition {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .hover-transition:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
  }
  .bg-primary-light {
    background-color: rgba(13, 110, 253, 0.1);
  }
  .divider {
    opacity: 0.8;
  }
 

