:root {
  --azul:#0a8fdc;
  --azul-claro:#27b4ff;
  --gris:#f7f9fb;
  --texto:#1e2a38;
  --metal:#e6edf7;
  --blanco:#ffffff;
}

/* =========================================
   GENERAL
========================================= */
* {margin:0;padding:0;box-sizing:border-box;font-family:'Poppins',sans-serif;}
body {background:var(--gris);color:var(--texto);scroll-behavior:smooth;}
.container {width:90%;max-width:1200px;margin:auto;}
a {text-decoration:none;color:inherit;}
.btn-primary {
  background: var(--azul);
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  display: inline-block;
  transition: 0.3s;
}
.btn-primary:hover { background: var(--azul-claro); transform: scale(1.05); }
html {
  scroll-behavior: smooth;
}

/* =========================================
   NAVBAR - AZUL OSCURO GLASS
========================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  background: rgba(5, 20, 35, 0.85); /* azul muy oscuro con transparencia */
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}
.logo img { width: 180px; }

/* === Enlaces de navegación === */
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  color: #f0f4f8;
  letter-spacing: 0.3px;
  transition: color 0.3s, transform 0.3s;
}

/* Hover moderno con línea luminosa azul */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--azul), var(--azul-claro));
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(39,180,255,0.4);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a:hover {
  color: var(--azul-claro);
  transform: translateY(-1px);
}

/* === Dropdowns === */
.dropdown {
  position: relative;
}
.dropdown > .dropbtn {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-weight: 500;
  color: #f2f4f7;
  transition: color 0.3s;
}
.dropdown:hover > .dropbtn {
  color: var(--azul-claro);
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: rgba(10,25,45,0.95);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  border-radius: 8px;
  overflow: hidden;
  z-index: 999;
  backdrop-filter: blur(12px);
}
.dropdown-content a {
  display: block;
  padding: 10px 16px;
  color: #f2f4f7;
  white-space: nowrap;
  transition: background 0.3s, color 0.3s;
}
.dropdown-content a:hover {
  background: rgba(39,180,255,0.12);
  color: var(--azul-claro);
}
.dropdown:hover .dropdown-content {
  display: block;
}

/* === Botón de contacto destacado === */
.nav-contact-btn {
  background: linear-gradient(135deg, var(--azul), var(--azul-claro));
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 3px 10px rgba(39,180,255,0.35);
  transition: all 0.3s ease;
  margin-left: 20px;
}
.nav-contact-btn i {
  font-size: 1.1rem;
}
.nav-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(39,180,255,0.5);
  background: linear-gradient(135deg, var(--azul-claro), var(--azul));
}

/* === Móvil === */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #f0f4f8;
  border-radius: 5px;
}
@media(max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 60px; right: -100%;
    background: rgba(5,20,35,0.97);
    width: 100vw;
    height: calc(100vh - 60px);
    flex-direction: column;
    gap: 25px;
    padding-top: 35px;
    transition: 0.3s;
    backdrop-filter: blur(12px);
  }
  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; }
  .nav-contact-btn { display: none; }
}


/* =========================================
   HERO - NOSOTROS
========================================= */
.hero-nosotros {
  position: relative;
   height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 90vh;
  background: linear-gradient(135deg, #08182c 0%, #0b2238 60%, #051524 100%);
  color: white;
  overflow: hidden;
  padding: 0 8%;
}

/* Fondo con líneas metálicas animadas */
.hero-nosotros-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-nosotros-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #08182c 0%, #0b2238 60%, #051524 100%);
  z-index: 1;
}

/* Canvas de líneas (agregar con JS o pseudoefecto) */
.hero-nosotros-bg canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0.4;
}

/* Efecto de luz difusa azul */
.hero-nosotros::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(39,180,255,0.25), transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}


.hero-nosotros-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  text-align: left;
  animation: fadeInUp 1s ease both;
}

.hero-nosotros h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 25px;
  background: linear-gradient(90deg, #ffffff, #a8e3ff);
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 15px rgba(39,180,255,0.3);
  
}

.hero-nosotros p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #cde5f8;
  margin-bottom: 40px;
}

.hero-nosotros .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--azul), var(--azul-claro));
  color: white;
  font-weight: 600;
  padding: 15px 35px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(39,180,255,0.3);
}
.hero-nosotros .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(39,180,255,0.45);
}

/* Animación de entrada */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === Responsive === */
@media(max-width: 992px){
  .hero-nosotros {
    padding: 100px 30px;
    text-align: center;
    justify-content: center;
    height: 100%;

  }
  .hero-nosotros-content {
    max-width: 90%;
    text-align: center;
  }
  .hero-nosotros h1 {
    font-size: 2.2rem;
  }
  .hero-nosotros p {
    font-size: 1rem;
  }
}
/* =========================================
   FONDO CON IMAGEN PARA HERO
========================================= */
.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../../media/fondo.jpg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.22;
  filter: brightness(0.6) contrast(1.2) blur(1px);
  pointer-events: none;
}

/* =========================================
   NUESTRA HISTORIA
========================================= */
.historia {
  background: linear-gradient(135deg, #f6f9fc 0%, #eaf2fb 100%);
  padding: 120px 20px;
  overflow: hidden;
}

.historia-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.historia-texto h2 {
  font-size: 2.3rem;
  color: #0b2238;
  margin-bottom: 25px;
  position: relative;
}
.historia-texto h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, var(--azul), var(--azul-claro));
  border-radius: 3px;
}

.historia-texto p {
  color: #45566d;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 20px;
}
.historia-texto strong {
  color: #0b2238;
}
.historia-texto em {
  color: var(--azul);
  font-style: normal;
  font-weight: 600;
}

.historia-frase {
  margin-top: 30px;
  font-style: italic;
  color: var(--azul-oscuro);
  font-weight: 600;
  border-left: 4px solid var(--azul-claro);
  padding-left: 15px;
  line-height: 1.5;
}

/* Imagen con overlay y luz metálica */
.historia-imagen {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.historia-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.historia-imagen:hover img {
  transform: scale(1.05);
}
.historia-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(39,180,255,0.25), transparent 70%);
  mix-blend-mode: screen;
}

/* === Responsive === */
@media(max-width: 992px){
  .historia-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .historia-texto h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .historia-frase {
    border-left: none;
    border-top: 3px solid var(--azul-claro);
    padding-left: 0;
    padding-top: 15px;
    display: inline-block;
  }
  .historia-imagen {
    margin-top: 40px;
  }
}

/* =========================================
   MISIÓN, VISIÓN Y VALORES
========================================= */
.mvv {
  background: linear-gradient(135deg, #08182c 0%, #0b2238 60%, #051524 100%);
  color: white;
  text-align: center;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.mvv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(39,180,255,0.15), transparent 70%);
  filter: blur(100px);
  z-index: 0;
}

.mvv-content {
  position: relative;
  z-index: 2;
}

.mvv h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  position: relative;
}
.mvv h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--azul), var(--azul-claro));
  border-radius: 3px;
}
.mvv-intro {
  max-width: 700px;
  margin: 25px auto 70px;
  color: #c8e2f7;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* === GRID === */
.mvv-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  z-index: 2;
}

.mvv-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 50px 35px;
  width: 340px;
  transition: all 0.4s ease;
  box-shadow: 0 0 25px rgba(0,0,0,0.3);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mvv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(39,180,255,0.4);
}

.mvv-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--azul), var(--azul-claro));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin: 0 auto 25px;
  box-shadow: 0 0 20px rgba(39,180,255,0.4);
  transition: transform 0.4s ease;
}
.mvv-card:hover .mvv-icon {
  transform: scale(1.1);
}

.mvv-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #fff;
}

.mvv-card p {
  font-size: 0.98rem;
  color: #c2d8eb;
  line-height: 1.6;
}

.mvv-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #c2d8eb;
  font-size: 0.95rem;
  line-height: 1.7;
}
.mvv-card ul li::before {
  content: "• ";
  color: var(--azul-claro);
}

/* === Responsive === */
@media(max-width: 992px){
  .mvv-grid {
    flex-direction: column;
    align-items: center;
  }
  .mvv-card {
    width: 90%;
    padding: 45px 25px;
  }
}


/* =========================================
   PROCESO Y CONFIDENCIALIDAD - DISEÑO FLUIDO
========================================= */
.proceso {
  background: linear-gradient(135deg, #eef4fa 0%, #f7f9fc 80%);
  color: #0b2238;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.proceso::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(39,180,255,0.12), transparent 70%);
  filter: blur(100px);
  z-index: 0;
}

.proceso-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.proceso-texto h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  position: relative;
}
.proceso-texto h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, var(--azul), var(--azul-claro));
  border-radius: 3px;
}
.proceso-intro {
  margin: 35px 0 50px;
  color: #45566d;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 600px;
}

/* Bloques narrativos */
.proceso-bloques .bloque {
  margin-bottom: 40px;
}
.proceso-bloques h3 {
  font-size: 1.25rem;
  color: var(--azul-oscuro);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.proceso-bloques h3 i {
  color: var(--azul);
  font-size: 1.3rem;
}
.proceso-bloques p {
  color: #4a5c70;
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
  max-width: 600px;
}

/* Imagen lateral */
.proceso-imagen {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.proceso-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.proceso-imagen:hover img {
  transform: scale(1.05);
}
.proceso-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(39,180,255,0.25), transparent 70%);
  mix-blend-mode: screen;
}

/* === Responsive === */
@media(max-width: 992px){
  .proceso-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .proceso-texto h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .proceso-bloques h3 {
    justify-content: center;
  }
  .proceso-intro, .proceso-bloques p {
    margin: 0 auto 25px;
  }
  .proceso-imagen {
    margin-top: 40px;
  }
}

/* =========================================
   CTA LINKEDIN - CONEXIÓN PROFESIONAL
========================================= */
.cta-linkedin {
  position: relative;
  text-align: center;
  color: white;
  padding: 140px 20px;
  background: linear-gradient(135deg, #0b2238 0%, #08182c 70%, #051524 100%);
  overflow: hidden;
}

.cta-linkedin-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 40%, rgba(39,180,255,0.25), transparent 70%);
  filter: blur(100px);
  z-index: 1;
}

.cta-linkedin-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1.2s ease both;
}

.cta-linkedin h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--azul), var(--azul-claro));
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(39,180,255,0.3);
}

.cta-linkedin p {
  font-size: 1.1rem;
  color: #c8e2f7;
  margin-bottom: 45px;
  line-height: 1.6;
}

/* Botón de LinkedIn */
.btn-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0077b5;
  color: white;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.4s ease;
  box-shadow: 0 0 25px rgba(0,119,181,0.4);
}
.btn-linkedin:hover {
  background: #0091da;
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(0,119,181,0.6);
}

/* Animación entrada */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === Responsive === */
@media(max-width: 768px){
  .cta-linkedin {
    padding: 100px 25px;
  }
  .cta-linkedin h2 {
    font-size: 2rem;
  }
  .cta-linkedin p {
    font-size: 1rem;
  }
  .btn-linkedin {
    padding: 14px 28px;
    font-size: 1rem;
  }
}






/* =========================================
   FOOTER - ESTÁTICO, ELEGANTE Y TECNOLÓGICO
========================================= */
.footer {
  position: relative;
  background: linear-gradient(135deg, #06101c, #0b2238 60%, #08182c);
  color: white;
  padding: 100px 20px 40px;
  overflow: hidden;
}

/* Fondo estático tipo textura */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 20%, rgba(39,180,255,0.08), transparent 70%);
  opacity: 0.4;
  z-index: 0;
}

/* Contenido principal */
.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  width: 180px;
  margin-bottom: 20px;
  filter: brightness(1.1);
}

.footer-desc {
  color: #d5e7f9;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 300px;
}

/* CONTACTO */
.footer-contact h3,
.footer-social h3 {
  color: var(--azul-claro);
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.footer-contact p {
  font-size: 0.95rem;
  color: #e3f1ff;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-contact a {
  color: #b7dbf8;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contact a:hover {
  color: var(--azul-claro);
}

/* REDES SOCIALES */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--azul-claro);
  transition: all 0.3s ease;
}
.social-icons a:hover {
  background: var(--azul-claro);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(39,180,255,0.4);
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 60px;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
}
.footer-bottom p {
  font-size: 0.9rem;
  color: #a7c6e4;
}
.footer-bottom a {
  color: var(--azul-claro);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-bottom a:hover {
  color: white;
}

/* === Responsive === */
@media(max-width: 992px){
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .footer-desc {
    margin: 0 auto;
  }
  .social-icons {
    justify-content: center;
  }
}

/* =========================================
   ANIMACIÓN GLOBAL HERO (fade + slide up)
========================================= */
.reveal-hero {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal-hero.visible {
  opacity: 1;
  transform: translateY(0);
}

.division-badge {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 18px;
    color: white;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

/* =========================================
   COLOREADO - BOTÓN WHATSAPP
========================================= */
.nav-contact-btn {
  background: linear-gradient(135deg, #25D366, #1EBE5A) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 10px 20px !important;
  border-radius: 30px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.35) !important;
  transition: all 0.3s ease !important;
}

.nav-contact-btn i {
  font-size: 1.1rem !important;
  color: #fff !important;
}

/* Hover verde más oscuro */
.nav-contact-btn:hover {
  background: linear-gradient(135deg, #1EBE5A, #128C4A) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 16px rgba(37, 211, 102, 0.48) !important;
}

/* =========================================
   ACOMPAÑAMIENTO TÉCNICO - NUEVA ESTRUCTURA
========================================= */
.at{
  position: relative;
  padding: 120px 20px;
  background: linear-gradient(135deg, #f6f9fc 0%, #eef4fa 100%);
  overflow: hidden;
}

.at::before{
  content:"";
  position:absolute;
  inset:-10%;
  background:
    radial-gradient(circle at 18% 22%, rgba(39,180,255,0.14), transparent 60%),
    radial-gradient(circle at 85% 75%, rgba(10,143,220,0.11), transparent 62%);
  filter: blur(90px);
  z-index:0;
}

.at__wrap{
  position: relative;
  z-index: 1;
}

.at__head{
  text-align: center;
  max-width: 920px;
  margin: 0 auto 60px;
}

.at__pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(39,180,255,0.12);
  border: 1px solid rgba(39,180,255,0.22);
  color:#0b2238;
  font-weight: 700;
  margin-bottom: 16px;
}

.at__pill i{ color: var(--azul); }

.at__title{
  font-size: 2.35rem;
  color: #0b2238;
  margin-bottom: 14px;
}

.at__lead{
  color:#45566d;
  font-size: 1.08rem;
  line-height: 1.7;
}

/* === Timeline === */
.at__timeline{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 40px;
  position: relative;
}

.at__timeline::before{
  content:"";
  position:absolute;
  top: 36px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(39,180,255,0.55), transparent);
  filter: blur(0.2px);
  opacity: 0.9;
}

.atStep{
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(39,180,255,0.18);
  border-radius: 22px;
  padding: 26px 22px 20px;
  box-shadow: 0 10px 34px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}

.atStep::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(39,180,255,0.10), transparent 70%);
  opacity: 0;
  transition: opacity .35s ease;
}

.atStep:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(39,180,255,0.18);
}

.atStep:hover::before{ opacity: 1; }

.atStep__top{
  display:flex;
  gap: 14px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.atStep__icon{
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--azul), var(--azul-claro));
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size: 1.35rem;
  box-shadow: 0 0 18px rgba(39,180,255,0.35);
  flex: 0 0 54px;
}

.atStep__meta h3{
  color:#0b2238;
  font-size: 1.06rem;
  margin-bottom: 6px;
}

.atStep__meta p{
  color:#566a84;
  font-size: .95rem;
  line-height: 1.6;
}

.atStep__tag{
  display:inline-block;
  margin-top: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(39,180,255,0.10);
  border: 1px solid rgba(39,180,255,0.16);
  color:#2b3f56;
  font-weight: 600;
  font-size: .85rem;
  position: relative;
  z-index: 1;
}

/* === Cards grid === */
.at__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 0 28px;
}

.atCard{
  background: #fff;
  border: 1px solid rgba(39,180,255,0.16);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform .35s ease, box-shadow .35s ease;
}

.atCard:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(39,180,255,0.16);
}

.atCard__icon{
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(39,180,255,0.12);
  border: 1px solid rgba(39,180,255,0.20);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--azul);
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.atCard__title{
  font-size: 1.1rem;
  color:#0b2238;
  margin-bottom: 8px;
}

.atCard__text{
  color:#566a84;
  font-size: .95rem;
  line-height: 1.65;
  margin-bottom: 14px;
}

.atCard__chips{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}

.atCard__chips span{
  font-size: .85rem;
  color:#2b3f56;
  background: rgba(39,180,255,0.10);
  border: 1px solid rgba(39,180,255,0.16);
  padding: 6px 10px;
  border-radius: 999px;
}

/* === Barra final === */
.at__bar{
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(39,180,255,0.18);
  border-radius: 24px;
  padding: 24px 22px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.at__barText h3{
  font-size: 1.15rem;
  color:#0b2238;
  margin-bottom: 6px;
}

.at__barText p{
  color:#4f647f;
  line-height: 1.6;
  font-size: .95rem;
  max-width: 760px;
}

.at__barActions{
  display:flex;
  gap: 12px;
  align-items:center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.at__btn{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--azul), var(--azul-claro));
  color:#fff;
  font-weight: 700;
  box-shadow: 0 0 25px rgba(39,180,255,0.28);
  transition: transform .3s ease, box-shadow .3s ease;
}

.at__btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(39,180,255,0.42);
}

.at__link{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  color:#0b2238;
  font-weight: 700;
  transition: background .25s ease, transform .25s ease;
}

.at__link:hover{
  background: rgba(39,180,255,0.10);
  transform: translateY(-1px);
}

/* === Responsive === */
@media(max-width: 992px){
  .at__timeline,
  .at__grid{
    grid-template-columns: 1fr;
  }

  .at__timeline::before{
    display:none;
  }

  .at__bar{
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .at__barActions{
    justify-content: flex-start;
  }
}
