:root {
    --primary: #ff1642;
    --secondary: #00d3bb;
    --accent: #ffd000;
    --dark: #3144dd;
    --light: #F7F9F9;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    background: var(--light);
  }

  a, u {
    text-decoration: none;
  }
  
  .header {
    background: var(--primary);
    
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 80px;
  }
  
  .nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .logo img {
    width: 80px;
    height: 80px;
    animation: float 3s ease-in-out infinite;
  }
  
  @keyframes float {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0px);
    }
  }
  
  .nav-links {
    display: flex;
    gap: 2rem;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .nav-links a:hover {
    color: var(--accent);
  }
  
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
  }
  
  .menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 2px 0;
    transition: 0.4s;
  }
  
  .cart-icon {
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 1rem;
    position: relative;
  }
  
  .cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent);
    color: var(--dark);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero {
    height: 100vh;
    display: flex; 
    align-items: center;
    justify-content: center;
    padding-top: 60px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
  }
  
  @media (max-width: 768px) {
    .hero {
      height: 50vh; /* Shorter height on mobile */
    }
  }
  
  .categories {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .category-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  
  .category-card:hover {
    transform: translateY(-5px);
  }
  
  .cta-button {
    background: var(--accent);
    color: var(--dark);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
  }
  
  .cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }
  
  .booking-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    margin: 4rem auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark);
  }
  
  .form-group input,
  .form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-20px);
    }
    60% {
      transform: translateY(-10px);
    }
  }
  
  @media (max-width: 768px) {
    .menu-toggle {
      display: flex;
    }
    
    .nav-links {
      display: none;
      width: 100%;
      position: absolute;
      top: 100%;
      left: 0;
      background: var(--primary);
      flex-direction: column;
      padding: 1rem;
      gap: 1rem;
    }
    
    .nav-links.active {
      display: flex;
    }
    
    .nav-links a {
      padding: 0.5rem;
      text-align: center;
    }
  }
  
  .reviews {
    padding: 4rem 2rem;
    background: var(--light);
  }
  
  .review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
  }
  
  .review-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
  }
  
  .stars {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .reviewer {
    color: var(--dark);
    font-weight: 500;
    margin-top: 1rem;
  }
  
  .service-area {
    padding: 4rem 2rem;
    background: var(--light);
  }
  
  .map-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
    flex-wrap: wrap;
  }
  
  .service-map {
    width: 300px;
    height: 300px;
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
  
  .coverage-info {
    flex: 1;
    min-width: 280px;
  }
  
  .coverage-info ul {
    list-style: none;
    margin-top: 1rem;
  }
  
  .coverage-info li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
  }
  
  .coverage-info li:before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
  }
  
  .contact {
    padding: 4rem 2rem;
    background: white;
  }
  
  .contact-container {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
    flex-wrap: wrap;
  }
  
  .contact-info {
    flex: 1;
    min-width: 280px;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
  }
  
  .contact-form {
    flex: 2;
    min-width: 280px;
  }
  
  textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    resize: vertical;
  }
  
  h2 {
    text-align: center;
    color: var(--dark);
    margin-bottom: 2rem;
  }
  
  .about {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--light);
  }
  
  .about-container {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .about-content {
    flex: 1;
    min-width: 300px;
  }
  
  .about-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
  }
  
  .about-content p {
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .about-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
  }
  
  .about-image svg {
    width: 100%;
    max-width: 400px;
    height: auto;
  }
  
  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .value-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  
  .value-item svg {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
  }
  
  .value-item h3 {
    color: var(--dark);
    margin-bottom: 0.5rem;
  }
  
  .featured-product {
    padding: 4rem 2rem;
    background: white;
  }
  
  .carousel-slide {
    min-width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .product-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }
  
  .carousel-container {
    display: flex;
    transition: transform 0.3s ease;
  }
  
  .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
  }
  
  .carousel-button {
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
  }
  
  .product-details {
    max-width: 800px;
    margin: 2rem auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
  }
  
  .product-info h3 {
    color: var(--dark);
    margin-bottom: 1rem;
  }
  
  .product-info p {
    margin-bottom: 0.5rem;
  }
  
  .pricing-details {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 10px;
  }
  
  .price {
    font-size: 1rem;
    color: var(--primary);
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  .availability-check {
    margin: 1rem 0;
  }
  
  .availability-check input {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  .specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .spec-item {
    background: var(--light);
    padding: 1rem;
    border-radius: 5px;
  }
  
  .spec-item h4 {
    color: var(--dark);
    margin-bottom: 0.5rem;
  }
  
  @media (max-width: 768px) {
    .product-details {
      grid-template-columns: 1fr;
    }
    
    .carousel-slide {
      height: 300px;
    }
    
    .product-carousel {
      max-width: 100%;
    }
  }
  
  .product-video {
    max-width: 800px;
    margin: 2rem auto;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
  }
  
  .product-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  
  .related-products {
    padding: 4rem 2rem;
    background: var(--light);
  }
  
  .related-carousel {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }
  
  .related-container {
    display: flex;
    gap: 2rem;
    transition: transform 0.3s ease;
    padding: 1rem;
  }
  
  .related-product {
    min-width: 280px;
    flex: 0 0 280px;
    background: white;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  
  .related-product img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
  }
  
  .related-product h3 {
    margin: 1rem 0;
    color: var(--dark);
  }
  
  .related-product .price {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0.5rem 0;
  }
  
  .related-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
  }
  
  .related-button {
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    pointer-events: auto;
  }
  
  @media (max-width: 768px) {
    .related-product {
      min-width: 220px;
      flex: 0 0 220px;
    }
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
  }
  
  .social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }
  
  .social-link svg {
    width: 24px;
    height: 24px;
  }


  /* Estilos para el botón de WhatsApp */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000; /* Asegura que esté encima de otros elementos */
  width: 60px;
  height: 60px;
}

.whatsapp-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-button img:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}