.elementor-731 .elementor-element.elementor-element-dd3b8a7{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-731 .elementor-element.elementor-element-6bfc854{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-731 .elementor-element.elementor-element-c65f849{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}:root{--page-title-display:none;}/* Start custom CSS for text-editor, class: .elementor-element-d054c1e *//* CONTENEDOR */
.corporate-container {
  font-family: 'Poppins', Arial, sans-serif;
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

/* SECCIONES */
.section {
  margin: 100px 0;
  position: relative;
}

.section::before {
  content: "";
  width: 60px;
  height: 3px;
  background: #1FC8BE;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

/* TITULOS */
.section-title {
  font-size: 34px;
  color: #245183;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

/* TEXTOS */
.text {
  color: #666;
  line-height: 1.8;
  width: 100%;
  max-width: 1200px;
  margin: 15px auto;
  text-align: justify;
}

/* HERO */
.hero {
  text-align: center;
  margin-bottom: 80px;
}

.hero h1 {
  font-size: 46px;
  color: #245183;
  margin-bottom: 20px;
}

/* BADGE */
.badge {
  display: inline-block;
  background: rgba(36,81,131,0.08);
  color: #245183;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 15px;
}

/* BANNERS */
.banner-img {
  margin: 60px auto;
  border-radius: 22px;
  overflow: hidden;
  max-width: 1200px;
}

.banner-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* GRID */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* TARJETAS */
.card {
  background: #fff;
  padding: 35px 35px 35px 45px;
  border-radius: 16px;
  border: 1px solid #eef2f5;
  position: relative;
  transition: 0.3s;
  text-align: center;
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 4px;
  background: #1FC8BE;
  border-radius: 4px;
}

.card:hover {
  transform: translateY(-4px);
}

/* LISTAS */
.list {
  margin-top: 15px;
  padding-left: 0;
  list-style-position: inside;
}

.list li {
  margin-bottom: 10px;
  color: #555;
}

.list.numbered {
  list-style: decimal;
}

/* TEXTO MUTED */
.muted {
  color: #888;
  font-size: 14px;
  margin-top: 10px;
}

/* VALORES */
.grid-valores {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.valor-card {
  background: #f8fbfb;
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  transition: 0.3s ease;
  border: 1px solid #eef2f5;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.valor-card:hover {
  background: #1FC8BE;
  color: #fff;
  transform: translateY(-5px);
}

.valor-icon {
  font-size: 42px;
  margin-bottom: 15px;
  color: #1FC8BE;
  font-weight: 700;
  line-height: 1;
  transition: 0.3s ease;
}

.valor-card:hover .valor-icon {
  color: #fff;
}

/* MAPA GRANDE */
.banner-img.grande {
  max-width: 1200px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .grid-valores {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .grid-valores {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }
}
/* PANTALLAS GIGANTES */
@media (min-width: 1600px) {
  .container {
    max-width: 1400px;
  }
}

/* LAPTOPS */
@media (max-width: 1366px) {
  body {
    font-size: 15px;
  }
}

/* TABLETS */
@media (max-width: 1024px) {
  .elementor-container {
    padding: 0 15px;
  }

  .flex {
    flex-direction: column;
  }
}

/* MÓVILES GRANDES */
@media (max-width: 767px) {
  h1 {
    font-size: 28px;
  }

  .elementor-column {
    width: 100% !important;
  }
}

/* MÓVILES PEQUEÑOS */
@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .container {
    padding: 0 10px;
  }
}/* End custom CSS */