/*===========================================
  BASE STYLES
===========================================*/
body {
    background-color: #ffffff;
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
}

/*===========================================
  CUSTOM ICONS
===========================================*/
.custom-icon {
    color: #EE5007;
}

/*===========================================
  BUTTONS
===========================================*/
/* Botón principal de la marca */
.custom-btn {
    background: #EE5007;
    border: 2px solid transparent;
    border-radius: 100px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    transition: all 0.3s;
    padding: 10px 15px;
}

.custom-btn:hover {
    background: #c01f27;
    color: #ffffff;
}

/* Botón de WhatsApp */
.custom-btn-whatsapp {
    background: #25D366;
    border: 2px solid transparent;
    border-radius: 100px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    transition: all 0.3s;
    padding: 10px 20px;
}

.custom-btn-whatsapp:hover {
    background: #00b45a;
    color: #ffffff;
}

/* Botón transparente con borde */
.custom-btn-transparent {
    background: transparent;
    border: 2px solid white;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    line-height: normal;
    transition: all 0.3s;
    padding: 10px 20px;
}

.custom-btn-transparent:hover {
    background: #EE5007;
    color: #ffffff;
    border-color: #EE5007;
}

/* Botón con borde de color */
.custom-border-btn {
    background: transparent;
    border: 2px solid #EE5007;
    color: #EE5007;
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
    background: #c01f27;
    border-color: transparent;
    color: #ffffff;
}

.custom-btn-bg-white {
    border-color: #ffffff;
    color: #ffffff;
}

/*===========================================
  HERO CAROUSEL
===========================================*/
/* Contenedor principal del carrusel hero */
.hero-carousel {
    position: relative;
    height: 100vh;
    min-height: 600px;
}

/* Items del carrusel */
.hero-carousel .carousel-item {
    height: 100vh;
    min-height: 600px;
    position: relative;
}

/* Overlay oscuro sobre el video/imagen */
.hero-carousel .section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Contenedor del video de fondo */
.hero-carousel .video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

/* Video de fondo */
.hero-carousel .custom-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contenedor del contenido sobre el video */
.hero-carousel .carousel-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Items con imagen de fondo (tarifas especiales) */
.hero-carousel .tarifa-item {
    background-size: cover;
    background-position: center;
}

/* Overlay para items de tarifas */
.hero-carousel .tarifa-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

/* Contenedor del contenido de tarifas */
.hero-carousel .tarifa-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Descripción de tarifas */
.hero-carousel .tarifa-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    margin: 0 auto 2rem;
    max-width: 700px;
    line-height: 1.6;
}

/* Badge de estrellas */
.hero-carousel .badge-stars {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: transparent;
    letter-spacing: 4px;
}

/* Badges de amenidades */
.hero-carousel .amenity-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    margin: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Botón CTA del carrusel */
.hero-carousel .btn-carousel-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #EE5007 0%, #ff6b35 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(238, 80, 7, 0.4);
    margin-top: 2rem;
    white-space: nowrap;
}

.hero-carousel .btn-carousel-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(238, 80, 7, 0.6);
    background: linear-gradient(135deg, #ff6b35 0%, #EE5007 100%);
    color: white;
}

/* Controles de navegación del carrusel */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 80px;
    opacity: 1;
    z-index: 3;
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(238, 80, 7, 0.8);
    border-radius: 50%;
    padding: 10px;
    transition: all 0.3s ease;
}

.hero-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.hero-carousel .carousel-control-next:hover .carousel-control-next-icon {
    background-color: rgba(238, 80, 7, 1);
    transform: scale(1.1);
}

/*===========================================
  VIDEO GENERAL
===========================================*/
.video-wrap {
    z-index: -100;
}

.custom-video {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: brightness(0.5);
}

/*===========================================
  ABOUT SECTION
===========================================*/
.about-section {
    position: relative;
}

.about-image {
    border-radius: 20px;
    display: block;
}

.services-info p {
    text-align: justify;
}

/* Carrusel de la sección nosotros */
.carousel-nosotros {
    height: 380px;
    border-radius: 15px;
    overflow: hidden;
}

/*===========================================
  TOURS POPULARES
===========================================*/
.tours-populares {
    position: relative;
}

/* Contenedor de tarjetas de tours */
.tour-card-wrapper {
    height: 500px;
}

/* Tarjeta de tour */
.tour-card {
    transition: transform 0.3s ease;
}

.tour-card img {
    filter: brightness(75%);
    transition: filter 0.3s ease;
}

/* Efectos hover en tarjetas */
.tour-card:hover {
    transform: scale(1.02);
}

.tour-card:hover img {
    filter: brightness(85%);
}

.tour-card:hover .card-img-overlay {
    background-color: rgba(53, 52, 52, 0.5);
}

/* Título de la tarjeta de tour */
.tour-card-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/*===========================================
  EXPLORA NUEVOS HORIZONTES
===========================================*/
/* Tarjetas horizontales de tours */
.tour-card-horizontal {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/* Imagen del carrusel */
.carousel-img {
    height: 250px;
    object-fit: cover;
}

/* Información de la tarjeta */
.card-location {
    font-size: 14px;
}

.card-info {
    font-size: 16px;
}

/*===========================================
  TARIFAS ESPECIALES
===========================================*/
.tarifas-especiales {
    position: relative;
    overflow: hidden;
}

/* Badge de ofertas */
.badge-ofertas {
    display: inline-block;
    background: linear-gradient(135deg, #EE5007 0%, #ff7a3d 100%);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 14px;
    letter-spacing: 1px;
    color: white;
    font-weight: 600;
}

/* Títulos y subtítulos */
.titulo-tarifas {
    font-size: clamp(2rem, 5vw, 3rem);
}

.subtitle-tarifas {
    max-width: 700px;
}

/* Contenedor del carrusel */
.carousel-tarifas-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.carousel-tarifas-inner {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Contenido de cada item */
.carousel-item-content {
    position: relative;
    height: 600px;
}

/* Overlay del carrusel */
.carousel-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.carousel-item-content img {
    object-fit: cover;
    object-position: center;
}

/* Wrapper del contenido */
.carousel-content-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 1rem;
    z-index: 2;
}

/* Badge de estrellas */
.badge-stars {
    display: inline-block;
    background-color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

/* Título del carrusel */
.carousel-title {
    font-weight: 700;
    color: white;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

/* Descripción del carrusel */
.carousel-description {
    color: white;
    font-size: clamp(1rem, 3vw, 1.5rem);
    max-width: 700px;
    margin: 0 auto 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Contenedor de amenidades */
.carousel-amenities {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Badge de amenidad */
.amenity-badge {
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.5rem 1rem;
}

/* Controles personalizados del carrusel */
.carousel-control-custom .control-wrapper {
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    padding: 0.75rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-control-custom:hover .control-wrapper {
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* Botón de tarifas */
.btn-tarifas {
    display: inline-block;
    background: linear-gradient(135deg, #EE5007 0%, #ff7a3d 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 1rem 2rem;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(238, 80, 7, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-tarifas:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(238, 80, 7, 0.6);
    color: white;
}

/* Efecto fade del carrusel */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Botón CTA responsive dentro del carrusel */
.btn-carousel-cta {
    display: inline-block;
    background: linear-gradient(135deg, #EE5007 0%, #ff7a3d 100%);
    border: 2px solid white;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.5rem;
    font-size: clamp(0.75rem, 2vw, 1rem);
    box-shadow: 0 4px 15px rgba(238, 80, 7, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-carousel-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 80, 7, 0.6);
    color: white;
    background: linear-gradient(135deg, #c01f27 0%, #EE5007 100%);
}

/*===========================================
  CONTACT FORM & MAP
===========================================*/
/* Mapa de Google */
.google-map {
    border-radius: 20px;
}

/* Controles del formulario */
.custom-form .form-control {
    color: #717275;
    padding: 12px;
    outline: none;
}

/* Botón de envío del formulario */
.custom-form button[type="submit"] {
    background: #EE5007;
    border: none;
    border-radius: 100px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    transition: all 0.3s;
    margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
    background: #c01f27;
    border-color: transparent;
}

/*===========================================
  SOCIAL ICONS
===========================================*/
.social-icon {
    margin: 0;
    padding: 0;
}

.social-icon-item {
    list-style: none;
    display: inline-block;
    vertical-align: top;
}

/* Enlaces de iconos sociales */
.social-icon-link {
    background: #EE5007;
    border-radius: 100px;
    color: #ffffff;
    font-size: 16px;
    display: block;
    margin-right: 10px;
    text-align: center;
    width: 35px;
    height: 35px;
    line-height: 36px;
    transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
    background: #171382;
    color: #ffffff;
}

.social-icon-link span {
    display: block;
}

/*===========================================
  RESPONSIVE MEDIA QUERIES
===========================================*/
/* Tablets y móviles grandes */
@media (max-width: 768px) {
    /* Hero Carousel */
    .hero-carousel .carousel-item {
        min-height: 500px;
    }

    .hero-carousel .tarifa-description {
        font-size: 1rem;
        max-width: 90%;
    }

    .hero-carousel .amenity-badge {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        margin: 0.3rem;
    }

    .hero-carousel .btn-carousel-cta {
        padding: 0.75rem 1.2rem;
        font-size: 0.85rem;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
        max-width: 280px;
    }

    .hero-carousel .btn-carousel-cta i {
        font-size: 0.9rem;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .hero-carousel .btn-carousel-cta {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
        max-width: 250px;
    }

    .hero-carousel .btn-carousel-cta span {
        display: inline-block;
    }
}