:root{
  --primary:#20b8dd;
  --secondary:#3469d6;
  --accent:#71dfff;
  --dark:#121b2d;
  --navy:#1b2b53;
  --text:#1c2536;
  --muted:#66758b;
  --white:#ffffff;
  --bg:#eef4f8;
  --line:rgba(18,27,45,.08);
  --gradient:linear-gradient(135deg,#1fb6dc 0%,#3e73da 42%,#8156ff 100%);
  --gradient-soft:linear-gradient(135deg,rgba(31,182,220,.12) 0%,rgba(62,115,218,.10) 45%,rgba(129,86,255,.08) 100%);
  --gradient-reverse:linear-gradient(135deg,#436ed0 0%,#5caed9 55%,#7ed6f3 100%);
  --wa:linear-gradient(135deg,#25d366 0%,#1eb85a 55%,#139d49 100%);
  --card:linear-gradient(180deg,#ffffff 0%,#f7fbfd 100%);
  --shadow-xs:0 10px 22px rgba(18,27,45,.05);
  --shadow-sm:0 16px 34px rgba(18,27,45,.08);
  --shadow-md:0 24px 56px rgba(18,27,45,.10);
  --shadow-lg:0 34px 82px rgba(18,27,45,.14);
  --shadow-xl:0 42px 96px rgba(48,78,150,.18);
  --transition:.3s cubic-bezier(.22,.61,.36,1);
  --maxw:1740px;
}

*{box-sizing:border-box}
html{
  scroll-behavior:auto;
  overflow-x:hidden;
}
body{
  margin:0;
  font-family:'Inter',sans-serif;
  background:
    radial-gradient(circle at top left,rgba(31,182,220,.08),transparent 22%),
    radial-gradient(circle at bottom right,rgba(62,115,218,.06),transparent 24%),
    var(--bg);
  color:var(--text);
  overflow-x:visible;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
body.menu-open,body.ar-loading{overflow:hidden}
a{text-decoration:none}
img{max-width:100%;display:block}
button,input,select,textarea{font:inherit}

.main-container{
  width:100%;
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 18px;
}

.section-space{padding:25px 0}
.section-space.pt-0{padding-top:0}
.section-space.pt-4{padding-top:20px}

.section-head{
  max-width:940px;
  margin:0 auto 24px;
  text-align:center;
}
.section-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 16px;
  border-radius:999px;
  background:var(--gradient-soft);
  border:1px solid rgba(62,115,218,.10);
  color:var(--secondary);
  font-size:12px;
  font-weight:900;
  letter-spacing:.02em;
  margin-bottom:14px;
  box-shadow:0 12px 28px rgba(62,115,218,.07);
}
.section-head h2{
  margin:0 0 10px;
  font-size:32px;
  line-height:1.14;
  font-weight:900;
  letter-spacing:-.8px;
  color:var(--dark);
}
.section-head p{
  margin:0 auto;
  max-width:780px;
  font-size:14px;
  line-height:1.82;
  color:var(--muted);
}

.interactive{
  position:relative;
  overflow:hidden;
  transition:transform var(--transition),box-shadow var(--transition),border-color var(--transition),background var(--transition),color var(--transition),opacity var(--transition),filter var(--transition);
  will-change:transform;
}
.interactive::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,transparent 18%,rgba(255,255,255,.22) 50%,transparent 82%);
  transform:translateX(-120%);
  transition:transform .7s ease;
  pointer-events:none;
}
.interactive:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 34px rgba(18,27,45,.12);
}
.interactive:hover::after{transform:translateX(120%)}
.interactive.pressed{
  transform:scale(.985);
  box-shadow:0 10px 18px rgba(18,27,45,.08);
}

.ripple{
  position:absolute;
  border-radius:50%;
  transform:scale(0);
  animation:ripple .55s linear;
  background:rgba(255,255,255,.35);
  pointer-events:none;
}
@keyframes ripple{
  to{
    transform:scale(4);
    opacity:0;
  }
}

#contact-section .contact-strip .strip-box{
  font-size:20px;
  min-width:20%;
}
#contact-section .contact-strip .strip-box i{
  font-size:22px;
}
#contact-section .contact-strip .strip-box .fa-brands.fa-whatsapp{
  font-size:26px;
}
#contact-section .contact-strip .strip-green{
  background:var(--wa);
  box-shadow:0 16px 34px rgba(20,157,73,.2);
}
/* Scroll-load reveal disabled
.scroll-load{
  opacity:0;
  transform:translateY(34px) scale(.98);
  filter:blur(10px);
  transition:opacity 1s cubic-bezier(.22,.61,.36,1),transform 1s cubic-bezier(.22,.61,.36,1),filter 1s cubic-bezier(.22,.61,.36,1);
}
.scroll-load.active{
  opacity:1;
  transform:translateY(0) scale(1);
  filter:blur(0);
}
*/

.btn-main,
.btn-outline-soft{
  min-width:max-content;
  height:52px;
  padding:0 22px;
  border-radius:17px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-size:14px;
  font-weight:900;
  white-space:nowrap;
}
.btn-main{
  border:none;
  color:#fff;
  background:var(--gradient);
  box-shadow:0 22px 44px rgba(62,115,218,.18);
}
.btn-main:hover{color:#fff}
.btn-light{
  background:#fff;
  color:var(--secondary);
  border:1px solid rgba(62,115,218,.12);
  box-shadow:0 16px 32px rgba(18,27,45,.08);
}
.btn-light:hover{color:var(--secondary)}
.btn-whatsapp{
  background:var(--wa);
  box-shadow:0 22px 44px rgba(20,157,73,.22);
}
.btn-outline-soft{
  border:1px solid rgba(62,115,218,.14);
  background:#fff;
  color:var(--secondary);
  box-shadow:0 14px 30px rgba(18,27,45,.08);
}
.btn-outline-soft:hover{color:var(--secondary)}

.about-hero-shell{
  background:#fff;
  border:1px solid var(--line);
  border-radius:34px;
  overflow:hidden;
  box-shadow:var(--shadow-md);
}
.about-hero-image{
  height:100%;
  min-height:540px;
  position:relative;
  overflow:hidden;
  background:#dfe7ef;
}
.about-hero-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.about-hero-content{
  height:100%;
  padding:38px 38px 34px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  background:linear-gradient(180deg,#ffffff 0%,#f8fbfd 100%);
}
.about-mini-bar{
  width:100%;
  min-height:42px;
  border-radius:999px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:0 16px;
  background:var(--gradient-soft);
  border:1px solid rgba(62,115,218,.08);
  color:var(--secondary);
  font-size:12px;
  font-weight:900;
  margin-bottom:16px;
}
.about-hero-content h1{
  margin:0 0 14px;
  color:var(--dark);
  font-size:34px;
  line-height:1.08;
  font-weight:900;
  letter-spacing:-1px;
  max-width:820px;
}
.about-hero-content .lead-copy{
  margin:0 0 24px;
  color:var(--muted);
  font-size:15px;
  line-height:1.88;
  max-width:860px;
}
.about-feature-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:18px;
}
.about-feature-list li{
  display:flex;
  align-items:flex-start;
  gap:14px;
  color:#536175;
  font-size:15px;
  line-height:1.8;
}
.about-feature-list i{
  width:26px;
  height:26px;
  flex:0 0 26px;
  margin-top:2px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(62,115,218,.10);
  color:#4b6fd6;
  font-size:12px;
}
.about-feature-list strong{
  color:var(--dark);
  font-weight:900;
}
.about-hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}

.about-panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:34px;
  box-shadow:var(--shadow-md);
  padding:28px;
}
.about-copy-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}
.about-copy-card{
  border:1px solid rgba(18,27,45,.07);
  border-radius:26px;
  background:linear-gradient(180deg,#ffffff 0%,#f8fbfd 100%);
  padding:24px 22px;
  box-shadow:var(--shadow-xs);
  height:100%;
}
.about-copy-card h3{
  margin:0 0 12px;
  color:var(--dark);
  font-size:22px;
  line-height:1.2;
  font-weight:900;
  display:flex;
  align-items:center;
  gap:10px;
}
.about-copy-card h3 i{
  width:38px;
  height:38px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--gradient-soft);
  color:var(--secondary);
  font-size:16px;
  flex:0 0 38px;
}
.about-copy-card p{
  margin:0 0 14px;
  color:var(--muted);
  font-size:14px;
  line-height:1.85;
}
.about-copy-card p:last-child{margin-bottom:0}
.about-points{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.about-points li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#465465;
  font-size:14px;
  line-height:1.8;
}
.about-points i{
  width:22px;
  height:22px;
  flex:0 0 22px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(31,182,220,.10);
  color:var(--secondary);
  font-size:11px;
  margin-top:2px;
}
.about-points strong{
  color:var(--dark);
  font-weight:900;
}

.cta-band{
  background:var(--gradient-reverse);
  border-radius:30px;
  box-shadow:var(--shadow-md);
  text-align:center;
  color:#fff;
  padding:42px 24px;
  position:relative;
  overflow:hidden;
}
.cta-band::before{
  content:"";
  position:absolute;
  width:230px;
  height:230px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(255,255,255,.18) 0%,rgba(255,255,255,0) 72%);
  right:-70px;
  top:-80px;
}
.cta-band h2{
  margin:0 0 10px;
  font-size:32px;
  line-height:1.1;
  font-weight:900;
}
.cta-band p{
  margin:0 auto;
  max-width:720px;
  color:rgba(255,255,255,.92);
  font-size:14px;
  line-height:1.8;
}
.cta-band-actions{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:22px;
}

.contact-wrap{
  background:#fff;
  border:1px solid rgba(18,27,45,.08);
  border-radius:34px;
  box-shadow:0 24px 56px rgba(18,27,45,.10);
  overflow:hidden;
}
.contact-layout{
  display:flex;
  flex-wrap:wrap;
  align-items:stretch;
}
.contact-col{
  display:flex;
  flex-direction:column;
}
.map-panel,.form-panel{
  height:100%;
  min-height:100%;
  display:flex;
  flex-direction:column;
}
.map-panel{
  position:relative;
  overflow:hidden;
  padding:18px 18px 16px;
  color:#fff;
  background:linear-gradient(145deg,#4c72ca 0%,#63a2dd 58%,#7ecbed 100%);
}
.map-panel::before{
  content:"";
  position:absolute;
  width:220px;
  height:220px;
  top:-70px;
  right:-70px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(255,255,255,.14) 0%,rgba(255,255,255,0) 72%);
}
.map-panel::after{
  content:"";
  position:absolute;
  width:160px;
  height:160px;
  bottom:-60px;
  left:-30px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(255,255,255,.10) 0%,rgba(255,255,255,0) 72%);
}
.map-panel h3,.form-panel h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.28;
  font-weight:900;
  letter-spacing:-.4px;
  position:relative;
  z-index:1;
}
.map-panel p,.form-panel p{
  margin:0 0 16px;
  font-size:14px;
  line-height:1.76;
  position:relative;
  z-index:1;
}
.map-panel p{color:rgba(255,255,255,.90)}
.form-panel p{color:var(--muted)}

.contact-points{
  position:relative;
  z-index:1;
  width:100%;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
  margin:6px 0 14px;
}
.contact-point{
  min-height:86px;
  padding:10px 8px;
  border-radius:16px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(10px);
}
.contact-point .icon{
  width:34px;
  height:34px;
  margin:0 auto 7px;
  border-radius:11px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.14);
  color:#fff;
  font-size:13px;
}
.contact-point h4{
  margin:0;
  color:#fff;
  font-size:12px;
  line-height:1.3;
  font-weight:900;
}
.contact-point p,.contact-point a{
  margin:0;
  color:rgba(255,255,255,.92);
  font-size:10px;
  line-height:1.5;
  font-weight:800;
  word-break:break-word;
}
.map-embed{
  position:relative;
  z-index:1;
  margin-top:auto;
  border-radius:22px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 18px 34px rgba(0,0,0,.14);
}
.map-embed iframe{
  display:block;
  width:100%;
  min-height:300px;
  height:100%;
  border:0;
}

.form-panel{
  padding:28px;
  background:#fff;
}
.inquiry-form{
  margin-top:auto;
  display:flex;
  flex-direction:column;
  flex:1;
}
.form-control,.form-select{
  height:56px;
  padding:0 18px;
  border-radius:18px;
  border:1px solid rgba(18,27,45,.08);
  background:#f5f7fb;
  color:var(--text);
  font-size:14px;
  box-shadow:none!important;
  transition:border-color var(--transition),box-shadow var(--transition),transform var(--transition),background var(--transition);
}
.form-control:hover,.form-select:hover{
  transform:translateY(-1px);
  border-color:rgba(62,115,218,.18);
}
.form-control:focus,.form-select:focus{
  background:#fff;
  border-color:rgba(31,182,220,.35);
  box-shadow:0 0 0 4px rgba(31,182,220,.08)!important;
}
textarea.form-control{
  min-height:182px;
  resize:none;
  padding:18px;
}
.submit-btn{
  width:100%;
  height:56px;
  border:none;
  border-radius:18px;
  color:#fff;
  font-size:14px;
  font-weight:900;
  background:linear-gradient(90deg,#4f6fce 0%,#76cbed 100%);
  box-shadow:none;
}

@media (max-width:1399.98px){
  .about-hero-content h1{font-size:30px}
  .about-hero-image{min-height:500px}
}

@media (max-width:1199.98px){
  .about-copy-grid{grid-template-columns:1fr}
  .about-hero-image{min-height:430px}
}

@media (max-width:991.98px){
  .section-space{padding:25px 0}
  .contact-points{grid-template-columns:repeat(2,1fr)}
  .about-hero-image{
    min-height:360px;
    border-bottom-left-radius:0;
    border-bottom-right-radius:0;
  }
  .about-hero-content{padding:26px 24px}
}

@media (max-width:767.98px){
  .main-container{padding:0 12px}
  .section-space{padding:22px 0}
  .section-head h2{font-size:26px}
  .section-head p{font-size:13px}
  .about-hero-content h1{
    font-size:24px;
    line-height:1.14;
  }
  .about-hero-content .lead-copy{
    font-size:14px;
    line-height:1.8;
  }
  .about-feature-list li{
    font-size:14px;
    line-height:1.75;
  }
  .about-panel,.map-panel,.form-panel{padding:18px}
  .about-hero-shell{border-radius:28px}
  .about-hero-image{min-height:250px}
  .about-mini-bar{
    min-height:38px;
    font-size:11px;
    padding:0 12px;
  }
  .about-hero-actions,
  .cta-band-actions{
    display:grid;
    grid-template-columns:1fr;
  }
  .contact-points{grid-template-columns:1fr}
  .map-embed iframe{min-height:260px}
}

@media (max-width:575.98px){
  .about-hero-content h1{font-size:22px}
  .about-copy-card h3{font-size:20px}
  .btn-main,
  .btn-outline-soft{
    width:100%;
  }
}

@media (prefers-reduced-motion:reduce){
  *,
  *::before,
  *::after{
    animation:none!important;
    transition:none!important;
    scroll-behavior:auto!important;
  }
  /* .scroll-load{
    opacity:1!important;
    transform:none!important;
    filter:none!important;
  } */
}

