* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

.menu a {
  text-decoration: none;
  color: #0B2C4D;
}

/* BOTONES */
.btn-primary {
  background: #2FA4FF;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
}

.btn-secondary {
  border: 1px solid white;
  color: white;
  padding: 10px 18px;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #0B2C4D, #1f5f9e);
  color: white;
  padding: 80px 0;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero img {
  width: 100%;
  border-radius: 8px;
}

/* SERVICIOS */
.servicios {
  padding: 60px 0;
  background: #f5f7fa;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* NOSOTROS */
.nosotros-content {
  display: flex;
  gap: 40px;
  padding: 60px 0;
}

.nosotros img {
  width: 300px;
  border-radius: 8px;
}

/* PORQUE */
.porque {
  background: #f5f7fa;
  padding: 60px 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-item {
  background: white;
  padding: 20px;
}

.why-item span {
  font-size: 30px;
  color: #2FA4FF;
}

/* CONTACTO */
.contacto-content {
  display: flex;
  gap: 40px;
  padding: 60px 0;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form input, .form textarea {
  padding: 10px;
  border: 1px solid #ccc;
}

.form button {
  background: #2FA4FF;
  color: white;
  padding: 10px;
  border: none;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 20px;
  background: #0B2C4D;
  color: white;
}

/* RESPONSIVE */
@media(max-width: 768px){
  .hero-content,
  .nosotros-content,
  .contacto-content {
    flex-direction: column;
  }

  .grid {
    grid-template-columns: 1fr 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.logo {
  font-weight: 700;
  color: #0B2C4D;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding-top: 140px;
  overflow: hidden;
}

/* Imagen de fondo */
.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}

/* Degradé azul */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 100%;
  background: linear-gradient(
    90deg,
    #0B2C4D 60%,
    rgba(11,44,77,0.6) 80%,
    rgba(11,44,77,0) 100%
  );
  z-index: 1;
}

/* Contenido */
.hero-content {
  position: relative;
  z-index: 2;
  
}

.hero-text {
  max-width: 500px;
  color: white;
}

.hero-text h1 {
  font-size: 55px;
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 28px;
  max-width: 650px;
}

.hero-text p {
  font-size: 15px;
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.9);
}

/* Botones */
.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary,
.btn-secondary {
  padding: 16px 30px;
  font-size: 17px;
  border-radius: 8px;
  text-decoration: none;
}

@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    padding: 60px 0;
  }

  .hero-bg {
    width: 100%;
    opacity: 0.3;
  }

  .hero-overlay {
    width: 100%;
  }

  .hero-text {
    text-align: center;
    margin: auto;
  }

  .nav-center {
    display: none;
  }
}

@media (max-width: 768px) {

  .hero {
    padding-top: 120px;
  }

  .hero-text h1 {
    font-size: 46px;
  }

  .hero-text p {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: white;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 40px;
  font-weight: 700;
  color: #111;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
}

.menu a {
  text-decoration: none;
  color: #0B2C4D;
  font-weight: 500;
  transition: 0.3s;
}

.menu a:hover {
  color: #2FA4FF;
}

.header .btn-primary {
  padding: 12px 22px;
  font-size: 15px;
}

.logo img {
  height: 75px;
  width: auto;
  display: block;
}

.menu a {
  position: relative;
  text-decoration: none;
  color: #0B2C4D;
  font-weight: 500;
  transition: color 0.3s ease;
  padding-bottom: 6px;
}

/* Línea */
.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 2px;

  background: #2FA4FF;

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.35s ease;
}

/* Hover */
.menu a:hover {
  color: #2FA4FF;
}

.menu a:hover::after {
  transform: scaleX(1);
}

/* =========================
   MENU MOBILE
========================= */

/* HAMBURGUESA */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  z-index: 2000;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: #0B2C4D;
  border-radius: 20px;
  transition: 0.3s ease;
}

/* PANEL */
.mobile-menu {
  position: fixed;
  top: 80px;
  right: -100%;

  width: 320px;
  height: 100vh;

  background: white;

  z-index: 1500;

  padding: 20px 35px 40px;

  transition: right 0.4s ease;

  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

/* ACTIVO */
.mobile-menu.active {
  right: 0;
}

/* LINKS */
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  list-style: none;
}

.mobile-menu li {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.mobile-menu a {
  display: block;

  padding: 22px 0;

  text-decoration: none;
  color: #0B2C4D;

  font-size: 20px;
  font-weight: 600;

  transition: 0.3s ease;
}

.mobile-menu a:hover {
  color: #2FA4FF;
}

/* OVERLAY */
.mobile-overlay {
  position: fixed;
  inset: 0;

  background: rgba(0,0,0,0.45);

  opacity: 0;
  visibility: hidden;

  transition: 0.3s ease;

  z-index: 1400;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .nav-right {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header {
    height: 80px;
  }

  .logo img {
    height: 42px;
  }

}



@media (max-width: 768px) {

  .hero {
    min-height: 100svh;
    
    
  }

  /* CONTENEDOR IMAGEN */
  .hero-bg {
    width: 100%;
    height: 100svh;
    background: #0B2C4D;
  }

  /* IMAGEN */
  .hero-bg img {

    content: url("img/hero.responsive.png");

    width: 100%;
    height: 100svh;

    object-fit: cover;
    object-position: center top;
    
    

    opacity: 1;
  }

  /* SACAR OVERLAY */
  .hero-overlay {
    display: none;
  }

  /* CONTENIDO */
  .hero-content {
    
    position: relative;
    z-index: 2;
     padding-left: 10px;
     margin-top: 350px;
  }

  .hero-text {
    max-width: 100%;
    text-align: left;
  }

  /* TITULO */
  .hero-text h1 {
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 18px;
    margin-top: -300px;
  }

  /* TEXTO */
  .hero-text p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 28px;
    max-width: 100%;
  }

  /* BOTONES */
  .hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 12px;
  }

  .hero .btn-primary,
  .hero .btn-secondary {
    padding: 10px 18px;
    font-size: 13px;
  }

}


/* =========================
   SERVICIOS
========================= */

.servicios {
  padding: 110px 0;
  background: #f7f9fc;
}

/* LABEL */
.services-label {
  display: block;

  text-align: center;

  color: #2b92e0;

  font-size: 25px;
  font-weight: 700;

  letter-spacing: 1px;

  margin-bottom: 18px;
}

/* TITULO */
.services-title {
  text-align: center;

  font-size: 40px;
  line-height: 1.1;

  color: #154c80;

  margin-bottom: 22px;
}

/* DESCRIPCION */
.services-description {
  text-align: center;

  max-width: 760px;

  margin: auto auto 70px;

  font-size: 19px;
  line-height: 1.7;

  color: #0B2C4D;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* CARD */
.service-card {
  background: white;

  padding: 45px 30px;

  border-radius: 14px;

  text-align: center;

  border: 1px solid rgba(11,44,77,0.08);

  transition: 0.35s ease;

  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.service-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* ICONO */
.service-icon {
  font-size: 48px;
  color: #0B2C4D;
  margin-bottom: 24px;
}

/* TITULO CARD */
.service-card h3 {
  font-size: 20px;

  color: #093e74;

  margin-bottom: 18px;
}

/* TEXTO CARD */
.service-card p {
  font-size: 13px;
  line-height: 1.7;

  color: #114375;
}

.service-icon i {
  transition: 0.3s ease;
}

.service-card:hover .service-icon i {
  transform: scale(1.08);
  color: #2FA4FF;
}

/* =========================
   SERVICIOS MOBILE
========================= */

@media (max-width: 768px) {

  .servicios {
    padding: 80px 0;
  }

  /* LABEL */
  .services-label {
    font-size: 13px;
    margin-bottom: 14px;
  }

  /* TITULO */
  .services-title {
    font-size: 25px;
    line-height: 1.15;

    max-width: 100%;
  }

  /* DESCRIPCION */
  .services-description {
    font-size: 14px;
    line-height: 1.6;

    margin-bottom: 45px;
  }

  /* GRID */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  /* CARDS */
  .service-card {
    padding: 35px 25px;
  }

  /* ICONOS */
  .service-icon {
    font-size: 38px;
    margin-bottom: 18px;
  }

  /* TITULOS CARDS */
  .service-card h3 {
    font-size: 28px;
    margin-bottom: 14px;
  }

  /* TEXTO */
  .service-card p {
    font-size: 16px;
    line-height: 1.6;
  }

}

/* =========================
   SOBRE MI
========================= */

.about {
  padding: 70px 0;

  background:
    linear-gradient(
      135deg,
      #f8fbff 0%,
      #d2e1f7 100%
    );

  overflow: hidden;
}

/* WRAPPER */
.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 35px;
}

/* TEXTO */
.about-content {
  flex: 1;
  max-width: 500px;
}

/* LABEL */
.about-label {
  display: inline-block;

  color: #2FA4FF;

  font-size: 11px;
  font-weight: 700;

  margin-bottom: 10px;

  letter-spacing: 1px;
}

/* TITULO */
.about-content h2 {
  font-size: 34px;
  line-height: 1.15;

  color: #0B2C4D;

  margin-bottom: 18px;
}

/* DESCRIPCION */
.about-description {
  font-size: 14px;
  line-height: 1.6;

  color: #0B2C4D;

  margin-bottom: 22px;
}

/* LISTA */
.about-list {
  display: flex;
  flex-direction: column;

  gap: 10px;

  list-style: none;
}

/* ITEMS */
.about-list li {
  display: flex;
  align-items: flex-start;

  gap: 10px;

  color: #0B2C4D;

  font-size: 14px;
  line-height: 1.5;
}

/* ICONO */
.about-list i {
  color: #2FA4FF;

  font-size: 15px;

  margin-top: 2px;
}

/* IMAGEN */
.about-image {
  flex: 1;

  display: flex;
  justify-content: center;
}

/* CIRCULO */
.about-circle {
  width: 300px;
  height: 300px;

  border-radius: 50%;

  overflow: hidden;

  border: 4px solid #d9e9ff;

  position: relative;

  box-shadow: 0 14px 35px rgba(0,0,0,0.07);
}

/* DECORACION DERECHA */
.about-circle::before {
  content: "";

  position: absolute;

  width: 120px;
  height: 120px;

  right: -40px;
  top: 40px;

  background-image:
    radial-gradient(#2FA4FF 1.5px, transparent 1.5px);

  background-size: 14px 14px;

  opacity: 0.5;

  z-index: -1;
}

/* LINEA DIAGONAL */
.about-circle::after {
  content: "";

  position: absolute;

  width: 140px;
  height: 16px;

  background: linear-gradient(
    90deg,
    #2FA4FF,
    #67C3FF
  );

  bottom: 40px;
  right: -70px;

  transform: rotate(-55deg);

  border-radius: 20px;

  z-index: -1;
}

/* FOTO */
.about-circle img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* =========================
   ABOUT RESPONSIVE
========================= */

@media (max-width: 992px) {

  .about-wrapper {
    flex-direction: column-reverse;
    text-align: center;

    gap: 30px;
  }

  .about-content {
    max-width: 100%;
  }

  .about-content h2 {
    font-size: 30px;
  }

  .about-description {
    font-size: 14px;
  }

  .about-list {
    align-items: flex-start;
  }

  .about-circle {
    width: 240px;
    height: 240px;
  }

}

@media (max-width: 768px) {

  .about {
    padding: 60px 0;
  }

  .about-label {
    font-size: 10px;
  }

  .about-content h2 {
    font-size: 26px;
    line-height: 1.2;
  }

  .about-description {
    font-size: 14px;
    line-height: 1.6;
  }

  .about-list {
    gap: 10px;
  }

  .about-list li {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.5;
  }

  .about-list i {
    font-size: 14px;
  }

  .about-circle {
    width: 190px;
    height: 190px;
  }

}

/* =========================
   PORQUE
========================= */

.porque {
  padding: 70px 0;

  background:
    linear-gradient(
      135deg,
      #f8fbff 0%,
      #eef5ff 100%
    );

  overflow: hidden;
}

/* TOP */
.porque-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;

  margin-bottom: 45px;
}

/* TEXTO */
.porque-content {
  max-width: 500px;
}

/* LABEL */
.porque-label {
  display: inline-block;

  color: #2FA4FF;

  font-size: 11px;
  font-weight: 700;

  margin-bottom: 10px;

  letter-spacing: 1px;
}

/* TITULO */
.porque-content h2 {
  font-size: 40px;
  line-height: 1.1;

  color: #0B2C4D;

  margin-bottom: 18px;
}

/* LINEA */
.porque-line {
  width: 55px;
  height: 3px;

  background: #2FA4FF;

  border-radius: 20px;

  margin-bottom: 22px;
}

/* TEXTO */
.porque-description {
  font-size: 15px;
  line-height: 1.7;

  color: #0B2C4D;
}

/* IMAGEN */
.porque-image {
  display: flex;
  justify-content: center;
}

/* CIRCULO */
.porque-circle {
  width: 320px;
  height: 320px;

  position: relative;
}

/* IMAGEN INTERNA */
.porque-image-inner {
  width: 100%;
  height: 100%;

  border-radius: 50%;

  overflow: hidden;

  border: 4px solid #d9e9ff;

  position: relative;
  z-index: 2;

  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}

/* FOTO */
.porque-image-inner img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* PUNTOS */
.porque-circle::before {
  content: "";

  position: absolute;

  width: 90px;
  height: 90px;

  left: -30px;
  top: 30px;

  background-image:
    radial-gradient(#2FA4FF 1.5px, transparent 1.5px);

  background-size: 12px 12px;

  opacity: 0.5;

  z-index: 1;
}

/* LINEA */
.porque-circle::after {
  content: "";

  position: absolute;

  width: 90px;
  height: 12px;

  background: linear-gradient(
    90deg,
    #2FA4FF,
    #67C3FF
  );

  bottom: 30px;
  right: -35px;

  transform: rotate(-55deg);

  border-radius: 20px;

  z-index: 1;
}

/* GRID */
.porque-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 18px;
}

/* CARD */
.porque-card {
  background: white;

  border-radius: 16px;

  padding: 22px;

  display: flex;
  align-items: flex-start;

  gap: 18px;

  border: 1px solid rgba(11,44,77,0.06);

  box-shadow: 0 8px 24px rgba(0,0,0,0.03);

  transition: 0.3s ease;
  
  position: relative;
}

/* LINEA VERTICAL */
.porque-card::after {
  content: "";

  position: absolute;

  left: 98px;
  top: 28px;

  width: 2px;
  height: 100px;

  background: rgba(11,44,77,0.12);
}



.porque-card:hover {
  transform: translateY(-4px);

  box-shadow: 0 14px 30px rgba(0,0,0,0.06);
}

/* ICONO */
.porque-icon {
  min-width: 70px;
  height: 70px;

  border-radius: 50%;

  background: #f3f7ff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 30px;

  color: #2FA4FF;
}

/* HEADER */
.porque-header {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-bottom: 10px;
}

/* NUMERO */
.porque-header span {
  font-size: 24px;
  font-weight: 700;

  color: #2FA4FF;
}

/* TITULO */
.porque-header h3 {
  font-size: 17px;

  color: #0B2C4D;
}

/* TEXTO */
.porque-info p {
  font-size: 13px;
  line-height: 1.6;

  color: #0B2C4D;
}

/* =========================
   PORQUE RESPONSIVE
========================= */

@media (max-width: 992px) {

  /* TOP */
  .porque-top {
    flex-direction: column;
    text-align: center;

    gap: 40px;

    margin-bottom: 50px;
  }

  /* TEXTO */
  .porque-content {
    max-width: 100%;
  }

  /* TITULO */
  .porque-content h2 {
    font-size: 40px;
  }

  /* LINEA */
  .porque-line {
    margin: 0 auto 24px;
  }

  /* DESCRIPCION */
  .porque-description {
    font-size: 16px;
    line-height: 1.7;
  }

  /* IMAGEN */
  .porque-circle {
    width: 300px;
    height: 300px;
  }

  /* GRID */
  .porque-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

}

/* MOBILE */
@media (max-width: 768px) {

  .porque {
    padding: 70px 0;
  }

  /* LABEL */
  .porque-label {
    font-size: 11px;
    margin-bottom: 10px;
  }

  /* TITULO */
  .porque-content h2 {
    font-size: 30px;
    line-height: 1.15;

    margin-bottom: 18px;
  }

  /* DESCRIPCION */
  .porque-description {
    font-size: 15px;
    line-height: 1.6;
  }

  /* IMAGEN */
  .porque-circle {
    width: 220px;
    height: 220px;
  }

  /* PUNTOS */
  .porque-circle::before {
    width: 70px;
    height: 70px;

    left: -20px;
    top: 20px;

    background-size: 10px 10px;
  }

  /* LINEA */
  .porque-circle::after {
    width: 70px;
    height: 10px;

    right: -20px;
    bottom: 25px;
  }

  /* CARD */
  .porque-card {
    padding: 22px;

    gap: 18px;

    flex-direction: column;
    align-items: center;

    text-align: center;
  }

  /* ICONO */
  .porque-icon {
    min-width: 70px;
    height: 70px;

    font-size: 30px;
  }

  /* HEADER */
  .porque-header {
    flex-direction: column;

    gap: 6px;

    margin-bottom: 14px;
  }

  /* NUMERO */
  .porque-header span {
    font-size: 24px;
  }

  /* TITULO */
  .porque-header h3 {
    font-size: 20px;
  }

  /* TEXTO */
  .porque-info p {
    font-size: 14px;
    line-height: 1.6;
  }
.porque-card::after {
  display: none;
}

}

/* =========================
   CONTACTO
========================= */

.contacto {

  padding: 55px 0;

  background:
    linear-gradient(
      135deg,
      #0B2C4D 0%,
      #133E69 100%
    );

  position: relative;

  overflow: hidden;
}

/* WRAPPER */
.contact-wrapper {

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;
}

/* TEXTO */
.contact-content {
  max-width: 500px;
}

/* LABEL */
.contact-label {

  display: inline-block;

  color: #2FA4FF;

  font-size: 15px;
  font-weight: 700;

  letter-spacing: 1px;

  margin-bottom: 8px;
}

/* TITULO */
.contact-content h2 {

  font-size: 30px;
  line-height: 1.1;

  color: white;

  margin-bottom: 12px;
}

/* SUB */
.contact-content h3 {

  font-size: 16px;

  color: white;

  margin-bottom: 10px;
}

/* TEXTO */
.contact-content p {

  font-size: 14px;
  line-height: 1.7;

  color: rgba(255,255,255,0.82);
}

/* FORM BOX */
.contact-form-box {
  width: 100%;
  max-width: 300px;
  margin-right: 25px;
}

/* FORM */
.contact-form {

  display: flex;
  flex-direction: column;

  gap: 8px;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {

  width: 100%;

  border: none;

  background: white;

  padding: 10px 12px;

  border-radius: 6px;

  font-size: 13px;

  outline: none;

  color: #0B2C4D;
}

/* TEXTAREA */
.contact-form textarea {

  min-height: 85px;

  resize: none;
}

/* BOTON */
.contact-form button {

  height: 42px;

  border: none;

  border-radius: 6px;

  background: linear-gradient(
    90deg,
    #2FA4FF,
    #1E8FFF
  );

  color: white;

  font-size: 13px;
  font-weight: 600;

  cursor: pointer;

  transition: 0.3s ease;
}

.contact-form button:hover {

  transform: translateY(-2px);

  box-shadow: 0 8px 20px rgba(47,164,255,0.25);
}


/* =========================
   CONTACTO RESPONSIVE
========================= */

@media (max-width: 992px) {

  .contact-wrapper {

    flex-direction: column;
    align-items: flex-start;

    gap: 30px;
  }

  .contact-content {
    max-width: 100%;
  }

  .contact-content h2 {
    font-size: 26px;
  }

}

/* MOBILE */
@media (max-width: 768px) {

  .contacto {
    padding: 50px 0;
  }

  .contact-wrapper {
    gap: 24px;
  }

  .contact-label {
    font-size: 10px;
  }

  .contact-content h2 {

    font-size: 24px;
    line-height: 1.15;

    margin-bottom: 10px;
  }

  .contact-content h3 {

    font-size: 14px;

    margin-bottom: 8px;
  }

  .contact-content p {

    font-size: 13px;
    line-height: 1.6;
  }

  .contact-form-box {
    max-width: 100%;
  }

  .contact-form input,
  .contact-form textarea {

    padding: 12px 14px;

    font-size: 13px;
  }

  .contact-form button {

    height: 42px;

    font-size: 13px;
  }

}

/* =========================
   SUCURSAL
========================= */

.sucursal {

  padding: 60px 0;

  background:
    linear-gradient(
      135deg,
      #f8fbff 0%,
      #eef5ff 100%
    );
}

/* WRAPPER */
.sucursal-wrapper {

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 35px;
}

/* IZQUIERDA */
.sucursal-content {
  max-width: 390px;
}

/* LABEL */
.sucursal-label {

  display: inline-block;

  color: #2FA4FF;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 1px;

  margin-bottom: 8px;
}

/* LINEA */
.sucursal-line {

  width: 45px;
  height: 3px;

  background: #2FA4FF;

  border-radius: 20px;

  margin-bottom: 18px;
}

/* TITULO */
.sucursal-content h2 {

  font-size: 32px;
  line-height: 1.1;

  color: #0B2C4D;

  margin-bottom: 16px;
}

/* DESCRIPCION */
.sucursal-description {

  font-size: 14px;
  line-height: 1.7;

  color: #0B2C4D;

  margin-bottom: 28px;
}

/* ITEM */
.sucursal-item {

  display: flex;
  align-items: flex-start;

  gap: 16px;

  margin-bottom: 22px;
}

/* ICONO */
.sucursal-icon {

  min-width: 56px;
  height: 56px;

  border-radius: 50%;

  background: #edf4ff;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #2FA4FF;

  font-size: 24px;

  position: relative;
}

/* LINEA */
.sucursal-icon::after {

  content: "";

  position: absolute;

  right: -8px;
  top: 10px;

  width: 1px;
  height: 36px;

  background: rgba(11,44,77,0.1);
}

/* INFO */
.sucursal-info h3 {

  font-size: 18px;

  color: #0B2C4D;

  margin-bottom: 6px;
}

/* TEXTO */
.sucursal-info p {

  font-size: 14px;
  line-height: 1.7;

  color: #0B2C4D;
}

/* BOX */
.sucursal-box {

  margin-top: 30px;

  background: rgba(255,255,255,0.7);

  border-radius: 16px;

  padding: 18px;

  display: flex;
  align-items: center;

  gap: 16px;

  border: 1px solid rgba(11,44,77,0.05);
}

/* ICONO */
.sucursal-box-icon {

  min-width: 56px;
  height: 56px;

  border-radius: 50%;

  background: #edf4ff;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #2FA4FF;

  font-size: 24px;
}

/* TITULO */
.sucursal-box-content h4 {

  font-size: 16px;

  color: #0B2C4D;

  margin-bottom: 6px;
}

/* TEXTO */
.sucursal-box-content p {

  font-size: 13px;
  line-height: 1.6;

  color: #0B2C4D;
}

/* FLECHA */
.sucursal-arrow {

  margin-left: auto;

  min-width: 42px;
  height: 42px;

  border-radius: 50%;

  background: linear-gradient(
    90deg,
    #2FA4FF,
    #1E8FFF
  );

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;

  font-size: 16px;
}

/* MAPA */
.sucursal-map {

  flex: 1;

  height: 420px;

  border-radius: 22px;

  overflow: hidden;

  box-shadow: 0 14px 32px rgba(0,0,0,0.05);
}

/* IFRAME */
.sucursal-map iframe {

  width: 100%;
  height: 100%;

  border: none;
}

/* =========================
   SUCURSAL RESPONSIVE
========================= */

@media (max-width: 992px) {

  .sucursal-wrapper {

    flex-direction: column;

    gap: 35px;
  }

  .sucursal-content {
    max-width: 100%;
  }

  .sucursal-content h2 {
    font-size: 28px;
  }

  .sucursal-map {
    width: 100%;
    height: 380px;
  }

}

/* MOBILE */
@media (max-width: 768px) {

  .sucursal {
    padding: 50px 0;
  }

  .sucursal-content h2 {

    font-size: 24px;

    margin-bottom: 14px;
  }

  .sucursal-description {

    font-size: 13px;

    margin-bottom: 24px;
  }

  /* ITEM */
  .sucursal-item {

    gap: 14px;

    margin-bottom: 18px;
  }

  /* ICONO */
  .sucursal-icon {

    min-width: 50px;
    height: 50px;

    font-size: 20px;
  }

  /* LINEA */
  .sucursal-icon::after {

    height: 30px;

    top: 10px;
  }

  /* TITULO */
  .sucursal-info h3 {

    font-size: 16px;
  }

  /* TEXTO */
  .sucursal-info p {

    font-size: 13px;
    line-height: 1.6;
  }

  /* BOX */
  .sucursal-box {

    padding: 16px;

    gap: 14px;

    flex-direction: column;
    align-items: flex-start;
  }

  .sucursal-box-icon {

    min-width: 50px;
    height: 50px;

    font-size: 20px;
  }

  .sucursal-box-content h4 {

    font-size: 15px;
  }

  .sucursal-box-content p {

    font-size: 12px;
  }

  .sucursal-arrow {

    width: 40px;
    height: 40px;

    font-size: 14px;

    margin-left: 0;
  }

  /* MAPA */
  .sucursal-map {

    height: 280px;

    border-radius: 16px;
  }

}

/* =========================
   FOOTER
========================= */

.footer {

  padding: 5px 0 35px;

  background:
    linear-gradient(
      135deg,
      #03152B 0%,
      #0B2C4D 100%
    );

  overflow: hidden;
}

/* LOGO */
.footer-logo {

  display: flex;
  justify-content: center;

  margin-bottom: 0px;
}

/* IMG */
.footer-logo img {

  width: 240px;
  max-width: 100%;
}

/* LINEA */
.footer-line {

  width: 100%;
  height: 1px;

  background: rgba(255,255,255,0.12);

  margin-bottom: 28px;
}

/* BOTTOM */
.footer-bottom {

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 20px;
}

/* REDES */
.footer-social {

  position: absolute;

  left: 0;

  display: flex;
  align-items: center;

  gap: 14px;
}

/* LINKS */
.footer-social a {

  width: 45px;
  height: 45px;

  border-radius: 50%;

  border: 1px solid rgba(47,164,255,0.35);

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;

  font-size: 22px;

  text-decoration: none;

  transition: 0.3s ease;
}

/* HOVER */
.footer-social a:hover {

  background: #2FA4FF;

  transform: translateY(-3px);
}

/* COPYRIGHT */
.footer-bottom p {

  color: rgba(255,255,255,0.85);

  font-size: 13px;

  text-align: center;

  flex: 1;
}

/* =========================
   FOOTER RESPONSIVE
========================= */

@media (max-width: 768px) {

  .footer {

    padding: 40px 0 28px;
  }

  /* LOGO */
  .footer-logo {

    margin-bottom: 22px;
  }

  /* IMG */
  .footer-logo img {

    width: 180px;
  }

  /* LINEA */
  .footer-line {

    margin-bottom: 22px;
  }

  /* BOTTOM */
  .footer-bottom {

    flex-direction: column;

    gap: 18px;
  }

  /* REDES */
  .footer-social {

    gap: 12px;
  }

  /* ICONOS */
  .footer-social a {

    width: 46px;
    height: 46px;

    font-size: 18px;
  }

  /* COPYRIGHT */
  .footer-bottom p {

    font-size: 13px;
    line-height: 1.6;
  }

}

/* =========================
   WHATSAPP FLOAT
========================= */

.whatsapp-float {

  position: fixed;

  right: 22px;
  bottom: 22px;

  width: 62px;
  height: 62px;

  border-radius: 50%;

  background: #25D366;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;

  font-size: 34px;

  text-decoration: none;

  box-shadow: 0 10px 30px rgba(0,0,0,0.18);

  z-index: 9999;

  transition: 0.3s ease;
}

/* HOVER */
.whatsapp-float:hover {

  transform: translateY(-4px) scale(1.05);

  box-shadow: 0 14px 35px rgba(0,0,0,0.22);
}

@media (max-width: 768px) {

  .whatsapp-float {

    width: 56px;
    height: 56px;

    right: 16px;
    bottom: 16px;

    font-size: 30px;
  }
}

@media (max-width: 768px) {

  .footer-bottom {

    flex-direction: column;

    gap: 18px;
  }

  .footer-social {

    position: static;

    justify-content: center;
  }

}

/* MENU MOBILE */



/* LOGO */

.mobile-menu-logo {

  margin-top: auto;

  padding-top: 60px;

  display: flex;
  justify-content: center;
}

/* IMG */

.mobile-menu-logo img {

  width: 170px;

  opacity: 0.95;
}

/* OFFSET SECCIONES */

#servicios,
#nosotros,
#porque,
#contacto {

  scroll-margin-top: 110px;
}

@media (max-width: 768px) {

  #servicios,
  #nosotros,
  #porque,
  #contacto
   {

    scroll-margin-top: 85px;
  }

}