body {
    font-family: 'Arial', sans-serif;
    color: #333;
}

/* Sección Hero */

.hero {    
    background-size: cover; /* Asegura que la imagen cubra toda la sección */
    background-position: center center; /* Centra la imagen */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
    height: 100vh; /* Ajusta la altura de la sección al 100% de la ventana */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    position: relative;
}

.hero .container {
    position: relative; /* Para asegurar que el contenido esté encima de la imagen */
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Sombra para mejorar la visibilidad */
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.hero .cta-btn {
    font-size: 1.25rem;
    padding: 15px 30px;
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s;
}

.hero .cta-btn:hover {
    background-color: #e55c00;
}

/* Para pantallas más pequeñas (móviles) */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .hero .cta-btn {
        font-size: 1.1rem;
        padding: 12px 25px;
    }
}

/* Para pantallas grandes (escritorios) */
@media (min-width: 1200px) {
    .hero {
        height: 100vh; /* Mantiene la altura completa para pantallas grandes */
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero p {
        font-size: 1.8rem;
    }
}

.navbar-brand img
{
    margin:0 0 0 50px;
}


/* Estilo para las tarjetas de playas y tours */
.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.carousel-item {
    font-size: 1.2rem;
    font-style: italic;
}

/* Promociones */
#promociones {
    background-color: #39518E;
    color: #fff;
}

/* Estilo para los botones */
.btn-warning {
    background-color: #39518E;
    border: none;
    color: #fff;
}

.btn-warning:hover {
    background-color: #e55c00;
}

.btn-danger {
    background-color: #dc3545;
    border: none;
}

.btn-danger:hover {
    background-color: #c82333;
}

.button-whats-app {
  border-radius: 50px;
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25d366;
  border-color: #25d366;
  &:hover {
    background-color: white;
    border-color: #25d366;
    border-width: 1px;
    svg {
      fill: #25d366;
    }
  }
  &:active {
    background-color: #25d366 !important;
    border-color: #25d366 !important;
    svg {
      fill: white;
    }
  }
}

.button-call-app {
    border-radius: 50px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;    
    &:hover {      
      svg {
        fill: #25d366;
      }
    }
    &:active {      
      svg {
        fill: #25d366;
      }
    }
  }

.container-benefit {
    display: flex;
    justify-content: space-around;
    margin: 50px;
}
.benefit {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 30%;
    text-align: center;
    transition: transform 0.3s ease;
}
.benefit:hover {
    transform: translateY(-10px);
}
.benefit h2 {
    font-size: 1.5em;
    color: #2c3e50;
}
.benefit p {
    font-size: 1em;
    color: #7f8c8d;
}

.benefit .icon {
    font-size: 2.5em;
    color: #8e44ad; /* Color morado */
    margin-bottom: 10px;
}

/* Estilos responsivos */
@media (max-width: 1024px) {
    .benefit {
        display: block;
        width: 45%; /* En pantallas medianas, los elementos ocupan un 45% del ancho */
    }
}

@media (max-width: 768px) {
    .container-benefit {
        display: block;
    }
    .benefit {
        width: 100%; /* En pantallas pequeñas, los elementos ocupan todo el ancho */
        margin-bottom: 20px; /* Espacio entre los elementos */
    }
}

@media (max-width: 480px) {
    .container-benefit {
        display: block;
        margin: 20px; /* Reducir márgenes en pantallas muy pequeñas */
    }

    .benefit {
        padding: 15px; /* Reducir el padding para mejor ajuste en pantallas pequeñas */
    }
}