*{
margin:0;
padding:0;
box-sizing:border-box;
font-family: 'Segoe UI', sans-serif;
}

body{
background:#EAE4D9;
color:#2b2b2b;
}

/* HEADER */

.topbar{
background:#1F3D34;
color:white;
padding:20px 40px;
display:flex;
flex-direction:column;
align-items:center;
text-align:center;
}

.logo{
font-size:22px;
font-weight:bold;
}

.logo img{
height:50px;
width:auto;
display:block;
}

.breadcrumb{
opacity:0.7;
font-size:14px;
margin-top:5px;
}

/* HERO */

.hero{
text-align:center;
padding:90px 20px 70px;
background:#E6E0D6;
}

.hero h1{
font-family:'Playfair Display', serif;
font-size:60px;
font-weight:500;
color:#3b312b;
margin-bottom:10px;
}

.hero p{
font-family:'Inter', sans-serif;
color:#8c6f4d;
font-size:18px;
}

.hero::after{
content:"";
display:block;
height:4px;
width:100%;
background:#8c6f4d;
margin-top:60px;
}

/* CITY SECTION */

.city{
padding:60px 8%;
}

.city.dark{
background:#1F3D34;
color:white;
}

.city h2{
font-size:40px;
margin-bottom:10px;
}

.city.dark h3{
color:black;
}

.city-desc{
margin-bottom:40px;
opacity:0.8;
}

/* CARDS */

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,280px);
justify-content:center;
gap:30px;
}

.card{
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 8px 20px rgba(0,0,0,0.1);
transition:0.3s;
position:relative;
}

.card:hover{
transform:translateY(-6px);
}

.card img{
width:100%;
height:200px;
object-fit:cover;
}

.badge{
position:absolute;
top:15px;
left:15px;
background:#1F3D34;
color:white;
padding:6px 12px;
font-size:12px;
border-radius:4px;
}

.card-body{
padding:20px;
}

.card-body h3{
margin-bottom:5px;
}

.card-body p{
font-size:14px;
opacity:0.7;
margin-bottom:20px;
}

.card-body button{
width:100%;
padding:12px;
background:#1F3D34;
border:none;
color:white;
font-weight:bold;
cursor:pointer;
border-radius:6px;
transition:0.3s;
}

.card-body button:hover{
background:#163029;
}

/* FOOTER */

.footer{
background:#0e0e0e;
color:#d6d6d6;
padding-top:70px;
font-family:Poppins;
}

.footer-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(100px,1fr));
gap:30px;
padding:0 20px;
}


.footer h3{
font-family:"Playfair Display";
color:white;
margin-bottom:10px;
letter-spacing:2px;
}

.footer h4{
color:white;
margin-bottom:20px;
font-size:14px;
letter-spacing:2px;
}

.footer p{
font-size:14px;
margin-bottom:10px;
color:#9c9c9c;
}

.social{
display:flex;
gap:15px;
}

.social a{
width:35px;
height:35px;
border:1px solid #555;
display:flex;
align-items:center;
justify-content:center;
color:white;
text-decoration:none;
border-radius:50%;
font-size:13px;
transition:0.3s;
}

.social a:hover{
background:#c6a46c;
border-color:#c6a46c;
}

.footer-bottom{
margin-top:50px;
border-top:1px solid #222;
text-align:center;
padding:20px;
font-size:13px;
color:#777;
}


.city-selector{
text-align:center;
margin:40px 0;
}

.city-selector label{
display:block;
margin-bottom:10px;
font-weight:500;
}

.city-selector select{
padding:12px 18px;
border-radius:8px;
border:1px solid #ddd;
font-size:16px;
cursor:pointer;
}

.city-detected{
background:#111;
color:white;
padding:14px 20px;
text-align:center;
margin:20px auto;
max-width:600px;
border-radius:8px;
display:flex;
justify-content:space-between;
align-items:center;
gap:15px;
}

.city-detected button{
background:#c00000;
color:white;
border:none;
padding:8px 16px;
border-radius:6px;
cursor:pointer;
font-weight:500;
}

.btn{
background:#c6a46c;
border:none;
padding:12px 25px;
color:white;
cursor:pointer;
}

.btn{
background:#c6a46c;
color:white;
padding:12px 28px;
border:none;
cursor:pointer;
font-size:13px;
letter-spacing:1px;
position:relative;
overflow:hidden;
transition:all .3s ease;
}

/* elevación */

.btn:hover{
transform:translateY(-3px);
box-shadow:0 8px 20px rgba(0,0,0,0.2);
}


/* efecto brillo */

.btn::before{
content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:linear-gradient(
120deg,
transparent,
rgba(255,255,255,0.4),
transparent
);
transition:.6s;
}

.btn:hover::before{
left:100%;
}

.btn{
animation:pulse 5s infinite;
}

@keyframes pulse{

0%{transform:scale(1)}

50%{transform:scale(1.05)}

100%{transform:scale(1)}

}

.contacto strong{
display:block;
color:#c9a96a;
font-weight:500;
}
