/*---------------------------------------
  SEPARADOR               
-----------------------------------------*/
.separador {
    height: 10px;
    width: 30%;
    background: #EE5007;
    border: none;
}

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.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;
}

/*---------------------------------------
  HERO DE INICIO  
-----------------------------------------*/
.hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    height: 70vh;
}

.hero-section .section-overlay {
    z-index: 2;
    opacity: 0.45;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    height: 100%;
    padding-bottom: 50px;
}

.hero-section .container .row {
    height: 100%;
}

/*---------------------------------------
  IMAGEN DE FONDO              
-----------------------------------------*/
.img-wrap {
    z-index: -100;
}

.custom-img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: brightness(0.5);
}

.custom-img_2 {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: brightness(0.3);
}


/*---------------------------------------
  DISEÑO             
-----------------------------------------*/
.hotel-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 40px;
    height: 100%;
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.hotel-image-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.hotel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hotel-card:hover .hotel-image {
    transform: scale(1.1);
}

.hotel-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hotel-content {
    padding: 35px;
}

.hotel-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
}

.price-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    margin-bottom: 20px;
}

.price-label {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.price-note {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-style: italic;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.features-list li {
    padding: 10px 0;
    color: #4a5568;
    font-size: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list i {
    color: #667eea;
    margin-right: 10px;
    font-size: 1.2rem;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    color: white;
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

.gallery-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #e2e8f0;
}

.gallery-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    text-align: center;
}

.note-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin-top: 60px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.note-section h4 {
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 15px;
}

.note-section p {
    color: #4a5568;
    font-size: 1.1rem;
}

.cta-box {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cta-box h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

#carouselDreams,
#carouselDreams .carousel-inner,
#carouselDreams .carousel-item,
#carouselDreams img {
    height: 100%;
}

#carouselDreams img {
    object-fit: cover;
    width: 100%;
}

#carouselSecrets,
#carouselSecrets .carousel-inner,
#carouselSecrets .carousel-item,
#carouselSecrets img {
    height: 100%;
}

#carouselSecrets img {
    object-fit: cover;
    width: 100%;
}

#carouselBrisas,
#carouselBrisas .carousel-inner,
#carouselBrisas .carousel-item,
#carouselBrisas img {
    height: 100%;
}

#carouselBrisas img {
    object-fit: cover;
    width: 100%;
}

#carouselBarcelo,
#carouselBarcelo .carousel-inner,
#carouselBarcelo .carousel-item,
#carouselBarcelo img {
    height: 100%;
}

#carouselBarcelo img {
    object-fit: cover;
    width: 100%;
}

@media (max-width: 768px) {
    .intro-box {
        padding: 30px 20px;
    }

    .intro-title {
        font-size: 1.8rem;
    }

    .intro-subtitle {
        font-size: 1.1rem;
    }

    .hotel-content {
        padding: 25px;
    }

    .price-amount {
        font-size: 2rem;
    }
}