*{

margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;

}

body{

background:
linear-gradient(rgba(255,255,255,.88),
rgba(255,255,255,.88)),
url("Columpios\ de\ Montana\ Redonda\ con\ vista\ panorámica..jfif");

background-size:cover;
background-position:center;
background-attachment:fixed;

color:#222;

}

.back-btn{
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255,255,255,.9);
    color: #222;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,.2);
    transition: .3s;
}

.back-btn:hover{
    background: #00b894;
    color: #fff;
    transform: translateX(-3px);
}

.hero{
    min-height:130vh;
    padding:100px 0;
}
.hero{
    min-height:120vh;
    background:url("domitai\ park.png") center center/cover;
    position:relative;
    display:flex;
    align-items:center;
    padding:80px 0;
}

.overlay{

position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,.55);

}

.hero-content{

position:relative;
max-width:1200px;
margin:auto;
color:white;
padding:40px;

}

.tour-tag{

background:#14cfc8;
color:#000;
padding:8px 18px;
border-radius:30px;
font-weight:600;

}

.hero h1{

font-size:55px;
margin:20px 0;

}

.tour-info{

display:flex;
gap:30px;
flex-wrap:wrap;
margin:20px 0;

}

.tour-info span{

background:rgba(255,255,255,.15);
padding:12px 18px;
border-radius:10px;
backdrop-filter:blur(8px);

}

.price{

margin:30px 0;

}

.old-price{

text-decoration:line-through;
font-size:24px;
opacity:.7;

}

.new-price{

font-size:45px;
color:#ffb400;
font-weight:700;
margin-left:15px;

}

.hero-buttons{

display:flex;
gap:20px;
margin-top:30px;

}

.btn-primary{

background:#14cfc8;
padding:16px 35px;
border-radius:8px;
text-decoration:none;
color:#000;
font-weight:bold;
transition:.3s;

}

.btn-primary:hover{

transform:translateY(-4px);

}

.btn-secondary{

border:2px solid white;
padding:16px 35px;
border-radius:8px;
text-decoration:none;
color:white;
transition:.3s;

}

.btn-secondary:hover{

background:white;
color:#111;

}

.container{
    max-width:1300px;
    margin:150px auto 0;
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
    padding:20px;
}

/* Tablets */
@media (max-width:992px){
    .container{
        margin-top:100px;
    }
}

/* Celulares */
@media (max-width:768px){
    .container{
        margin-top:60px;
    }
}

.main-image{

width:100%;
border-radius:18px;
margin-bottom:30px;

}

.content{

background:white;
padding:30px;
border-radius:18px;
box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.content h2{

margin-bottom:20px;

}

.content p{

line-height:1.9;
margin-bottom:20px;

}

.booking-card{

position:sticky;
top:30px;
background:white;
padding:30px;
border-radius:18px;

height:max-content;

}

.booking-card h2{

margin-bottom:25px;

}

.booking-card input,
.booking-card select{

width:100%;
padding:15px;
margin-bottom:15px;
border:1px solid #ddd;
border-radius:10px;
font-size:16px;

}

.booking-card button{

width:100%;
padding:16px;
border:none;
background:#14cfc8;
font-size:18px;
font-weight:600;
border-radius:10px;
cursor:pointer;
transition:.3s;

}

.booking-card button:hover{

background:#ff9900;

}

.contact-box{

margin-top:35px;
padding-top:25px;
border-top:1px solid #eee;

}

.contact-box p{

margin:12px 0;

}

.contact-box i{

color:#14cfc8;
margin-right:10px;

}

@media(max-width:992px){

.container{

grid-template-columns:1fr;

}

.hero{

height:120vh;

}

.hero h1{

font-size:38px;

}

.booking-card{

position:relative;
top:0;

}

}

@media(max-width:768px){

.hero{

height:70vh;

}

.hero h1{

font-size:30px;

}

.hero-buttons{

flex-direction:column;

}

.tour-info{

flex-direction:column;

}

}