@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-card: #ffffff;
  --bg-glass: rgba(0,0,0,0.02);
  --gold: #000000;
  --gold-light: #333333;
  --gold-dark: #000000;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted: #888888;
  --border: rgba(0,0,0,0.1);
  --border-hover: rgba(0,0,0,0.3);
  --glow: rgba(0,0,0,0.05);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', 'Outfit', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior:smooth; font-size:16px; }

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
}

/* === PARTICLE CANVAS === */
#particles-canvas {
  position: fixed; top:0; left:0; width:100%; height:100%;
  z-index: 0; pointer-events: none; opacity: 0.4;
}

/* === NAVBAR === */
.navbar {
  position: fixed; top:0; left:0; width:100%; z-index:1000;
  padding: 18px 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { padding:10px 60px; background:rgba(255,255,255,0.98); box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.navbar-logo { display:flex; align-items:center; gap:14px; text-decoration:none; }
.navbar-logo img { height:95px; mix-blend-mode: multiply; transition: height 0.3s ease; }
.navbar.scrolled .navbar-logo img { height: 75px; }
.navbar-logo span {
  font-family: var(--font-serif); font-size:1.3rem; font-weight:500;
  color: var(--gold); letter-spacing:2px; text-transform:uppercase;
}
.nav-links { display:flex; gap:36px; list-style:none; }
.nav-links a {
  color: var(--text-secondary); text-decoration:none; font-size:0.85rem;
  font-weight:500; letter-spacing:1.5px; text-transform:uppercase;
  position:relative; transition: var(--transition); padding-bottom:4px;
}
.nav-links a::after {
  content:''; position:absolute; bottom:0; left:0; width:0; height:1px;
  background: var(--gold); transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width:100%; }
.nav-cta {
  padding:10px 28px; border:1px solid var(--gold); color:var(--gold);
  text-decoration:none; font-size:0.8rem; font-weight:600;
  letter-spacing:1.5px; text-transform:uppercase; border-radius:2px;
  transition: var(--transition); position:relative; overflow:hidden;
}
.nav-cta::before {
  content:''; position:absolute; top:0; left:-100%; width:100%; height:100%;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
  transition:0.6s;
}
.nav-cta:hover::before { left:100%; }
.nav-cta:hover { background:var(--gold); color:var(--bg-primary); }

.mobile-toggle { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding:5px; }
.mobile-toggle span { width:24px; height:2px; background:var(--gold); transition:var(--transition); }

/* === HERO === */
.hero {
  min-height:100vh; display:flex; align-items:center; justify-content:center;
  position:relative; overflow:hidden; padding:120px 60px 80px;
}
.hero-bg {
  position:absolute; top:0; left:0; width:100%; height:100%;
  background: url('assets/images/meeting-room.jpg') center/cover no-repeat;
  z-index:0;
}
.hero-bg::after {
  content:''; position:absolute; top:0; left:0; width:100%; height:100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0.95) 100%);
}
.hero-content {
  position:relative; z-index:2; text-align:center;
  max-width:900px; animation: fadeInUp 1.2s ease-out;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 20px; border:1px solid var(--border);
  border-radius:50px; font-size:0.75rem; color:var(--gold);
  letter-spacing:2px; text-transform:uppercase; margin-bottom:32px;
  background: var(--bg-glass);
}
.hero-badge .pulse {
  width:8px; height:8px; border-radius:50%; background:var(--gold);
  animation: pulse 2s infinite;
}
.hero-title {
  font-family: var(--font-serif); font-size: clamp(2.8rem,6vw,5.5rem);
  font-weight:300; line-height:1.1; margin-bottom:24px;
  color: var(--text-primary);
}
.hero-title .gold { color: var(--gold); font-weight:500; }
.hero-subtitle {
  font-size:1.1rem; color:var(--text-secondary); max-width:600px;
  margin:0 auto 48px; font-weight:300; line-height:1.8;
}
.hero-buttons { display:flex; gap:20px; justify-content:center; flex-wrap:wrap; }
.btn-primary {
  display:inline-flex; align-items:center; gap:10px;
  padding:16px 40px; background: var(--gold); color:var(--bg-primary);
  text-decoration:none; font-size:0.85rem; font-weight:600;
  letter-spacing:1.5px; text-transform:uppercase; border-radius:2px;
  transition: var(--transition); border:none; cursor:pointer;
}
.btn-primary:hover { background:var(--gold-light); transform:translateY(-2px); box-shadow:0 10px 40px var(--glow); }
.btn-secondary {
  display:inline-flex; align-items:center; gap:10px;
  padding:16px 40px; border:1px solid var(--border);
  color:var(--text-primary); text-decoration:none; font-size:0.85rem;
  font-weight:500; letter-spacing:1.5px; text-transform:uppercase;
  border-radius:2px; transition: var(--transition); background:transparent;
}
.btn-secondary:hover { border-color:var(--gold); color:var(--gold); }

.hero-stats {
  display:flex; justify-content:center; gap:60px; margin-top:80px;
  padding-top:40px; border-top:1px solid var(--border);
}
.stat-item { text-align:center; }
.stat-number {
  font-family:var(--font-serif); font-size:3rem; font-weight:600;
  color:var(--gold); line-height:1;
}
.stat-label { font-size:0.75rem; color:var(--text-muted); letter-spacing:2px; text-transform:uppercase; margin-top:8px; }

/* === SECTIONS === */
.section { position:relative; z-index:1; padding:120px 60px; }
.section-dark { background: var(--bg-secondary); }

.section-header { text-align:center; max-width:700px; margin:0 auto 80px; }
.section-label {
  display:inline-block; font-size:0.7rem; color:var(--gold);
  letter-spacing:3px; text-transform:uppercase; margin-bottom:16px;
  padding-bottom:16px; border-bottom:1px solid var(--border);
}
.section-title {
  font-family:var(--font-serif); font-size:clamp(2rem,4vw,3.2rem);
  font-weight:400; line-height:1.2; margin-bottom:20px;
}
.section-desc { font-size:0.95rem; color:var(--text-secondary); line-height:1.8; }

/* === AREAS CARDS === */
.areas-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:30px; max-width:1200px; margin:0 auto; }
.area-card {
  padding:48px 36px; border:1px solid var(--border); border-radius:4px;
  background: var(--bg-card); transition: var(--transition);
  position:relative; overflow:hidden;
}
.area-card::before {
  content:''; position:absolute; top:0; left:0; width:100%; height:2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity:0; transition: var(--transition);
}
.area-card:hover { transform:translateY(-10px); background:var(--bg-primary); border-color:rgba(0,0,0,0.2); }
.area-card:hover::before { opacity:1; }
.area-card-icon { width:48px; height:48px; margin-bottom:24px; color: var(--text-primary); }
.area-card-icon svg { width:100%; height:100%; }
.area-card h3 {
  font-family:var(--font-serif); font-size:1.8rem; font-weight:500;
  margin-bottom:16px; color:var(--text-primary);
}
.area-card p { font-size:0.9rem; color:var(--text-secondary); line-height:1.8; margin-bottom:24px; }
.area-card-link {
  display:inline-flex; align-items:center; gap:8px; color:var(--gold);
  text-decoration:none; font-size:0.8rem; font-weight:600;
  letter-spacing:1px; text-transform:uppercase; transition:var(--transition);
}
.area-card-link:hover { gap:14px; }

/* === ABOUT === */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; max-width:1200px; margin:0 auto; align-items:center; }
.about-image-wrapper { position:relative; }
.about-image {
  width:100%; border-radius:4px;
  transition:var(--transition);
}
.about-image:hover { transform:scale(1.02); }
.about-image-border {
  position:absolute; top:20px; left:20px; right:-20px; bottom:-20px;
  border:1px solid var(--gold); border-radius:4px; z-index:-1;
}
.about-text h3 {
  font-family:var(--font-serif); font-size:2.4rem; font-weight:400;
  line-height:1.3; margin-bottom:24px;
}
.about-text h3 .gold { color:var(--gold); }
.about-text p { font-size:0.95rem; color:var(--text-secondary); line-height:1.9; margin-bottom:20px; }
.about-features { list-style:none; margin:32px 0; }
.about-features li {
  display:flex; align-items:center; gap:12px; padding:12px 0;
  border-bottom:1px solid var(--border); font-size:0.9rem;
  color:var(--text-secondary);
}
.about-features li .check { color:var(--gold); font-size:1.2rem; }

/* === SERVICES === */
.services-wrapper { max-width:1200px; margin:0 auto; }
.services-grid { display:grid; grid-template-columns:1fr 1.2fr; gap:60px; align-items:center; }
.services-image { width:100%; border-radius:4px; }
.services-list { list-style:none; }
.service-item {
  padding:24px 0; border-bottom:1px solid var(--border);
  cursor:pointer; transition:var(--transition);
}
.service-item:hover { padding-left:16px; }
.service-item-header { display:flex; align-items:center; justify-content:space-between; }
.service-item-number { font-family:var(--font-serif); font-size:1.2rem; color:var(--gold); margin-right:16px; }
.service-item h4 { font-size:1.1rem; font-weight:500; flex:1; }
.service-item-arrow { color:var(--gold); font-size:1.2rem; transition:var(--transition); }
.service-item:hover .service-item-arrow { transform:translateX(6px); }
.service-item p { font-size:0.85rem; color:var(--text-secondary); margin-top:12px; line-height:1.7; max-height:0; overflow:hidden; transition:max-height 0.4s ease; }
.service-item.active p { max-height:200px; }

/* === COMMITMENT === */
.commitment-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:30px; max-width:1200px; margin:0 auto; }
.commitment-card {
  padding:40px 28px; text-align:center; border:1px solid var(--border);
  border-radius:4px; background:var(--bg-card); transition:var(--transition);
}
.commitment-card:hover { border-color:var(--border-hover); transform:translateY(-4px); }
.commitment-icon { font-size:2.5rem; margin-bottom:20px; }
.commitment-card h4 { font-family:var(--font-serif); font-size:1.3rem; margin-bottom:12px; }
.commitment-card p { font-size:0.85rem; color:var(--text-secondary); line-height:1.7; }

/* === CTA SECTION === */
.cta-section {
  position:relative; padding:100px 60px; text-align:center;
  background: linear-gradient(135deg, rgba(0,0,0,0.02) 0%, var(--bg-primary) 50%, rgba(0,0,0,0.01) 100%);
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
}
.cta-section h2 {
  font-family:var(--font-serif); font-size:clamp(2rem,4vw,3rem);
  font-weight:400; margin-bottom:16px;
}
.cta-section p { font-size:1rem; color:var(--text-secondary); margin-bottom:40px; max-width:500px; margin-left:auto; margin-right:auto; }
.cta-phone {
  display:block; font-family:var(--font-serif); font-size:2rem;
  color:var(--gold); text-decoration:none; margin-bottom:32px;
  transition:var(--transition);
}
.cta-phone:hover { color:var(--gold-light); }

/* === FOOTER === */
.footer {
  padding:80px 60px 40px; border-top:1px solid var(--border);
  background:var(--bg-secondary);
}
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:60px; max-width:1200px; margin:0 auto 60px; }
.footer-brand p { font-size:0.85rem; color:var(--text-secondary); line-height:1.8; margin-top:16px; }
.footer h4 {
  font-family:var(--font-serif); font-size:1.1rem; margin-bottom:20px;
  color:var(--gold); font-weight:500;
}
.footer ul { list-style:none; }
.footer ul li { margin-bottom:10px; }
.footer ul a { color:var(--text-secondary); text-decoration:none; font-size:0.85rem; transition:var(--transition); }
.footer ul a:hover { color:var(--gold); }
.footer-bottom {
  text-align:center; padding-top:40px; border-top:1px solid var(--border);
  max-width:1200px; margin:0 auto;
}
.footer-bottom p { font-size:0.75rem; color:var(--text-muted); }

/* === MAP SECTION === */
.map-section {
  position:relative; z-index:1; padding:100px 60px;
  background: var(--bg-secondary);
}
.map-container {
  max-width:1200px; margin:0 auto;
}
.map-wrapper {
  width:100%; height:450px; border-radius:4px; overflow:hidden;
  border:1px solid var(--border); position:relative;
}
.map-wrapper iframe {
  width:100%; height:100%; border:0; filter: none;
}
.map-wrapper:hover iframe {
  filter: none;
}
.map-info {
  display:flex; gap:40px; margin-top:40px; justify-content:center; flex-wrap:wrap;
}
.map-info-item {
  display:flex; align-items:center; gap:12px;
  padding:16px 28px; border:1px solid var(--border); border-radius:4px;
  background:var(--bg-card); transition:var(--transition);
}
.map-info-item:hover { border-color:var(--border-hover); }
.map-info-icon { font-size:1.4rem; color:var(--gold); }
.map-info-text { font-size:0.9rem; color:var(--text-secondary); }
.map-info-text strong { display:block; color:var(--text-primary); font-size:0.85rem; margin-bottom:2px; }

@media(max-width:768px) {
  .map-section { padding:60px 24px; }
  .map-wrapper { height:300px; }
  .map-info { flex-direction:column; gap:16px; }
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(40px); }
  to { opacity:1; transform:translateY(0); }
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(1.5); }
}
.reveal { opacity:0; transform:translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.active { opacity:1; transform:translateY(0); }

/* === FLOATING WHATSAPP === */
.whatsapp-float {
  position:fixed; bottom:28px; right:28px; z-index:999;
  width:60px; height:60px; border-radius:50%;
  background: #25D366; display:flex; align-items:center; justify-content:center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition); text-decoration:none;
  animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform:scale(1.1); box-shadow:0 6px 30px rgba(37,211,102,0.6); }
.whatsapp-float svg { width:30px; height:30px; fill:#fff; }

/* === RESPONSIVE === */
@media(max-width:1024px) {
  .areas-grid { grid-template-columns:repeat(2,1fr); }
  .commitment-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; gap:40px; }
}
@media(max-width:768px) {
  .navbar { padding:16px 24px; }
  .navbar.scrolled { padding:12px 24px; }
  .navbar-logo img { height: 65px; }
  .navbar.scrolled .navbar-logo img { height: 55px; }
  .nav-links, .nav-cta { display:none; }
  .mobile-toggle { display:flex; }
  .nav-links.open {
    display:flex; flex-direction:column; position:absolute;
    top:100%; left:0; width:100%; background:rgba(255,255,255,0.98);
    padding:24px; gap:20px; border-bottom:1px solid var(--border);
  }
  .hero { padding:100px 24px 40px; }
  .hero-title { font-size: 2.5rem; }
  .hero-buttons { flex-direction:column; width:100%; }
  .hero-buttons .btn-primary, .hero-buttons .btn-secondary { width:100%; justify-content:center; }
  .hero-stats { flex-direction:column; gap:24px; margin-top:40px; }
  .section { padding:60px 24px; }
  .section-title { font-size:2.2rem; }
  .areas-grid { grid-template-columns:1fr; gap:24px; }
  .about-grid { grid-template-columns:1fr; gap:40px; }
  .services-grid { grid-template-columns:1fr; gap:32px; }
  .commitment-grid { grid-template-columns:1fr; gap:24px; }
  .footer-grid { grid-template-columns:1fr; text-align:center; gap:32px; }
  .footer-brand { margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
  .footer { padding:50px 24px 30px; }
  .cta-section { padding:60px 24px; }
  .whatsapp-float { bottom:20px; right:20px; width:50px; height:50px; }
  .whatsapp-float svg { width:24px; height:24px; }
}
