
    body {
      background-color: #f9f9f9;
      padding: 0px 0;
    }

    .feature-text h2 {
      font-size: 32px;
      margin-bottom: 20px;
      color: #333;
    }

    .feature-text p {
      font-size: 16px;
      color: #555;
      line-height: 1.6;
    }

    .hover-effect-img {
      border-radius: 15px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 100%;  /* Ajusta según tu diseño */
      height: auto;
    }
    
    .hover-effect-img:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    } 

    .image-wrapper {
      position: relative;
      width: 100%;
      height: 100%;
      border-radius: 15px;
      overflow: hidden;
    }
    
    .image-wrapper img {
      width: 100%;
      height: 100%;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      object-fit: cover;
      border-radius: 15px;
      transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;  /* Unificada la transición */
    }
    
    .image-wrapper:hover img {
      filter: brightness(75%);
      transform: translateY(-2px);
      transform: scale(1.02) translateY(-3px);  /* Escala + movimiento hacia arriba */
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);  /* Sombra más profunda al hacer hover */
      transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;  /* Unificada la transición */
    }
    


    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.3);
      opacity: 0;
      border-radius: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: opacity 0.3s ease;
    }

    .image-wrapper:hover .overlay {
      opacity: 1;
    }

    .zoom-icon {
      font-size: 40px;
      color: #fff;
      pointer-events: none;
    }
    .testimonial-card {
        background-color: #ffffff;
        border-radius: 15px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }
      
      .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
      }
      
      .star-rating {
        font-size: 1.2rem;
      }
      .review-btn {
        display: inline-block;
        background-color: #f8b500;
        color: #fff;
        font-weight: 600;
        font-size: 18px;
        padding: 14px 28px;
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
      }
      
      .review-btn i {
        margin-right: 8px;
        font-size: 20px;
      }
      
      .review-btn:hover {
        background-color: #e09e00;
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0,0,0,0.2);
      }
      
      @media (max-width: 768px) {
        .review-btn {
          font-size: 16px;
          padding: 12px 20px;
          width: 100%;
          max-width: 320px;
        }
      }
      .section-title {
        font-size: 32px;
        font-weight: 700;
        color: #333;
      }
      
      .section-subtitle {
        font-size: 18px;
        color: #555;
        line-height: 1.6;
      }
      
      .service-area-list li {
        font-size: 17px;
        color: #444;
        margin-bottom: 10px;
      }

      .map-hover-effect {
        border-radius: 15px;  /* Borde redondeado */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);  /* Sombra inicial */
        transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
        width: 100%;
        height: auto;
        display: block;
      }
      
      .map-hover-effect:hover {
        filter: brightness(75%);
        transform: scale(1.02) translateY(-3px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);  /* Sombra más profunda */
      }      
      
      .area-contact-link {
        color: #f8b500;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.3s ease;
      }
      
      .area-contact-link:hover {
        color: #e09e00;
        text-decoration: underline;
      }
      /* Estilo general para inputs, select y textarea */
        .contact-form input,
        .contact-form select,
        .contact-form textarea {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ccc;
        border-radius: 10px;
        font-size: 16px;
        background-color: #fff;
        color: #333;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        /* Hover y focus */
        .contact-form input:focus,
        .contact-form select:focus,
        .contact-form textarea:focus {
        border-color: #f8b500;
        outline: none;
        box-shadow: 0 0 5px rgba(248, 181, 0, 0.3);
        }

        /* Select específico */
        .contact-form select {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20fill%3D'%23666'%20height%3D'24'%20viewBox%3D'0%200%2024%2024'%20width%3D'24'%20xmlns%3D'http://www.w3.org/2000/svg'%3E%3Cpath%20d%3D'M7%2010l5%205%205-5H7z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 16px 16px;
        }
        .footer-area {
            background-color: #0b2545; /* azul profundo elegante */
            color: #ffffff;
            padding-top: 60px;
            padding-bottom: 30px;
          }
          
          .footer-link {
            color: #ffffff;
            margin: 0 15px;
            font-weight: 500;
            font-size: 16px;
            text-decoration: none;
            display: inline-block;
            transition: color 0.3s ease;
          }
          
          .footer-link:hover {
            color: #ff5e15;
          }
          
          .footer-copy {
            font-size: 14px;
            color: #d0d7e2; /* azul grisáceo claro para contraste */
            margin-top: 10px;
          }
          
          .footer-dev-link {
            color: #ff5e15;
            font-weight: 600;
            text-decoration: none;
          }
          
          .footer-dev-link:hover {
            text-decoration: underline;
          }

          .whatsapp-button-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            transition: transform 0.3s ease-in-out;
        }
        .whatsapp-button-container:hover {
            transform: scale(1.05);
        }
        
        /* Botón redondo con icono */
        .whatsapp-icon {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 65px;
            height: 65px;
            background-color: #25D366;
            border-radius: 50%;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .whatsapp-icon svg {
            width: 40px;
            height: 40px;
        }
        
        /* Tooltip mejorado */
        .whatsapp-tooltip {
            background-color: #bbf3d0;
            color: #000;
            padding: 8px 14px;
            border-radius: 6px;
            font-size: 15px;
            font-family: Arial, Helvetica, sans-serif;
            font-weight: 600;
            white-space: nowrap;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        /* Asegúrate de que tu slider sea contenedor relativo */
.single-slider {
  position: relative;
}

/* Estilos del switcher */
.language-switcher {
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  padding: 0.25em 0.75em;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
  display: inline-block;
}

/* Hover relleno blanco y texto negro */
.language-switcher:hover {
  background: #fff;
  color: #000;
  text-decoration: none;
}


        
        
        
                