@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root { --primary:#d90429; --primary-hover:#ef233c; --bg-dark:#0f1115; --bg-darker:#050608; --bg-card:rgba(255,255,255,.03); --border-subtle:rgba(255,255,255,.08); --text-main:#f8f9fa; --text-muted:#adb5bd; --whatsapp:#25D366; --transition:all .3s cubic-bezier(.25,.8,.25,1); }
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Outfit',sans-serif; background-color:var(--bg-dark); color:var(--text-main); line-height:1.6; overflow-x:hidden; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
.container { max-width:1200px; margin:0 auto; padding:0 2rem; }
.text-primary { color:var(--primary); }
.btn { display:inline-block; padding:1rem 2rem; border-radius:50px; font-weight:600; text-transform:uppercase; letter-spacing:1px; transition:var(--transition); cursor:pointer; }
.btn-primary { background-color:var(--primary); color:var(--bg-darker); box-shadow:0 4px 15px rgba(203,163,90,.3); }
.btn-primary:hover { background-color:var(--primary-hover); transform:translateY(-2px); box-shadow:0 6px 20px rgba(203,163,90,.4); }

header { position:fixed; top:0; width:100%; padding:1.5rem 0; background:rgba(15,17,21,.9); backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px); z-index:1000; border-bottom:1px solid var(--border-subtle); transition:var(--transition); }
nav { display:flex; justify-content:space-between; align-items:center; }
.logo img { height:70px; display:block; }
.nav-links { display:flex; gap:2rem; align-items:center; }
.nav-links a { font-weight:500; font-size:.95rem; transition:var(--transition); }
.nav-links a:hover { color:var(--primary); }
.hamburger { display:none; cursor:pointer; flex-direction:column; gap:5px; }
.hamburger span { width:25px; height:2px; background-color:var(--text-main); transition:var(--transition); }

.hero { height:100vh; min-height:680px; display:flex; align-items:center; position:relative; background-image:url('../img/hero.png'); background-size:cover; background-position:center; }
.hero::after { content:''; position:absolute; inset:0; background:linear-gradient(90deg,rgba(5,6,8,.95) 0%,rgba(15,17,21,.7) 100%); z-index:1; }
.hero-grid { position:relative; z-index:2; display:grid; grid-template-columns:1fr 1fr; align-items:center; gap:3rem; width:100%; }
.hero-video iframe { width:100%; border-radius:12px; aspect-ratio:16/9; height:auto; box-shadow:0 10px 30px rgba(0,0,0,.5); display:block; }
.hero h1 { font-size:3.5rem; line-height:1.1; margin-bottom:1.5rem; }
.hero h1 span { color:white; font-size:2.8rem; }
.hero p { font-size:1.25rem; color:var(--text-muted); margin-bottom:2rem; max-width:600px; }

section { padding:6rem 0; }
.section-header { text-align:center; margin-bottom:4rem; }
.section-header h2 { font-size:2.5rem; margin-bottom:1rem; }
.section-header p { color:var(--text-muted); font-size:1.1rem; }
.features-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:2rem; }
.feature-card { background:var(--bg-card); border:1px solid var(--border-subtle); padding:2.5rem 2rem; border-radius:16px; text-align:center; transition:var(--transition); backdrop-filter:blur(5px); }
.feature-card:hover { transform:translateY(-10px); border-color:var(--primary); background:rgba(255,255,255,.05); }
.feature-icon { font-size:3rem; color:var(--primary); margin-bottom:1.5rem; }
.feature-card h3 { font-size:1.5rem; margin-bottom:1rem; }
.feature-card p { color:var(--text-muted); }

.locations { background-color:var(--bg-darker); }
.locations-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(250px,1fr)); gap:1.5rem; }
.location-item { display:flex; flex-direction:column; align-items:stretch; gap:1rem; padding:1.5rem; background:var(--bg-card); border-radius:12px; border:1px solid transparent; transition:var(--transition); }
.location-item:hover { border-color:var(--primary); }
.location-title { display:flex; align-items:center; gap:1rem; font-weight:500; }
.location-title .icon { color:var(--primary); font-size:1.5rem; }
.location-map { width:100%; height:180px; border-radius:8px; border:none; background-color:#1a1c23; }
.location-cta { text-align:center; margin-top:3rem; }

.about { display:flex; align-items:center; gap:4rem; }
.about-content { flex:1; }
.about-content h2 { font-size:2.5rem; margin-bottom:1.5rem; }
.about-content p { color:var(--text-muted); margin-bottom:1.5rem; font-size:1.1rem; }
.gallery { background-color:var(--bg-dark); }
.gallery-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:1.5rem; }
.gallery-item { position:relative; overflow:hidden; border-radius:12px; aspect-ratio:4/3; border:1px solid var(--border-subtle); transition:var(--transition); background:#1a1c23; }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; display:block; }
.gallery-item:hover img { transform:scale(1.1); }
.gallery-item::after { content:''; position:absolute; inset:0; background:linear-gradient(0deg,rgba(15,17,21,.8) 0%,transparent 50%); opacity:0; transition:var(--transition); pointer-events:none; }
.gallery-item:hover::after { opacity:1; }

footer { background:var(--bg-darker); padding:4rem 0 2rem; border-top:1px solid var(--border-subtle); }
.footer-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:3rem; margin-bottom:3rem; }
.footer-logo img { height:50px; margin-bottom:1.5rem; display:block; }
.footer-logo p { color:var(--text-muted); margin-top:1rem; }
.footer-info h4 { color:var(--primary); margin-bottom:1.5rem; font-size:1.2rem; }
.footer-info p { display:flex; align-items:flex-start; gap:1rem; margin-bottom:1rem; color:var(--text-muted); }
.footer-info p i { color:var(--primary); margin-top:5px; }
.footer-info a { color:var(--whatsapp); font-weight:600; margin-top:1rem; display:block; }
.copyright { text-align:center; padding-top:2rem; border-top:1px solid var(--border-subtle); color:var(--text-muted); font-size:.9rem; }
.fab-whatsapp { position:fixed; bottom:30px; right:30px; background-color:var(--whatsapp); color:white; width:60px; height:60px; border-radius:50%; display:flex; justify-content:center; align-items:center; font-size:35px; box-shadow:0 4px 10px rgba(37,211,102,.4); z-index:9999; transition:var(--transition); }
.fab-whatsapp:hover { transform:scale(1.1); box-shadow:0 6px 15px rgba(37,211,102,.6); }

@media (max-width:992px) {
  .hero-grid { grid-template-columns:1fr; text-align:center; gap:2rem; }
  .hero-content { margin-top:4rem; }
  .hero h1 { font-size:3rem; }
  .hero h1 span { font-size:2.35rem; }
  .hero p { margin-left:auto; margin-right:auto; }
}
@media (max-width:768px) {
  .container { padding:0 1.25rem; }
  .nav-links { position:absolute; top:100%; left:0; width:100%; background:rgba(15,17,21,.98); flex-direction:column; padding:2rem 0; gap:1.5rem; clip-path:circle(0 at 100% 0); transition:clip-path .4s ease-in-out; }
  .nav-links.active { clip-path:circle(150% at 100% 0); }
  .hamburger { display:flex; }
  .hamburger.active span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity:0; }
  .hamburger.active span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
  .logo img { height:58px; }
  .hero { min-height:760px; }
  .hero h1 { font-size:2.5rem; }
  .hero h1 span { font-size:1.95rem; }
  .hero p { font-size:1.05rem; }
  .about { flex-direction:column; }
  .section-header h2, .about-content h2 { font-size:2rem; }
  .fab-whatsapp { width:54px; height:54px; bottom:20px; right:20px; }
}
