
* { margin:0; padding:0; box-sizing:border-box }

:root{
  --primary-color:#e55a2a;
  --accent-color:#ff8149;
  --text-color:#0b1220;
  --muted:#475467;
  --light:#ffffff;
  --bg:#ffffff;

  --glass-bg: rgba(255,255,255,.70);
  --glass-brd: rgba(255,255,255,.35);

  --radius-s:12px;
  --radius-m:18px;
  --radius-l:22px;

  --shadow-s:0 6px 16px rgba(0,0,0,.08);
  --shadow-m:0 12px 32px rgba(0,0,0,.12);
  --shadow-l:0 22px 60px rgba(229,90,42,.28);

  --page-gutter: clamp(16px, 4vw, 48px);
  --section-vspace: clamp(32px, 6vw, 72px);

  --t-fast:.25s ease;
  --t-med:.35s cubic-bezier(.2,.8,.2,1);

  font-family:'Poppins',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

html{ scroll-behavior:smooth }
body{
  background:var(--bg);
  color:var(--text-color);
  line-height:1.6;
  font-size:16px;
  overflow-x:hidden;
}
a{ color:inherit; text-decoration:none }
.container{ width:90%; max-width:1200px; margin:0 auto }

.header-content {
  position: relative;
  background: url("assets/images/contact/contact_background.webp") no-repeat center center;
  background-size: cover;
  color: #fff;
  overflow: hidden;
}

.header-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: -1;
}

.header-content,
.header-content h1,.header-content h2,.header-content h3,
.header-content p,.header-content li,.header-content a,
.header-content .count{color:#fff}

.top-bar{
  background-color: transparent;
  font-size:.875rem;
  padding:.5rem 0;
  position: relative;
  z-index: 1;
}
.top-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar .call-info a{color:var(--accent-color)}
.social-icons a img {
  width: 20px;
  height: 20px;
  display: inline-block;
  filter: brightness(0) saturate(100%) invert(56%) sepia(81%) saturate(459%) hue-rotate(356deg) brightness(95%) contrast(95%);
  transition: filter var(--t-fast), transform var(--t-fast);
}

.social-icons a:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(315deg) brightness(103%) contrast(103%);
  transform: scale(1.1);
}

.quote-btn{
  background:var(--primary-color);
  color:#fff;
  padding:.45rem 1rem;
  border-radius:8px;
  font-weight:600;
  transition:filter var(--t-fast),transform var(--t-fast);
  white-space: nowrap;
}
.quote-btn:hover{filter:brightness(1.05);transform:translateY(-1px)}

.nav-bar{
  margin:12px 4rem 0;
  padding:.75rem 1rem;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.22);
  border-radius:16px;
  backdrop-filter:blur(18px) saturate(160%);
  -webkit-backdrop-filter:blur(18px) saturate(160%);
  box-shadow:0 8px 24px rgba(0,0,0,.12);
  position: relative;
  z-index: 1;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10000;
  transition: transform 0.3s ease;
  position: relative;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-container{
  display:flex;
  align-items:center;
  justify-content:center;
}

nav .menu{
  list-style:none;
  display:flex;
  gap:1.4rem;
  flex-wrap:wrap;
  justify-content:center;
}

.menu li a{
  color:#fff;
  font-weight:500;
  letter-spacing:.2px;
  position:relative;
  transition:color var(--t-fast);
}

.menu li a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-6px;
  height:2px;
  background:linear-gradient(90deg,var(--primary-color),var(--accent-color));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform var(--t-med);
}

.menu li a:hover{color:#fff}
.menu li a:hover::after{transform:scaleX(1)}

@media (max-width: 768px) {
  .top-container {
    justify-content: center;
    gap: 1rem;
  }
  
  .header-content {
    overflow: visible;
  }
  
  .hero.hero--split {
    overflow: visible;
  }
  
  .call-info {
    order: 1;
    flex: 1 1 100%;
    text-align: center;
  }
  
  .social-icons {
    order: 2;
  }
  
  .quote-btn {
    order: 3;
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }

  .nav-bar {
    position: relative;
    margin: 10px 1rem 0;
    padding: 0.6rem 0.8rem;
    z-index: 2147483648;
  }

  .menu-toggle { 
    display: flex; 
    margin-left: auto; 
    align-self: flex-end; 
  }
  
  .nav-container { 
    flex-direction: row; 
    align-items: center; 
    justify-content: flex-end; 
    width: 100%; 
  }
  
  nav { 
    width: auto; 
    position: static; 
  }

  nav .menu {
    box-sizing: border-box;
    position: fixed;
    top: 72px;
    left: 8px;
    right: 8px;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 6px 0;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.38);
    background:
      linear-gradient(135deg,
        rgba(58,183,149,.28) 0%,
        rgba(242,201,76,.30) 55%,
        rgba(168,224,235,.28) 100%),
      rgba(17,25,40,.60);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    backdrop-filter: blur(16px) saturate(160%);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.35),
      0 6px 20px rgba(0,0,0,.18);
    max-height: 0;
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height .4s ease, opacity .28s ease, transform .28s ease;
    overflow: hidden;
    overflow-x: hidden;
    pointer-events: none;
    visibility: hidden;
    max-width: calc(100vw - 16px);
    z-index: 2147483647 !important;
  }

  nav .menu.active {
    max-height: 70vh;
    opacity: 1;
    transform: translateY(0);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    pointer-events: auto;
    visibility: visible;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    background:
      linear-gradient(135deg,
        rgba(58,183,149,.42) 0%,
        rgba(242,201,76,.46) 55%,
        rgba(168,224,235,.42) 100%),
      rgba(17,25,40,.82);
  }
 
  nav .menu::before {
    content: "";
    position: absolute; 
    inset: 0;
    border-radius: inherit; 
    pointer-events: none;
    background:
      radial-gradient(120% 60% at 0% 0%, rgba(255,255,255,.22) 0%, rgba(255,255,255,0) 60%),
      linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0));
    mix-blend-mode: screen;
  }

  nav .menu.is-dragging { 
    cursor: grabbing; 
    user-select: none; 
  }

  nav .menu li { 
    width: 100%; 
    border-bottom: 1px solid rgba(255,255,255,.18); 
  }
  
  nav .menu li:last-child { 
    border-bottom: none; 
  }
  
  nav .menu li a {
    display: block;
    padding: 14px 18px;
    width: 100%;
    color: #fff;
    text-shadow: 0 1px 1px rgba(0,0,0,.25);
    cursor: pointer;
    transition: background .2s ease, padding-left .25s ease;
  }
  
  nav .menu li a:hover { 
    background: rgba(229,90,42,.22); 
    padding-left: 28px; 
  }
  
  nav .menu li a::after { 
    display: none; 
  }

  .nav-container { display: flex; }
  .menu-toggle { margin-left: auto !important; }
  nav .menu li a { text-align: center !important; }

  .contact-wrap {
    z-index: 1;
  }

  .contact-card {
    position: relative;
    z-index: 1;
  }

  html.is-nav-open #whatsappBtn {
    z-index: 2147483640 !important;
    pointer-events: none;
  }
}

@media (max-width: 480px) {
  .social-icons {
    display: flex;
    gap: 0.5rem;
  }
  
  .social-icons a img {
    width: 18px;
    height: 18px;
  }
  
  .quote-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
}

html.is-nav-open, body.is-nav-open {
  overflow: hidden !important;
  max-width: 100%;
}

.hero.hero--split{
  position: relative;
  color: #fff;
  padding: clamp(3rem, 6vw, 6rem) 0;
  background: transparent; 
  overflow: hidden;
}

.hero-split{
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: clamp(2rem, 4vw, 3rem);
  position: relative;
  text-align: center;
}

.hero-copy{ 
  position:relative; 
  z-index:2; 
  margin-right:0;
}

.tagline{
  font-size: 1.15rem; 
  font-weight: 700; 
  color: var(--accent-color);
  letter-spacing: .3px; 
  text-transform: uppercase;
}

.hero-title{
  color:#fff;
  font-size:clamp(2rem,4.2vw,3.2rem);
  font-weight:900;
  line-height:1.14;
  letter-spacing:.2px;
  margin-top:.5rem;
  max-width:none;
  text-wrap:balance;
  text-shadow:0 6px 22px rgba(0,0,0,.38), 0 2px 8px rgba(0,0,0,.28);
  position:relative;
}

.hero-title::after{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:-12px;
  width:min(240px,48%);
  height:4px;
  border-radius:4px;
  background:linear-gradient(90deg,var(--primary-color),var(--accent-color));
  box-shadow:0 8px 20px rgba(229,90,42,.30);
}

.hero-desc{
  font-size:1.02rem;
  line-height:1.75;
  margin:1rem auto 1.8rem;
  max-width:90ch;
  color:rgba(255,255,255,.92);
  text-align:center;
  letter-spacing:.14px;
}

.btn{
  display:inline-flex; 
  align-items:center; 
  gap:.4rem;
  padding:.85rem 1.8rem; 
  border-radius:12px; 
  font-weight:700; 
  font-size:.95rem;
  text-transform:uppercase; 
  letter-spacing:.5px; 
  cursor:pointer; 
  transition:all .3s ease;
}
.btn.btn--sm{ 
  padding:.5rem .8rem; 
  font-size:.85rem; 
  border-radius:10px;
}
.ai-btn{
  background:linear-gradient(135deg,var(--primary-color),var(--accent-color));
  color:#fff; 
  box-shadow:0 6px 18px rgba(0,0,0,.3);
}
.ai-btn:hover{ 
  transform:translateY(-3px) scale(1.03); 
  box-shadow:0 10px 25px rgba(0,0,0,.4);
}
.brochure-btn{
  background:rgba(255,255,255,.15);
  backdrop-filter:blur(8px);
  border:2px solid rgba(255,255,255,.4);
  color:#fff;
}
.brochure-btn:hover{ 
  background:rgba(255,255,255,.25); 
  transform:translateY(-3px) scale(1.03);
}

.contact-wrap {
  position: relative;
  z-index: 1;
  margin: clamp(-88px, -8vw, -64px) auto 48px;
  width: min(1100px, 94vw);
}

.contact-card {
  background: #fff;
  border: 1px solid rgba(2,17,37,.06);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(12px, 2vw, 20px);
  padding: 0;
  width: min(900px, 88vw);
  margin: 0 auto;
  box-shadow:
    0 2px 6px rgba(16, 24, 40, 0.06),
    0 16px 40px rgba(16, 24, 40, 0.08),
    0 0 0 2px rgba(59,130,246,.10);
  overflow: hidden;
  position: relative;
  z-index: auto;
}

@media (max-width:880px){
  .contact-card { grid-template-columns: 1fr; }
}

.pane { 
  padding: clamp(22px, 3.2vw, 32px); 
}

.pane--left {
  background: #e5e7eb;
}

.pane h3 {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.3;
  color: #0b2138;
  margin: 6px 0 14px;
  letter-spacing: .2px;
}

.pane p,
.pane li,
.pane label,
.pane input,
.pane textarea {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.muted { color: #334155; }

.info-list { 
  list-style: none; 
  padding: 0; 
  margin: 16px 0 0; 
  display: grid; 
  gap: 14px; 
}

.info-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  padding: 0;
  background: transparent;
  border: none;
}

.info-item svg { margin-top: 2px; }

.info-item h4 {
  font: 600 15px/1.4 Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
  color: #0b2138; 
  margin: 0 0 4px;
}

.info-item p a, 
.info-item p { 
  margin: 0; 
  color: #1e293b; 
  font: 14px/1.6 Inter, system-ui, -apple-system; 
  text-decoration: none; 
}

.info-item p a:hover { text-decoration: underline; }

.social-row {
  display: flex; 
  gap: 12px; 
  margin-top: 16px; 
  padding-top: 12px;
  border-top: 1px solid rgba(2,17,37,.18);
}

.social {
  width: 38px; 
  height: 38px; 
  display:grid; 
  place-items:center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(2,17,37,.14);
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease;
}

.social:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(16,24,40,.18);
}

.social svg { 
  width: 18px; 
  height: 18px; 
  display:block; 
}

.social img{
  width:18px;
  height:18px;
  display:block;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
  margin-top: 10px;
}

.form-grid .span-2 { grid-column: 1 / -1; }

label {
  display: block;
  font: 600 12px/1 Inter, system-ui, -apple-system;
  color: #3b4b5f;
  margin: 0 0 6px 2px;
  letter-spacing: .02em;
}

input, textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(2,17,37,.12);
  padding: 12px 14px;
  background: #f9fbff;
  outline: none;
  transition: box-shadow .15s ease, border-color .15s ease, background .15s ease;
}

input:focus, textarea:focus {
  border-color: rgba(59,130,246,.5);
  box-shadow: 0 0 0 3px rgba(59,130,246,.18);
  background: #fff;
}

textarea { 
  min-height: 120px; 
  resize: vertical; 
}

.btn-send {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 14px 20px;
  font: 600 15px/1 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  cursor: pointer;
  background: #e55a2a;
  color: #fff;
  box-shadow: 0 8px 22px rgba(229, 90, 42, 0.25);
  transition: filter .2s ease;
}


.btn-send:hover { filter: brightness(1.03); }

.map-wrap {
  width: min(1200px, 96vw);
  margin: 22px auto 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.18);
  border: 1px solid rgba(2,17,37,.08);
}

.map-wrap iframe { 
  display: block; 
  width: 100%; 
  height: clamp(340px, 48vh, 520px); 
  border: 0; 
}

footer {
  background: linear-gradient(135deg, rgba(229,90,42,.97), rgba(255,129,73,.92));
  color: #0f1724;
  padding: 3.25rem 0;
  font-size: .95rem;
  position: relative;
  overflow: hidden;
  border-top: 3px solid rgba(255,255,255,.38);
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28);
}

footer::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(255,255,255,.42), rgba(255,255,255,0) 60%);
  filter: blur(8px);
  pointer-events: none;
  mix-blend-mode: screen;
}

.footer-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 0.5rem;
  animation: footerFadeUp .5s ease both;
  position: relative;
  z-index: 1;
}

.footer-title {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 1.75rem;
  color: #071d31;
  text-align: left;
  letter-spacing: .6px;
  line-height: 1.2;
}

.footer-content-wrapper {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  justify-content: space-between;
  text-align: left;
}

.footer-col { flex: 1 1 0; min-width: 0; }
.footer-company { flex: 1.5 1 0; }

.footer-col p {
  margin: 0;
  line-height: 1.8;
  opacity: .95;
  color: #173046;
  text-align: justify;
  text-justify: inter-word;
  letter-spacing: 0.2px;
}

.footer-col h4 {
  margin-bottom: .75rem;
  color: #071d31;
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.footer-links ul,
.footer-services ul {
  list-style: none;
  margin-top: .35rem;
  padding: 0;
}

.footer-links li,
.footer-services li {
  margin-bottom: .45rem;
}

.footer-links a,
.footer-services a {
  color: #173046;
  text-decoration: none;
  position: relative;
  transition: color .2s ease;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 0% 2px;
  background-position: 0 100%;
}

.footer-links a:hover,
.footer-services a:hover,
.footer-links a:focus-visible,
.footer-services a:focus-visible {
  color: #071d31;
  background-size: 100% 2px;
  outline: none;
}

.footer-note {
  margin-top: 2.25rem;
  padding-top: 1rem;
  text-align: center;
  font-size: .86rem;
  color: #05233a;
  border-top: 1px solid rgba(255,255,255,.35);
  letter-spacing: .2px;
  opacity: .9;
}

.footer-col a:focus-visible {
  outline: 3px solid rgba(7,29,49,.35);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (max-width:900px){
  .footer-content-wrapper{ flex-wrap:wrap }
  .footer-company{ flex-basis:100% }
}

@media (max-width:600px){
  .footer-title{ text-align:left }
  .footer-content-wrapper{ gap:1.5rem }
  .footer-col{ flex:1 1 100% }
  .footer-note{ font-size:.84rem }
}

#whatsappBtn{
  position:fixed; 
  bottom:70px; 
  right:20px; 
  background:var(--accent-color);
  border:none; 
  padding:10px; 
  border-radius:8px; 
  cursor:pointer; 
  box-shadow:0 2px 6px rgba(0,0,0,.15);
  transition: transform .3s ease, background .3s ease; 
  z-index:999;
}

#whatsappBtn img{ 
  width:28px; 
  height:28px; 
  display:block; 
  filter:brightness(0) invert(1);
}

#whatsappBtn:hover{ 
  background:#25D366; 
  transform:translateY(-3px);
}

#scrollToTopBtn{
  position:fixed; 
  bottom:20px; 
  right:20px; 
  background:var(--accent-color); 
  color:#fff; 
  border:none;
  padding:10px; 
  width:48px; 
  height:48px; 
  border-radius:8px; 
  font-size:1.2rem; 
  display:flex; 
  align-items:center; 
  justify-content:center;
  cursor:pointer; 
  box-shadow:0 2px 6px rgba(0,0,0,.15); 
  transition: opacity .3s ease, transform .3s ease, background .3s ease; 
  opacity:0; 
  visibility:hidden; 
  z-index:999;
}

#scrollToTopBtn.show{ 
  opacity:1; 
  visibility:visible;
}

#scrollToTopBtn:hover{ 
  transform:translateY(-3px); 
  background:var(--primary-color);
}

@media (max-width:768px){
  .cta-wrapper{ flex-direction:column; align-items:flex-start }
  .nav-container{ flex-direction:column; }
  .menu{ flex-wrap:wrap; gap:1rem }
  .footer-content-wrapper{ flex-direction:column; align-items:flex-start }
}

.section-block{
  margin: 12px 4rem 0;
  padding: clamp(32px,6vw,72px) 0;
}

.section-title{ 
  font-size: 2rem; 
  font-weight: 800; 
  margin-bottom: 1.5rem; 
}