.call-to-action-bar {
    position: fixed;
    bottom: -220px;
    left: 5%;
    width: 90%;
    color: white;
		padding: 38px 60px 33px;
    margin: 0px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: bottom 0.5s ease-in-out;
    z-index: 10000;
    font-family: Arial, sans-serif;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    flex-wrap: wrap;
    border-radius: 10px;
    background: #8B16FF;
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.25);
}

.call-to-action-bar.show {
		bottom: 2vh;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 44px;
    width: 100%;
}

.cta-left{
	  color: #FFF;
    font-family: Ubuntu;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.fire-emoji {
    font-size: 1.05rem;
    margin-right: 5px;
}

@media (max-width:40em){
		.cta-left{
			font-size: .9rem;
	}

	.fire-emoji {
			font-size: .95rem;
	}
}
.cta-text {
    color: rgba(255, 255, 255, 0.70);
    font-family: Gilroy;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.12px;
}

.cta-call{
	line-height: 0%;
	margin-bottom: 11px;
}

.cta-tour{
    color: #FFF;
    font-family: Gilroy;
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: -0.125px;
}

.price-from {
    color: #FFF;
    font-family: Ubuntu;
    font-size: 0.7rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.precio-cta{
	  display: flex;
    align-items: center;
    gap: 11px;
}

.desde-cta{
	  display: flex;
    flex-direction: column;
}

.cta-content .price {
    color: #FFF;
    font-family: Ubuntu;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1px;
}

.moneda-cta{
	  color: #FFF;
    font-family: Ubuntu;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1px;
}


.reserve-button {
		font-family: Gilroy;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
		text-decoration:none;
    background-color: transparent;
    color: #FFF;
		padding: 11px 50px 11px 48px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
    border-radius: 8px;
    border: 1.3px solid #FFF;
}

@media (min-width:1000px){
	.reserve-button{
	width:35%;
	padding: 15px 20px 15px 15px;
	justify-content: center;
		text-align:center;
	}
}

@media (min-width:1600px){
	.reserve-button{
	width:35%;
	padding: 15px 20px 15px 15px;
	justify-content: center;
	text-align:center;
	}
}


.reserve-icon {
    width: 20px;
    height: 20px;
    fill: #6a0dad;
}

.close-button {
    background: none;
    border: none;
    color: white;
    font-size: 1.5em;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 5%;
    padding: 5px;
}

.close-icon {
    width: 24px;
    height: 24px;
    fill: white;
}


@media (max-width: 900px) {
    .cta-content {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 22px;
    }
    .cta-text, .price {
        font-size: 1.5em;
    }
    .reserve-button {
        width: 80%; /* Hacer el botón más ancho en pantallas pequeñas */
        justify-content: center;
    }
    .close-button {
        top: 10px;
        right: 10px;
        transform: none;
    }
}

@media (max-width: 500px) {
    .cta-text, .price {
        font-size: 1em;
    }
    .call-to-action-bar {
        padding: 22px;
    }
    .reserve-button {
        padding: 10px 20px;
        font-size: 1em;
    }
}

@media (min-width:1600px){
	.call-to-action-bar{
	left:15%;
	width:70%;
	}
}