:root{
  --navy:#0b1f3a;
  --navy-2:#12365f;
  --blue:#1f6fae;
  --sky:#eaf6ff;
  --gold:#f6b23c;
  --gold-light:#ffd88a;
  --white:#ffffff;
  --soft:#f4f7fb;
  --soft-2:#eef4fa;
  --ink:#172033;
  --muted:#667085;
  --border:#dbe4ee;
  --green:#12b76a;
  --shadow:0 26px 70px rgba(11,31,58,.15);
  --shadow-soft:0 14px 34px rgba(11,31,58,.09);
  --radius:28px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color:var(--ink);
  background:linear-gradient(180deg,#f7f9fc 0%,#eef4fa 100%);
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

button{
  font:inherit;
}

.skip-link{
  position:absolute;
  left:12px;
  top:-60px;
  background:var(--gold);
  color:#201707;
  padding:10px 14px;
  border-radius:999px;
  z-index:999;
  font-weight:900;
}

.skip-link:focus{
  top:12px;
}

.container{
  width:min(1180px, calc(100% - 38px));
  margin-inline:auto;
}

.topbar{
  background:linear-gradient(90deg,var(--navy),#071526);
  color:rgba(255,255,255,.88);
  font-size:14px;
}

.topbar-inner{
  min-height:40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.topbar a:hover{
  text-decoration:underline;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(219,228,238,.9);
  transition:.25s ease;
}

.site-header.scrolled{
  box-shadow:0 14px 35px rgba(11,31,58,.1);
}

.nav{
  height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
  flex:0 0 auto;
}

.brand-mark{
  width:64px;
  height:64px;
  background:#ffffff;
  display:grid;
  place-items:center;
  box-shadow:0 12px 28px rgba(11,31,58,.14);
  flex:0 0 auto;
  padding:4px;
}

.brand-mark img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}

.brand-text{
  min-width:0;
}

.brand strong{
  display:block;
  font-size:22px;
  color:var(--navy);
  letter-spacing:-.45px;
  line-height:1.1;
}

.brand span{
  display:block;
  color:var(--muted);
  font-size:14px;
  margin-top:5px;
  white-space:nowrap;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:24px;
  font-weight:850;
  color:#26364f;
}

.nav-links a{
  position:relative;
  padding:10px 0;
}

.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:4px;
  height:3px;
  border-radius:999px;
  background:var(--gold);
  transform:scaleX(0);
  transform-origin:right;
  transition:.22s ease;
}

.nav-links a:hover::after{
  transform:scaleX(1);
  transform-origin:left;
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

@media(max-width:1120px){
  .brand span{
    display:none;
  }

  .nav-links{
    gap:18px;
  }
}

.nav-social{
  font-weight:900;
  color:var(--navy);
  padding:10px 12px;
  border-radius:999px;
}

.nav-social:hover{
  background:var(--soft);
}

.btn{
  min-height:48px;
  padding:0 18px;
  border-radius:999px;
  border:1px solid transparent;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  font-weight:950;
  cursor:pointer;
  transition:.2s ease;
  white-space:nowrap;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-small{
  min-height:44px;
  padding:0 17px;
}

.btn-primary{
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  color:#231909;
  box-shadow:0 14px 30px rgba(246,178,60,.27);
}

.btn-dark{
  background:var(--navy);
  color:white;
  box-shadow:0 14px 30px rgba(11,31,58,.2);
}

.btn-light{
  background:white;
  color:var(--navy);
  border-color:var(--border);
  box-shadow:var(--shadow-soft);
}

.menu-toggle{
  display:none;
  width:48px;
  height:48px;
  border-radius:16px;
  border:1px solid var(--border);
  background:white;
  cursor:pointer;
  padding:12px;
}

.menu-toggle span{
  display:block;
  height:2px;
  background:var(--navy);
  margin:5px 0;
  border-radius:999px;
}

.hero{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  color:white;
  background:linear-gradient(135deg,#071526 0%, var(--navy) 50%, var(--navy-2) 100%);
}

.hero-pattern{
  position:absolute;
  inset:0;
  z-index:-2;
  background:
          radial-gradient(circle at 78% 20%,rgba(246,178,60,.26),transparent 22%),
          radial-gradient(circle at 18% 78%,rgba(31,111,174,.24),transparent 24%),
          linear-gradient(90deg,rgba(7,21,38,.94),rgba(7,21,38,.78) 45%,rgba(7,21,38,.42)),
          url("data:image/svg+xml,%3Csvg width='1600' height='900' viewBox='0 0 1600 900' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='1600' height='900' fill='%230b1f3a'/%3E%3Cg opacity='.11' fill='none' stroke='%23ffffff' stroke-width='8' stroke-linecap='round'%3E%3Cpath d='M20 730 C220 620 300 720 470 640 S730 480 910 550 1180 710 1540 470'/%3E%3Cpath d='M100 320 H520 C620 320 660 270 760 270 H1220'/%3E%3Cpath d='M1100 170 h260 v260 h-260z'/%3E%3C/g%3E%3Cg transform='translate(960 180)' opacity='.78'%3E%3Crect x='0' y='100' width='360' height='84' rx='42' fill='%23e8eef7'/%3E%3Crect x='265' y='62' width='242' height='84' rx='42' fill='%23cfd9e7'/%3E%3Crect x='135' y='118' width='340' height='48' rx='24' fill='%23f6b23c'/%3E%3Ccircle cx='100' cy='145' r='40' fill='%23ffffff'/%3E%3Ccircle cx='100' cy='145' r='22' fill='%230b1f3a'/%3E%3Cpath d='M390 35 l50 50 -108 108 -50 -50z' fill='%23ffffff'/%3E%3Cpath d='M428 72 l32 32' stroke='%230b1f3a' stroke-width='17' stroke-linecap='round'/%3E%3C/g%3E%3C/svg%3E");
  background-size:cover;
  background-position:center;
}

.hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:88px;
  background:
          linear-gradient(180deg,rgba(244,247,251,0),rgba(244,247,251,1) 75%),
          radial-gradient(120% 70px at 50% 100%,#f4f7fb 0%,#f4f7fb 72%,transparent 73%);
  z-index:-1;
}

.hero-inner{
  min-height:660px;
  display:grid;
  grid-template-columns:minmax(0,1fr) 350px;
  gap:44px;
  align-items:center;
  padding:74px 0 118px;
}

.hero-content{
  max-width:720px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:11px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.13);
  border:1px solid rgba(255,255,255,.2);
  backdrop-filter:blur(12px);
  font-weight:950;
  margin-bottom:18px;
  font-size:16px;
}

.pill span{
  width:11px;
  height:11px;
  border-radius:999px;
  background:var(--green);
  box-shadow:0 0 0 6px rgba(18,183,106,.15);
}

h1{
  font-size:clamp(34px,5vw,56px);
  line-height:1.08;
  letter-spacing:-1.8px;
  margin:0 0 20px;
}

.hero p{
  font-size:clamp(17px,1.55vw,21px);
  line-height:1.7;
  color:rgba(255,255,255,.86);
  max-width:650px;
  margin:0 0 28px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:30px;
}

.hero-facts{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  max-width:720px;
}

.hero-facts div,
.hero-panel{
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.16);
  border-radius:22px;
  padding:18px;
  backdrop-filter:blur(14px);
}

.hero-facts strong{
  display:block;
  font-size:23px;
  color:white;
  margin-bottom:4px;
}

.hero-facts span{
  color:rgba(255,255,255,.75);
  font-weight:750;
  font-size:14px;
}

.hero-panel{
  padding:28px;
  box-shadow:0 26px 70px rgba(0,0,0,.22);
}

.panel-icon{
  width:52px;
  height:52px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:var(--gold);
  color:#201707;
  font-size:25px;
  font-weight:950;
  margin-bottom:18px;
}

.hero-panel h2{
  color:white;
  font-size:29px;
  margin:0 0 10px;
}

.hero-panel p{
  font-size:16px;
  color:rgba(255,255,255,.76);
  margin:0 0 20px;
}

.section{
  padding:86px 0;
  position:relative;
}

.services-section{
  padding-top:70px;
  background:linear-gradient(180deg,#f4f7fb 0%, #eef4fa 100%);
}

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:24px;
  margin-bottom:34px;
}

.eyebrow{
  display:block;
  font-weight:950;
  color:var(--blue);
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:13px;
  margin-bottom:10px;
}

h2{
  margin:0;
  font-size:clamp(30px,4.2vw,48px);
  line-height:1.1;
  letter-spacing:-1.2px;
  color:var(--navy);
}

.section-head p{
  max-width:520px;
  margin:0;
  color:var(--muted);
  line-height:1.7;
  font-size:17px;
}

.services-grid,
.reference-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.service-card,
.reference-card{
  background:white;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:26px;
  box-shadow:var(--shadow-soft);
  position:relative;
  overflow:hidden;
  transition:.22s ease;
}

.service-card:hover,
.reference-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
}

.service-card::before,
.reference-card::before{
  content:"";
  position:absolute;
  inset:0 0 auto;
  height:5px;
  background:linear-gradient(90deg,var(--gold),var(--blue));
}

.service-icon{
  width:64px;
  height:64px;
  border-radius:22px;
  display:grid;
  place-items:center;
  background:linear-gradient(145deg,#eaf6ff,#fff6e4);
  margin-bottom:20px;
  color:var(--navy);
}

.service-icon svg{
  width:35px;
  height:35px;
}

.service-card h3,
.reference-card h3{
  margin:0 0 12px;
  font-size:25px;
  color:var(--navy);
  letter-spacing:-.5px;
}

.service-card p,
.reference-card p{
  margin:0 0 18px;
  color:var(--muted);
  line-height:1.65;
}

.service-card ul{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.service-card li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:#2e3a4f;
  font-weight:750;
}

.service-card li::before{
  content:"✓";
  color:var(--green);
  font-weight:950;
}

.references-section{
  background:linear-gradient(180deg,#eef4fa,#ffffff);
}

.reference-grid{
  grid-template-columns:1fr 1fr;
}

.before-after{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-bottom:18px;
}

.before-after figure{
  margin:0;
  border-radius:18px;
  overflow:hidden;
  position:relative;
  background:#edf2f7;
}

.before-after img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.before-after figcaption{
  position:absolute;
  top:10px;
  left:10px;
  background:rgba(11,31,58,.88);
  color:white;
  padding:7px 11px;
  border-radius:999px;
  font-weight:900;
  font-size:13px;
}

.reference-text p{
  margin-bottom:0;
}

.about-section{
  background:linear-gradient(180deg,#ffffff,#eef4fa);
  overflow:hidden;
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:42px;
  align-items:center;
}

.about-card{
  background:white;
  border:1px solid var(--border);
  border-radius:34px;
  padding:36px;
  box-shadow:var(--shadow);
}

.about-card p{
  color:#3b4659;
  line-height:1.85;
  font-size:18px;
  margin:0 0 16px;
}

.quality-card{
  min-height:470px;
  border-radius:36px;
  background:
          radial-gradient(circle at 72% 24%,rgba(246,178,60,.52),transparent 18%),
          linear-gradient(145deg,var(--navy),var(--blue));
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
  color:white;
  padding:32px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}

.quality-illustration{
  position:absolute;
  inset:60px 20px auto auto;
  width:min(470px,90%);
  opacity:.95;
  filter:drop-shadow(0 22px 34px rgba(0,0,0,.24));
}

.quality-card::before{
  content:"";
  position:absolute;
  left:-70px;
  top:86px;
  width:560px;
  height:160px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  transform:rotate(-22deg);
}

.quality-text{
  position:relative;
  z-index:2;
  background:rgba(255,255,255,.13);
  border:1px solid rgba(255,255,255,.18);
  border-radius:24px;
  padding:22px;
  backdrop-filter:blur(12px);
  max-width:430px;
}

.quality-text strong{
  font-size:28px;
  display:block;
  margin-bottom:8px;
}

.quality-text span{
  color:rgba(255,255,255,.78);
  line-height:1.65;
}

.steps-section{
  background:#fff;
}

.steps-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.step-card{
  background:#f8fbff;
  border:1px solid var(--border);
  border-radius:26px;
  padding:24px;
  box-shadow:var(--shadow-soft);
}

.step-card span{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:15px;
  background:var(--navy);
  color:white;
  font-weight:950;
  margin-bottom:16px;
}

.step-card h3{
  margin:0 0 8px;
  color:var(--navy);
  font-size:20px;
}

.step-card p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

.contact-section{
  background:var(--navy);
  color:white;
  overflow:hidden;
}

.contact-section::before{
  content:"";
  position:absolute;
  top:-240px;
  right:-120px;
  width:520px;
  height:520px;
  border-radius:50%;
  background:rgba(246,178,60,.22);
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1.08fr;
  gap:28px;
  align-items:stretch;
  position:relative;
  z-index:1;
}

.contact-section h2{
  color:white;
}

.contact-section .eyebrow{
  color:var(--gold);
}

.contact-section p{
  color:rgba(255,255,255,.78);
  line-height:1.75;
}

.contact-list{
  display:grid;
  gap:12px;
  margin-top:24px;
}

.contact-item{
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.14);
  border-radius:22px;
  padding:18px;
  display:flex;
  gap:15px;
  align-items:center;
  backdrop-filter:blur(12px);
}

.contact-item > span{
  width:48px;
  height:48px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:rgba(246,178,60,.18);
  color:var(--gold);
  font-size:22px;
  flex:0 0 auto;
}

.contact-item strong{
  display:block;
  color:white;
  margin-bottom:4px;
}

.contact-item small{
  color:rgba(255,255,255,.72);
  font-size:15px;
}

.request-card{
  background:white;
  color:var(--ink);
  border-radius:34px;
  padding:30px;
  box-shadow:0 28px 70px rgba(0,0,0,.24);
}

.request-card h3{
  margin:0 0 10px;
  color:var(--navy);
  font-size:30px;
}

.request-card p{
  color:var(--muted);
  margin:0 0 22px;
}

.message-preview{
  background:#f7fbff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:20px;
  color:#344054;
  line-height:1.75;
  margin-bottom:16px;
}

.request-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-bottom:14px;
}

.instagram-card{
  display:flex;
  align-items:center;
  gap:12px;
  border:1px solid var(--border);
  background:linear-gradient(135deg,#fff,#fff4e0);
  border-radius:22px;
  padding:15px;
}

.instagram-card span{
  width:46px;
  height:46px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);
  color:white;
  font-size:26px;
}

.instagram-card strong{
  display:block;
  color:var(--navy);
}

.instagram-card small{
  color:var(--muted);
}

.footer{
  background:#071526;
  color:rgba(255,255,255,.72);
  padding:34px 0;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

.footer strong{
  display:block;
  color:white;
  margin-bottom:5px;
}

.footer-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.whatsapp-float{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:80;
  width:64px;
  height:64px;
  border-radius:50%;
  background:#12b76a;
  display:grid;
  place-items:center;
  color:white;
  box-shadow:0 18px 40px rgba(18,183,106,.36);
  transition:.2s ease;
}

.whatsapp-float:hover{
  transform:translateY(-4px) scale(1.03);
}

.whatsapp-float svg{
  width:34px;
  height:34px;
}

.install-btn{
  position:fixed;
  left:18px;
  bottom:18px;
  z-index:85;
  min-height:46px;
  padding:0 16px;
  border:0;
  border-radius:999px;
  background:var(--navy);
  color:white;
  font-weight:950;
  box-shadow:0 18px 40px rgba(11,31,58,.24);
  cursor:pointer;
}

.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:.7s ease;
}

.reveal.show{
  opacity:1;
  transform:none;
}

@media(max-width:1040px){
  .nav-actions{
    display:none;
  }

  .menu-toggle{
    display:block;
  }

  .nav{
    height:76px;
  }

  .nav-links{
    display:none;
  }

  .site-header.mobile-open .nav-links{
    display:flex;
    position:absolute;
    top:76px;
    left:16px;
    right:16px;
    flex-direction:column;
    align-items:flex-start;
    background:white;
    border:1px solid var(--border);
    border-radius:24px;
    padding:18px;
    box-shadow:var(--shadow);
  }

  .hero-inner{
    min-height:auto;
    grid-template-columns:1fr;
    padding:66px 0 96px;
  }

  .hero-panel{
    max-width:520px;
  }

  .services-grid,
  .about-grid,
  .steps-grid,
  .contact-grid,
  .reference-grid{
    grid-template-columns:1fr;
  }

  .section-head{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media(max-width:720px){
  .container{
    width:min(100% - 26px,1180px);
  }

  .topbar-inner{
    justify-content:center;
    text-align:center;
  }

  .topbar-inner a,
  .topbar-inner span{
    width:100%;
  }

  .brand strong{
    font-size:19px;
  }

  .brand span{
    font-size:13px;
  }

  .brand-mark{
    width:52px;
    height:52px;
    padding:3px;
  }

  h1{
    font-size:clamp(32px,10vw,44px);
  }

  h2{
    font-size:clamp(28px,8vw,38px);
  }

  .pill{
    font-size:15px;
    border-radius:20px;
    align-items:flex-start;
  }

  .hero-actions,
  .request-actions{
    display:grid;
    grid-template-columns:1fr;
  }

  .btn{
    width:100%;
  }

  .hero-facts,
  .before-after{
    grid-template-columns:1fr;
  }

  .section{
    padding:68px 0;
  }

  .services-section{
    padding-top:52px;
  }

  .service-card,
  .about-card,
  .request-card,
  .reference-card{
    padding:22px;
  }

  .before-after img{
    height:210px;
  }

  .quality-card{
    min-height:360px;
  }

  .quality-illustration{
    width:92%;
    right:5px;
  }

  .whatsapp-float{
    width:58px;
    height:58px;
    right:16px;
    bottom:16px;
  }

  .install-btn{
    left:12px;
    bottom:82px;
  }
}

@media (prefers-reduced-motion: reduce){
  *{
    scroll-behavior:auto!important;
    transition:none!important;
    animation:none!important;
  }
}