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

:root {
  --bg: hsl(40, 20%, 97%);
  --fg: hsl(30, 15%, 10%);
  --card: hsl(40, 25%, 96%);
  --primary: hsl(36, 60%, 48%);
  --primary-fg: hsl(40, 20%, 97%);
  --muted: hsl(30, 10%, 42%);
  --border: hsl(36, 25%, 88%);
  --gold-light: hsl(40, 55%, 70%);
  --gold-dark: hsl(32, 65%, 35%);
  --champagne: hsl(38, 30%, 94%);
  --gradient-gold: linear-gradient(135deg, hsl(36, 60%, 48%), hsl(40, 55%, 70%));
  --gradient-hero: linear-gradient(180deg, hsl(40, 20%, 97%) 0%, hsl(38, 30%, 94%) 50%, hsl(40, 20%, 97%) 100%);
  --gradient-section: linear-gradient(180deg, hsl(38, 25%, 91%, 0.5) 0%, hsl(40, 20%, 97%) 100%);
  --gradient-glass: linear-gradient(135deg, hsl(40, 20%, 97%, 0.8), hsl(38, 30%, 94%, 0.6));
  --shadow-gold: 0 8px 32px -8px hsl(36, 60%, 48%, 0.25);
  --shadow-premium: 0 20px 60px -15px hsl(30, 15%, 10%, 0.1);
  --shadow-card-hover: 0 25px 50px -12px hsl(36, 60%, 48%, 0.2);
  --shadow-subtle: 0 1px 3px hsl(30, 15%, 10%, 0.04);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--fg); -webkit-font-smoothing: antialiased; line-height: 1.6; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: hsl(36, 60%, 48%, 0.2); color: var(--fg); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: hsl(36, 60%, 48%, 0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: hsl(36, 60%, 48%, 0.5); }

/* Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.gold-line { height: 2px; background: var(--gradient-gold); }
.w-8 { width: 2rem; } .w-12 { width: 3rem; } .w-16 { width: 4rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-6 { margin-top: 1.5rem; } .mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; } .mb-8 { margin-bottom: 2rem; }
.italic { font-style: italic; }
.gold-text { background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Animations */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.float-anim { animation: float 6s ease-in-out infinite; }
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Navbar */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: all 0.5s; }
.navbar.scrolled { background: var(--gradient-glass); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border-bottom: 1px solid hsl(40, 55%, 70%, 0.3); box-shadow: var(--shadow-subtle); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; height: 80px; }
.nav-logo { display: flex; flex-direction: column; }
.nav-logo-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--fg); letter-spacing: 0.05em; line-height: 1; }
.nav-logo-sub { font-family: var(--font-body); font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.35em; color: var(--primary); font-weight: 500; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 2.5rem; }
.nav-links a { font-family: var(--font-body); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 500; color: var(--muted); transition: color 0.3s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--gradient-gold); transition: width 0.3s; }
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { font-family: var(--font-body); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; background: var(--gradient-gold); color: var(--primary-fg); padding: 0.625rem 1.5rem; border-radius: 9999px; box-shadow: var(--shadow-gold); transition: all 0.3s; }
.nav-cta:hover { box-shadow: var(--shadow-card-hover); transform: scale(1.05); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--fg); transition: all 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 80px; left: 0; right: 0; background: var(--gradient-glass); backdrop-filter: blur(20px); border-bottom: 1px solid hsl(40, 55%, 70%, 0.3); padding: 2rem 0; gap: 1.25rem; }
  .nav-links.open a { font-size: 0.875rem; }
}

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 80px; overflow: hidden; background: var(--gradient-hero); }
.hero-blur { position: absolute; border-radius: 50%; filter: blur(80px); }
.hero-blur-1 { top: 8rem; right: 2.5rem; width: 18rem; height: 18rem; background: hsl(36, 60%, 48%, 0.05); }
.hero-blur-2 { bottom: 5rem; left: 2.5rem; width: 24rem; height: 24rem; background: hsl(40, 55%, 70%, 0.05); }
.hero-line-top { position: absolute; top: 0; left: 50%; width: 1px; height: 96px; background: linear-gradient(to bottom, transparent, hsl(36, 60%, 48%, 0.3), transparent); }
.hero-container { position: relative; max-width: 1200px; margin: 0 auto; padding: 5rem 1.5rem; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--champagne); border: 1px solid hsl(40, 55%, 70%, 0.3); border-radius: 9999px; padding: 0.375rem 1rem; margin-bottom: 2rem; color: var(--primary); }
.hero-badge span { font-family: var(--font-body); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 500; }
.hero-title { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 4.5rem); font-weight: 700; color: var(--fg); line-height: 1.1; margin-bottom: 0.25rem; }
.hero-title-italic { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 4.5rem); font-weight: 300; font-style: italic; background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.1; margin-bottom: 2rem; }
.hero-desc { font-family: var(--font-body); font-size: 1rem; color: var(--muted); line-height: 1.7; max-width: 28rem; font-weight: 300; margin-bottom: 2.5rem; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-gold { display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem; background: var(--gradient-gold); color: var(--primary-fg); font-family: var(--font-body); font-weight: 500; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em; padding: 1rem 2rem; border-radius: 9999px; box-shadow: var(--shadow-gold); transition: all 0.3s; border: none; cursor: pointer; }
.btn-gold:hover { box-shadow: var(--shadow-card-hover); transform: scale(1.05); }
.btn-outline { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; font-family: var(--font-body); font-weight: 500; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg); padding: 1rem 2rem; border-radius: 9999px; border: 1px solid hsl(40, 55%, 70%, 0.3); transition: all 0.3s; background: transparent; }
.btn-outline:hover { background: var(--champagne); }

.hero-image-wrap { display: flex; justify-content: center; position: relative; }
.hero-frame { position: absolute; border: 1px solid hsl(40, 55%, 70%, 0.2); border-radius: 2.5rem; }
.hero-frame-1 { inset: -1rem; transform: rotate(3deg); }
.hero-frame-2 { inset: -2rem; border-radius: 3rem; transform: rotate(-2deg); border-color: hsl(40, 55%, 70%, 0.1); }
.hero-image { position: relative; width: 22rem; height: 32rem; border-radius: 2rem; overflow: hidden; box-shadow: var(--shadow-premium); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, hsl(30, 15%, 10%, 0.3), transparent, hsl(36, 60%, 48%, 0.05)); }
.hero-image-badge { position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; background: var(--gradient-glass); backdrop-filter: blur(20px); border-radius: 0.75rem; padding: 1rem; border: 1px solid hsl(40, 55%, 70%, 0.2); }
.hero-image-badge-name { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; color: var(--fg); }
.hero-image-badge-role { font-family: var(--font-body); font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.15em; }

@media (max-width: 768px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 3rem; padding: 3rem 1.5rem; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-image { width: 18rem; height: 24rem; }
}

/* Sections */
.section { position: relative; padding: 7rem 0; }
.section-alt { background: var(--gradient-section); }
.section-line-top { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, hsl(36, 60%, 48%, 0.2), transparent); }
.section-line-bottom { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, hsl(36, 60%, 48%, 0.2), transparent); }
.section-header { text-align: center; max-width: 40rem; margin: 0 auto 5rem; }
.section-tag { font-family: var(--font-body); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--primary); font-weight: 500; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--fg); margin-top: 1rem; }
.section-desc { font-family: var(--font-body); color: var(--muted); line-height: 1.7; font-weight: 300; margin-top: 1.5rem; }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.feature-card { background: hsl(40, 25%, 96%, 0.8); backdrop-filter: blur(8px); border-radius: 1rem; padding: 2rem; text-align: center; border: 1px solid hsl(36, 25%, 88%, 0.5); box-shadow: var(--shadow-subtle); transition: all 0.5s; }
.feature-card:hover { box-shadow: var(--shadow-premium); border-color: hsl(40, 55%, 70%, 0.3); transform: translateY(-4px); }
.feature-icon { width: 3.5rem; height: 3.5rem; border-radius: 1rem; background: var(--gradient-gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; box-shadow: var(--shadow-gold); color: var(--primary-fg); transition: transform 0.5s; }
.feature-card:hover .feature-icon { transform: scale(1.1); }
.feature-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--fg); margin-bottom: 0.5rem; }
.feature-card p { font-family: var(--font-body); font-size: 0.875rem; color: var(--muted); font-weight: 300; }
@media (max-width: 768px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .features-grid { grid-template-columns: 1fr; } }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { position: relative; background: hsl(40, 25%, 96%, 0.8); backdrop-filter: blur(8px); border-radius: 1rem; padding: 2rem; border: 1px solid hsl(36, 25%, 88%, 0.5); box-shadow: var(--shadow-subtle); overflow: hidden; transition: all 0.5s; }
.service-card:hover { box-shadow: var(--shadow-premium); border-color: hsl(40, 55%, 70%, 0.3); transform: translateY(-4px); }
.service-accent { position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--gradient-gold); transform: scaleX(0); transform-origin: left; transition: transform 0.5s; }
.service-card:hover .service-accent { transform: scaleX(1); }
.service-icon { width: 3rem; height: 3rem; border-radius: 0.75rem; background: var(--gradient-gold); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; box-shadow: var(--shadow-gold); color: var(--primary-fg); transition: transform 0.5s; }
.service-card:hover .service-icon { transform: scale(1.1); }
.service-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--fg); margin-bottom: 0.75rem; }
.service-card p { font-family: var(--font-body); font-size: 0.875rem; color: var(--muted); line-height: 1.6; font-weight: 300; }
@media (max-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .services-grid { grid-template-columns: 1fr; } }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-item { position: relative; aspect-ratio: 4/5; border-radius: 1rem; overflow: hidden; box-shadow: var(--shadow-subtle); border: 1px solid hsl(36, 25%, 88%, 0.3); transition: all 0.5s; }
.gallery-item:hover { box-shadow: var(--shadow-premium); border-color: hsl(40, 55%, 70%, 0.3); }
.gallery-wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease-out; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, hsl(30, 15%, 10%, 0.7), hsl(30, 15%, 10%, 0.1), transparent); opacity: 0; transition: opacity 0.4s; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.25rem; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--primary-fg); }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .gallery-wide { grid-column: span 2; } }

/* Contact */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 4rem; }
.contact-card { background: hsl(40, 25%, 96%, 0.8); backdrop-filter: blur(8px); border-radius: 1rem; padding: 2rem; text-align: center; border: 1px solid hsl(36, 25%, 88%, 0.5); box-shadow: var(--shadow-subtle); transition: all 0.5s; }
.contact-card:hover { box-shadow: var(--shadow-premium); border-color: hsl(40, 55%, 70%, 0.3); transform: translateY(-4px); }
.contact-icon { width: 3.5rem; height: 3.5rem; border-radius: 1rem; background: var(--gradient-gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; box-shadow: var(--shadow-gold); color: var(--primary-fg); transition: transform 0.5s; }
.contact-card:hover .contact-icon { transform: scale(1.1); }
.contact-card h3 { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; color: var(--fg); margin-bottom: 0.5rem; }
.contact-card a { font-family: var(--font-body); font-size: 0.875rem; color: var(--primary); font-weight: 300; }
.contact-card a:hover { text-decoration: underline; }
.contact-card p { font-family: var(--font-body); font-size: 0.875rem; color: var(--muted); font-weight: 300; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .contact-grid { grid-template-columns: 1fr; } }

/* CTA */
.cta-box { max-width: 36rem; margin: 0 auto; background: hsl(40, 25%, 96%, 0.8); backdrop-filter: blur(8px); border-radius: 1.5rem; padding: 2.5rem; text-align: center; box-shadow: var(--shadow-premium); border: 1px solid hsl(40, 55%, 70%, 0.2); }
.cta-icon { width: 4rem; height: 4rem; border-radius: 50%; background: var(--gradient-gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; box-shadow: var(--shadow-gold); color: var(--primary-fg); }
.cta-box h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--fg); margin-bottom: 0.75rem; }
.cta-box p { font-family: var(--font-body); font-size: 0.875rem; color: var(--muted); font-weight: 300; margin-bottom: 2rem; }

/* Footer */
.footer { position: relative; padding: 3rem 0; background: var(--champagne); }
.footer-content { text-align: center; }
.footer-logo { margin-bottom: 1rem; }
.footer-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--fg); }
.footer-name-italic { font-family: var(--font-display); font-size: 1.5rem; font-weight: 300; font-style: italic; }
.footer-copy { font-family: var(--font-body); font-size: 0.75rem; color: var(--muted); font-weight: 300; }


/* ================= MAPA ================= */

.map-container {
  margin-top: 5rem;
  padding: 0 1.5rem;
}

.map-header {
  align-items: center;
  text-align: center;
}

.map-header .contact-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  color: white;
  flex-shrink: 0; /* impede deformar */
}

.map-header h3 {
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  margin: 0;
  margin-top: 10px;
}

.map-card {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  text-align: center;
}

.map-frame {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.map-frame iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

.map-address {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: #555;
}

/* MOBILE */
@media (max-width: 480px) {

  .map-header {
    flex-direction: row;
    gap: 8px;
  }

  .map-frame iframe {
    height: 250px;
  }

}