```css
/* ==========================================================
   BRISA DEL JERTE
   Premium Style
========================================================== */

:root{

--primary:#5f7a61;
--primary-dark:#425944;
--accent:#d9b56d;
--light:#faf9f6;
--white:#ffffff;
--text:#333;
--grey:#777;

--radius:18px;

--shadow:0 12px 35px rgba(0,0,0,.12);

--transition:.35s;

}

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:Inter,sans-serif;

background:var(--light);

color:var(--text);

line-height:1.7;

}

img{

width:100%;
display:block;

}

a{

text-decoration:none;

}

/* NAVBAR */

.navbar{

position:fixed;

top:0;

left:0;

width:100%;

display:flex;

justify-content:space-between;

align-items:center;

padding:18px 8%;

background:rgba(255,255,255,.88);

backdrop-filter:blur(14px);

z-index:999;

transition:.4s;

box-shadow:0 2px 15px rgba(0,0,0,.04);

}

.logo{

font-family:"Playfair Display",serif;

font-size:2rem;

color:var(--primary);

font-weight:700;

}

.navbar ul{

display:flex;

gap:35px;

list-style:none;

}

.navbar ul a{

color:#333;

font-weight:600;

transition:.3s;

}

.navbar ul a:hover{

color:var(--primary);

}

.btn-nav{

background:var(--primary);

padding:13px 28px;

border-radius:40px;

color:white;

font-weight:700;

transition:.3s;

}

.btn-nav:hover{

background:var(--primary-dark);

transform:translateY(-2px);

}

/* HERO */

.hero{

height:100vh;

background:url("../img/hero.jpg") center center/cover;

position:relative;

display:flex;

justify-content:center;

align-items:center;

}

.overlay{

position:absolute;

inset:0;

background:rgba(0,0,0,.42);

}

/* HERO */

.hero{

    position:relative;

    height:100vh;

    background-image:url("../img/hero.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    display:flex;

    align-items:center;

    justify-content:center;

}

.overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.35)
    );

}

.hero-content{

    position:relative;

    z-index:10;

    max-width:850px;

    text-align:center;

    color:white;

    padding:40px;

}

.hero-subtitle{

    display:inline-block;

    background:rgba(255,255,255,.18);

    backdrop-filter:blur(10px);

    padding:10px 22px;

    border-radius:40px;

    margin-bottom:30px;

    font-size:.95rem;

    letter-spacing:2px;

    text-transform:uppercase;

}

.hero h1{

    font-family:"Playfair Display",serif;

    font-size:5rem;

    margin-bottom:25px;

}

.hero p{

    font-size:1.25rem;

    max-width:700px;

    margin:auto;

    margin-bottom:45px;

    line-height:1.8;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.hero-btn{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    min-width:260px;

    padding:18px 42px;

    background:#d9b56d;

    color:#222;

    border-radius:50px;

    font-weight:700;

    transition:.3s;

}

.hero-btn i{

    position:absolute;

    left:28px;

    font-size:1.2rem;

}

.hero-btn:hover{

    transform:translateY(-5px);

}

.hero-secondary{

    border:2px solid white;

    color:white;

    padding:18px 42px;

    border-radius:50px;

    transition:.3s;

}

.hero-secondary:hover{

    background:white;

    color:#333;

}

.stat{

text-align:center;

padding:35px;

border-radius:var(--radius);

box-shadow:var(--shadow);

transition:.35s;

}

.stat:hover{

transform:translateY(-8px);

}

.stat i{

font-size:2.3rem;

color:var(--primary);

margin-bottom:15px;

}

.stat h3{

font-size:1.1rem;

}

/* ABOUT */

.about{

padding:110px 10%;

text-align:center;

}

.about h2{

font-family:"Playfair Display";

font-size:3rem;

margin-bottom:30px;

color:var(--primary);

}

.about p{

max-width:900px;

margin:auto;

font-size:1.1rem;

color:#555;

}

/* GALLERY */

.gallery{

padding:100px 8%;

}

.gallery h2{

text-align:center;

font-size:3rem;

margin-bottom:50px;

font-family:"Playfair Display";

color:var(--primary);

}

.gallery-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:22px;

}

.gallery-grid img{

border-radius:var(--radius);

cursor:pointer;

transition:.45s;

box-shadow:var(--shadow);

}

.gallery-grid img:hover{

transform:scale(1.04);

}

/* FEATURES */

.features{

padding:100px 8%;

background:white;

}

.features h2{

text-align:center;

font-size:3rem;

margin-bottom:50px;

font-family:"Playfair Display";

color:var(--primary);

}

.cards{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.card{

background:var(--light);

padding:45px;

text-align:center;

border-radius:var(--radius);

transition:.35s;

box-shadow:var(--shadow);

}

.card:hover{

background:var(--primary);

color:white;

transform:translateY(-10px);

}

.card i{

font-size:2.4rem;

margin-bottom:20px;

}

/* MAPA */

.location{

padding:100px 8%;

}

.location h2{

text-align:center;

font-size:3rem;

margin-bottom:40px;

font-family:"Playfair Display";

color:var(--primary);

}

.location iframe{

width:100%;

height:500px;

border:0;

border-radius:var(--radius);

box-shadow:var(--shadow);

}

/* CTA */

.cta{

padding:120px 8%;

text-align:center;

background:linear-gradient(135deg,#5f7a61,#708b73);

color:white;

}

.cta h2{

font-family:"Playfair Display";

font-size:3rem;

margin-bottom:25px;

}

.cta p{

margin-bottom:40px;

font-size:1.2rem;

}

.cta a{

display:inline-block;

padding:18px 45px;

background:white;

color:#333;

border-radius:40px;

font-weight:700;

transition:.3s;

}

.cta a:hover{

transform:translateY(-4px);

}

/* FOOTER */

footer{

background:#253126;

color:white;

text-align:center;

padding:30px;

}

/* ANIMACIONES */

.fade{

opacity:0;

transform:translateY(40px);

transition:1s;

}

.fade.visible{

opacity:1;

transform:none;

}

/* RESPONSIVE */

@media(max-width:1000px){

.stats{

grid-template-columns:repeat(2,1fr);

}

.cards{

grid-template-columns:repeat(2,1fr);

}

.hero h1{

font-size:3.8rem;

}

}

@media(max-width:760px){

.navbar{

padding:15px 25px;

}

.navbar ul{

display:none;

}

.hero h1{

font-size:2.8rem;

}

.hero p{

font-size:1rem;

}

.stats{

grid-template-columns:1fr;

}

.cards{

grid-template-columns:1fr;

}

.about h2,
.gallery h2,
.features h2,
.location h2,
.cta h2{

font-size:2.2rem;

}

.location iframe{

height:350px;

}

}
```
```css
/* ==========================
   LIGHTBOX
========================== */

#lightbox{

position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.92);

display:none;

justify-content:center;

align-items:center;

z-index:99999;

cursor:zoom-out;

}

#lightbox.active{

display:flex;

}

#lightbox img{

max-width:90%;
max-height:90%;
border-radius:16px;

box-shadow:0 20px 60px rgba(0,0,0,.4);

}

/* ==========================
   BOTÓN VOLVER ARRIBA
========================== */

.topButton{

position:fixed;

right:30px;

bottom:30px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:#5f7a61;

color:white;

font-size:22px;

cursor:pointer;

opacity:0;

pointer-events:none;

transition:.35s;

box-shadow:0 15px 35px rgba(0,0,0,.2);

}

.topButton.show{

opacity:1;

pointer-events:auto;

}

.topButton:hover{

transform:translateY(-5px);

background:#425944;

}
```
.hero-slider{

position:absolute;
width:100%;
height:100%;
overflow:hidden;

}

.slide{

position:absolute;

width:100%;
height:100%;

object-fit:cover;

opacity:0;

transition:opacity 1.5s ease;

}

.slide.active{

opacity:1;

}
.reviews{

padding:120px 8%;

}

.review-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.review{

background:white;

padding:40px;

border-radius:20px;

box-shadow:0 10px 35px rgba(0,0,0,.08);

transition:.3s;

}

.review:hover{

transform:translateY(-8px);

}
section{

animation:fadeUp .9s ease both;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:none;

}

}
.hero-phone{

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    gap:6px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(12px);

    border:2px solid rgba(255,255,255,.45);

    color:white;

    padding:16px 34px;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

    min-width:230px;

}

.hero-phone span{

    font-size:0.95rem;

    font-weight:500;

    opacity:.9;

}

.hero-phone i{

    font-size:1.2rem;

    margin-bottom:4px;

}

.hero-phone:hover{

    background:white;

    color:#425944;

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(0,0,0,.18);

}
.hero-phone strong{

    font-size:1rem;

}

.hero-phone small{

    font-size:.8rem;

    opacity:.8;

}