:root{
  --blue:#0B57FF;
  --blue-2:#1f5eff;
  --orange:#FD891A;
  --orange-soft:#fff3e6;

  --text:#23293b;
  --muted:#667085;
  --line:#e6edf7;
  --panel:#f8fbff;
  --panel-2:#eef4ff;
  --white:#ffffff;

  --shadow-sm:0 10px 30px rgba(11,87,255,.08);
  --shadow-md:0 18px 50px rgba(11,87,255,.12);

  --radius-xl:32px;
  --radius-lg:24px;
  --radius-md:18px;

  --container:1180px;
}

/* RESET */
*{box-sizing:border-box;}
html,body{height:100%;}
body{
  margin:0;
  font-family:"Poppins",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:#fff;
}
img{max-width:100%;height:auto;display:block;}
a{color:inherit;text-decoration:none;}

.container{
  width:min(var(--container), calc(100% - 48px));
  margin:0 auto;
}
.center{text-align:center;}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.header-row{
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand-word{
  font-family:"Grandstander",cursive;
  font-size:60px;
  font-weight:700;
  line-height:1;
  color:var(--blue);
  letter-spacing:.2px;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:24px;
  font-size:14px;
  color:#2f3550;
}
.nav-links a{
  padding:8px 4px;
  opacity:.88;
  transition:.2s ease;
}
.nav-links a:hover{opacity:1;}
.nav-links a.active{
  color:var(--blue);
  font-weight:700;
  opacity:1;
}

/* GLOBAL TITLES */
.section-head{
  max-width:940px;
  margin:0 auto 34px;
}
.section-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 16px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(11,87,255,.10);
  box-shadow:var(--shadow-sm);
  color:var(--blue);
  font-size:13px;
  font-weight:600;
}
.section-title{
  margin:16px 0 12px;
  font-family:Poppins,sans-serif;
  font-size:46px;
  font-weight:800;
  line-height:1.08;
  color:var(--blue);
}
.section-subtitle{
  margin:0 auto;
  max-width:860px;
  color:var(--muted);
  font-size:15.5px;
  line-height:1.85;
}

/* HERO */
.about-hero{
  position:relative;
  overflow:hidden;
  padding:64px 0 52px;
  background:
    radial-gradient(circle at 15% 10%, rgba(11,87,255,.08) 0, transparent 22%),
    radial-gradient(circle at 85% 15%, rgba(253,137,26,.12) 0, transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.hero-shell{
  max-width:960px;
  margin:0 auto;
  text-align:center;
}
.hero-title{
  margin:18px 0 16px;
  font-family:Poppins,sans-serif;
  font-size:58px;
  font-weight:800;
  line-height:1.02;
  color:var(--blue);
}
.hero-text{
  margin:0 auto;
  max-width:840px;
  color:var(--muted);
  font-size:16px;
  line-height:1.9;
}
.hero-badges{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  margin-top:26px;
}
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 16px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(11,87,255,.10);
  color:#3b4563;
  font-size:14px;
  font-weight:500;
  box-shadow:var(--shadow-sm);
}
.hero-badge .dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--orange);
}

/* VALUES */
.about-values{
  padding:78px 0 24px;
}
.values-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}
.value-card{
  background:linear-gradient(180deg,#ffffff 0%, #f8fbff 100%);
  border:1px solid rgba(11,87,255,.10);
  border-radius:28px;
  padding:24px;
  box-shadow:var(--shadow-sm);
  transition:.25s ease;
}
.value-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 38px rgba(11,87,255,.12);
}
.value-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:56px;
  height:56px;
  border-radius:18px;
  background:linear-gradient(180deg, #f3f7ff 0%, #fff4e8 100%);
  border:1px solid rgba(11,87,255,.12);
  color:var(--blue);
  font-size:20px;
  font-weight:700;
  margin-bottom:18px;
}
.value-title{
  margin:0 0 10px;
  color:var(--blue);
  font-size:22px;
  line-height:1.2;
  font-weight:800;
}
.value-text{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.8;
}

/* MISSION VISION */
.mv-section{
  padding:24px 0 82px;
  background:linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}
.mv-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}
.mv-card{
  background:linear-gradient(180deg,#ffffff 0%, #f8fbff 100%);
  border:1px solid rgba(11,87,255,.10);
  border-radius:28px;
  padding:28px 26px;
  box-shadow:var(--shadow-sm);
}
.mv-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:0 14px;
  border-radius:999px;
  background:var(--orange-soft);
  border:1px solid rgba(253,137,26,.22);
  color:var(--orange);
  font-size:13px;
  font-weight:700;
  margin-bottom:16px;
}
.mv-title{
  margin:0 0 14px;
  color:var(--blue);
  font-size:34px;
  line-height:1.12;
  font-weight:800;
}
.mv-text{
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.8;
  font-size:15px;
}
.mv-text:last-child{
  margin-bottom:0;
}

/* FOUNDERS */
.founders-section{
  padding:0 0 82px;
}
.founders-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.founder-card{
  background:linear-gradient(180deg,#ffffff 0%, #f8fbff 100%);
  border:1px solid rgba(11,87,255,.10);
  border-radius:30px;
  overflow:hidden;
  box-shadow:var(--shadow-md);
  transition:.25s ease;
}
.founder-card:hover{
  transform:translateY(-4px);
}
.founder-photo{
  padding:18px 18px 0;
}
.founder-photo img{
  width:100%;
  height:380px;
  object-fit:cover;
  border-radius:22px;
}
.founder-content{
  padding:22px 24px 26px;
}
.founder-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:0 14px;
  border-radius:999px;
  background:#eef4ff;
  border:1px solid rgba(11,87,255,.12);
  color:var(--blue);
  font-size:13px;
  font-weight:700;
  margin-bottom:14px;
}
.founder-name{
  margin:0 0 8px;
  color:var(--blue);
  font-size:30px;
  line-height:1.15;
  font-weight:800;
}
.founder-role{
  margin:0;
  color:var(--muted);
  font-size:16px;
  line-height:1.7;
}

/* CITIES */
.cities-section{
  padding:0 0 86px;
}
.cities-shell{
  background:linear-gradient(180deg,#ffffff 0%, #f8fbff 100%);
  border:1px solid rgba(11,87,255,.10);
  border-radius:32px;
  padding:34px 30px 30px;
  box-shadow:var(--shadow-md);
}
.cities-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  margin-top:8px;
}
.cities-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:14px;
}
.cities-list li{
  position:relative;
  padding-left:24px;
  color:#334155;
  font-size:17px;
  line-height:1.7;
}
.cities-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:10px;
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--orange);
  box-shadow:0 0 0 5px rgba(253,137,26,.16);
}

/* FOOTER */
.site-footer{
  background:var(--orange);
  color:#fff;
  padding:40px 0 8px;
  margin-top:0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:20px;
  align-items:start;
  padding-bottom:16px;
}
.footer-logo{
  font-family:"Grandstander",cursive;
  font-size:40px;
  font-weight:700;
  line-height:1;
  color:var(--blue);
  letter-spacing:.2px;
  margin-bottom:8px;
}
.footer-text{
  margin:0 0 12px;
  color:#fff;
  line-height:1.6;
  max-width:420px;
  font-size:14px;
}
.footer-social{
  display:flex;
  gap:10px;
}
.footer-social a{
  width:34px;
  height:34px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.4);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}
.footer-links{
  display:grid;
  gap:6px;
  justify-items:end;
  text-align:right;
}
.footer-links a{
  color:#fff;
  font-weight:500;
  font-size:14px;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.35);
  padding:10px 0;
  color:#fff;
  font-size:12px;
  text-align:left;
}

/* RESPONSIVO */
@media (max-width:1100px){
  .values-grid{
    grid-template-columns:1fr;
  }

  .mv-grid{
    grid-template-columns:1fr;
  }

  .founders-grid{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  .footer-links{
    justify-items:start;
    text-align:left;
  }
}

@media (max-width:980px){
  .header-row{
    min-height:auto;
    padding:16px 0;
    flex-direction:column;
    align-items:center;
    gap:14px;
  }

  .nav-links{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    gap:12px 16px;
    width:100%;
  }

  .brand-word{
    font-size:40px;
  }

  .about-hero{
    padding:44px 0 34px;
  }

  .hero-title{
    font-size:42px;
  }

  .section-title{
    font-size:38px;
  }

  .about-values{
    padding:58px 0 20px;
  }

  .mv-section{
    padding:16px 0 64px;
  }

  .founders-section{
    padding:0 0 64px;
  }

  .cities-section{
    padding:0 0 64px;
  }

  .cities-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:720px){
  .container{
    width:min(var(--container), calc(100% - 32px));
  }

  .hero-title{
    font-size:34px;
  }

  .hero-text{
    font-size:15px;
    line-height:1.8;
  }

  .section-title{
    font-size:32px;
  }

  .section-subtitle{
    font-size:14.5px;
    line-height:1.8;
  }

  .mv-title{
    font-size:28px;
  }

  .founder-name{
    font-size:26px;
  }

  .cities-shell,
  .mv-card,
  .value-card,
  .founder-card{
    border-radius:24px;
  }

  .founder-photo img{
    height:320px;
  }
}