
/*Carrousel Section*/

.adventure-tour-frame{
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(92, 92, 92, 0.8)), url("/assets/images/home/carousel/adventure/back.jpg") center/cover no-repeat fixed;
}
.nature-tour-frame{
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(92, 92, 92, 0.15)), url("/assets/images/home/carousel/nature/wallpaperRioCeleste.jpeg") center/cover no-repeat fixed;
}
.night-tour-frame{
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)), url("/assets/images/home/carousel/night/back.jpeg") center/cover no-repeat fixed;
}
        
.main-title
{
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    color: #fff;
    letter-spacing: 3px;
    position: relative;
}
        
.main-title:after
{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #5c711e;
    border-radius: 2px;
}

/*Carrousel section*/

.carousel-text-column {
    background-color: #fff;
    /*background-color: rgba(255, 255, 255, 0.30); 
    backdrop-filter: blur(20px);*/
    width: 50%;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 45px;
    padding-right: 45px;
}

.carousel-text-column hr
{

    height: 4px;
    background-color: #5c711e;
    border-radius: 4px;
}

.carousel-item img {
    object-fit: cover; /* Mantiene relación recortando si es necesario */
}

@media (min-width:768px)
{
    .carousel-item img {
    width: 100%;
    height: 90vh;
    }

    .carousel-text-column {
        width: 50%;
    }
}

@media (max-width:1200px)
{
    .home-tours{
        padding: 0%;
    }
    .carousel-item img {
    width: 100vw;
    }

    .carousel-text-column {
        
        width: 100%;
    }
}

/*End carrousel section*/
.trans-header
{
    text-align:center;
    margin-bottom:40px;
    padding:20px
}
.trans-header h1
{
    color:#5c711e;
    font-weight:700;
    margin-bottom:15px
}
.trans-header p
{
    color:#7f8c8d;
    font-size:1.2rem;
    max-width:800px;
    margin:0 auto
}
.carCards
{
    border:none;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 20px rgba(0,0,0,0.1);
    transition:transform 0.3s ease,box-shadow 0.3s ease;
    height:100%
}
.carCards:hover
{
    transform:translateY(-10px);
    box-shadow:0 15px 30px rgba(0,0,0,0.15)
}
.carCards-img-top
{
    height:220px;
    object-fit:cover;
    transition:transform 0.5s ease
}
.carCards:hover .card-img-top
{
    transform:scale(1.05)
}
.carCards-body
{
    margin-top: auto;
    padding:25px
}
.carCard-title
{
    color:#2c3e50;
    font-weight:700;
    margin-bottom:15px;
    font-size:1.4rem
}
.card-text
{color:#7f8c8d;
    margin-bottom:20px
}
.btn-card
{
    background-color:#3498db;
    color:white;
    border:none;
    padding:10px 20px;
    border-radius:30px;
    font-weight:600;
    transition:all 0.3s ease
}
.btn-card:hover
{
    background-color:#2980b9;
    transform:translateY(-2px)
}
.icon-container
{display:flex;
    justify-content:center;
    margin-bottom:20px
}
.bus-icon
{
    font-size:2.5rem;
    color:#3498db;
    background:rgba(52,152,219,0.1);
    width:80px;
    height:80px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center
}
@media (max-width:768px)
{
    .carCard
    {
        margin-bottom:30px
    }
    .trans-header h1
    {
        font-size:2rem
    }
    .trans-header p
    {
        font-size:1rem
    }
}

