:root{
  --navy:#062545;
  --navy-2:#0b355e;
  --gold:#b69a5b;
  --gold-2:#d6c28a;
  --ink:#102033;
  --muted:#68768a;
  --soft:#f4f7fb;
  --white:#ffffff;
  --line:rgba(6,37,69,.12);
  --shadow:0 22px 60px rgba(6,37,69,.14);
  --radius:28px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--ink);
  background:var(--white);
  line-height:1.6;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

.header{
  min-height:100vh;
  background:
    radial-gradient(circle at 20% 15%, rgba(214,194,138,.35), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(11,53,94,.16), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #eef4fb 54%, #ffffff 100%);
  position:relative;
  overflow:hidden;
}
.header::after{
  content:"";
  position:absolute;
  inset:auto -10% -28% -10%;
  height:45%;
  background:linear-gradient(90deg, rgba(6,37,69,.12), rgba(182,154,91,.18));
  border-radius:50% 50% 0 0;
  pointer-events:none;
}

.nav{
  width:min(1180px, calc(100% - 34px));
  margin:0 auto;
  min-height:94px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  position:relative;
  z-index:5;
}
.brand img{
  width:182px;
  border-radius:18px;
  box-shadow:0 8px 22px rgba(6,37,69,.08);
}
.nav-links{
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(14px);
  box-shadow:0 10px 30px rgba(6,37,69,.08);
}
.nav-links a{
  padding:10px 16px;
  border-radius:999px;
  font-size:.94rem;
  font-weight:700;
  color:var(--navy);
}
.nav-links a:hover{background:rgba(6,37,69,.08)}
.nav-links .nav-cta{
  background:var(--navy);
  color:var(--white);
}
.nav-links .nav-cta:hover{background:var(--navy-2)}
.menu-button{display:none}

.hero{
  width:min(1180px, calc(100% - 34px));
  margin:0 auto;
  padding:72px 0 110px;
  display:grid;
  grid-template-columns:1fr .92fr;
  gap:46px;
  align-items:center;
  position:relative;
  z-index:2;
}
.tag{
  margin:0 0 12px;
  display:inline-flex;
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:.78rem;
  font-weight:900;
}
h1,h2,h3,p{margin-top:0}
h1{
  margin-bottom:18px;
  color:var(--navy);
  font-size:clamp(2.7rem, 7vw, 6.8rem);
  line-height:.92;
  letter-spacing:-.065em;
}
.lead{
  max-width:680px;
  color:#26384f;
  font-size:clamp(1.2rem, 2vw, 1.75rem);
  font-weight:700;
  margin-bottom:30px;
}
.hero-actions,.contact-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:13px 22px;
  border-radius:999px;
  font-weight:900;
  border:1px solid transparent;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn.primary{background:var(--navy); color:var(--white); box-shadow:0 16px 34px rgba(6,37,69,.22)}
.btn.secondary{background:var(--gold); color:#1f2430; box-shadow:0 16px 34px rgba(182,154,91,.28)}
.btn.outline{background:rgba(255,255,255,.72); color:var(--navy); border-color:rgba(6,37,69,.18)}

.hero-media{
  display:grid;
  gap:22px;
}
.logo-panel,.photo-panel{
  background:rgba(255,255,255,.88);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.logo-panel{padding:22px}
.logo-panel img{border-radius:18px;width:100%;height:auto}
.photo-panel{
  width:min(420px, 100%);
  justify-self:end;
  padding:12px;
}
.photo-panel img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  border-radius:22px;
}

.section{
  padding:86px 0;
  width:min(1180px, calc(100% - 34px));
  margin:0 auto;
}
.section-title{max-width:780px;margin-bottom:34px}
.section-title.centered{text-align:center;margin-left:auto;margin-right:auto}
.section-title h2,.profile-copy h2,.contact-box h2{
  color:var(--navy);
  font-size:clamp(2rem, 4vw, 3.7rem);
  line-height:1.02;
  letter-spacing:-.04em;
  margin-bottom:14px;
}
.section-title p,.profile-copy p,.contact-box p{color:var(--muted);font-size:1.06rem}

.intro{
  padding-bottom:30px;
}
.services{
  padding-top:56px;
}
.cards{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:22px;
}
.card{
  min-height:280px;
  padding:32px;
  border-radius:var(--radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(244,247,251,.96)),
    radial-gradient(circle at top right, rgba(182,154,91,.28), transparent 35%);
  border:1px solid var(--line);
  box-shadow:0 16px 40px rgba(6,37,69,.08);
  position:relative;
  overflow:hidden;
}
.card::after{
  content:"";
  position:absolute;
  right:-50px;
  bottom:-50px;
  width:150px;
  height:150px;
  border-radius:50%;
  background:rgba(6,37,69,.07);
}
.card-number{
  display:inline-grid;
  place-items:center;
  width:54px;
  height:54px;
  border-radius:16px;
  color:var(--white);
  background:var(--navy);
  font-weight:900;
  margin-bottom:26px;
}
.card h3{color:var(--navy);font-size:1.45rem;line-height:1.18;margin-bottom:12px}
.card p{color:var(--muted);margin-bottom:0}

.profile-card{
  display:grid;
  grid-template-columns:.9fr 1fr;
  gap:36px;
  align-items:center;
  background:linear-gradient(135deg, var(--navy), #0b3a66);
  border-radius:36px;
  padding:28px;
  color:var(--white);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.profile-image img{
  width:100%;
  max-height:620px;
  object-fit:cover;
  border-radius:28px;
  border:10px solid rgba(255,255,255,.12);
}
.profile-copy{padding:24px;position:relative;z-index:2}
.profile-copy h2{color:var(--white)}
.profile-copy p{color:rgba(255,255,255,.8)}
.mini-data{display:flex;gap:10px;flex-wrap:wrap;margin-top:24px}
.mini-data span{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  font-weight:800;
  font-size:.9rem;
}

.social{background:var(--soft);width:100%;max-width:none;padding-left:17px;padding-right:17px}
.social .section-title,.social-grid{width:min(1180px, 100%);margin-left:auto;margin-right:auto}
.social-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}
.social-card{
  min-height:170px;
  padding:24px;
  border-radius:24px;
  background:var(--white);
  border:1px solid var(--line);
  box-shadow:0 14px 34px rgba(6,37,69,.08);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.social-card span{color:var(--gold);font-weight:900;text-transform:uppercase;letter-spacing:.12em;font-size:.76rem}
.social-card strong{color:var(--navy);font-size:1.1rem;line-height:1.25;overflow-wrap:anywhere}
.social-card:not(.no-link):hover{transform:translateY(-3px);transition:transform .2s ease}

.contact-box{
  display:grid;
  grid-template-columns:1fr auto;
  gap:28px;
  align-items:center;
  padding:34px;
  border-radius:34px;
  background:linear-gradient(135deg,#ffffff,#f7f9fd);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.contact-list{padding:0;margin:24px 0 0;list-style:none;display:grid;gap:11px;color:#27384e}
.contact-list li{padding-left:22px;position:relative}
.contact-list li::before{content:"";position:absolute;left:0;top:.65em;width:8px;height:8px;border-radius:50%;background:var(--gold)}
.contact-list a{color:var(--navy);font-weight:900;text-decoration:underline;text-underline-offset:3px}
.contact-actions{flex-direction:column;min-width:250px}
.contact-actions .btn{width:100%}

.footer{
  padding:42px 17px 110px;
  background:var(--navy);
  color:rgba(255,255,255,.82);
  text-align:center;
}
.footer img{width:190px;margin:0 auto 18px;border-radius:18px;background:#fff}
.footer p{margin:4px 0}

.floating-actions{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:20;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.float{
  width:52px;
  height:52px;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-weight:900;
  color:var(--white);
  box-shadow:0 14px 30px rgba(0,0,0,.18);
}
.float.whatsapp{background:#168f51;font-size:.82rem}
.float.tiktok{background:#111;font-size:1.25rem}
.float.facebook{background:#155db8;font-size:1.5rem;font-family:Arial, Helvetica, sans-serif}

@media (max-width: 940px){
  .nav{min-height:80px}
  .brand img{width:150px}
  .menu-button{
    width:48px;height:48px;border:0;border-radius:16px;background:var(--navy);display:grid;place-items:center;gap:4px;padding:12px;cursor:pointer;
  }
  .menu-button span{display:block;width:22px;height:2px;background:#fff;border-radius:2px}
  .nav-links{
    position:absolute;
    left:0;right:0;top:78px;
    border-radius:22px;
    display:none;
    flex-direction:column;
    align-items:stretch;
  }
  .nav-links.open{display:flex}
  .nav-links a{text-align:center}
  .hero{grid-template-columns:1fr;padding-top:42px}
  .photo-panel{justify-self:start;width:100%}
  .cards,.profile-card,.contact-box{grid-template-columns:1fr}
  .social-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .contact-actions{min-width:0;flex-direction:row}
}

@media (max-width: 560px){
  .hero,.section{width:min(100% - 24px,1180px)}
  .hero{padding-bottom:78px}
  h1{font-size:3.15rem}
  .btn{width:100%}
  .cards,.social-grid{grid-template-columns:1fr}
  .profile-card,.contact-box{padding:18px;border-radius:26px}
  .card{padding:24px;min-height:auto}
  .section{padding:62px 0}
  .floating-actions{right:12px;bottom:12px}
  .float{width:48px;height:48px}
}
