:root {
  --color-navy: #072C4A;
  --color-navy-dark: #041E34;
  --color-navy-soft: #0A3E65;
  --color-green: #1E7D36;
  --color-green-hover: #239442;
  --color-text: #1F2C37;
  --color-text-soft: #546271;
  --color-muted: #8897A4;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F5F6F7;
  --color-panel: #E1E3E6;
  --color-border: #D8DCE0;
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 4px .sectionrgba(0,0,0,.06);
  --shadow-md: 0 4px 14px -2px rgba(0,0,0,.12);
  --shadow-card: 0 6px 18px -4px rgba(0,0,0,.18);
  --container-max: 1240px;
  --transition: .28s cubic-bezier(.4,.0,.2,1);
  --gradient-hero: linear-gradient(115deg, rgba(7,44,74,.9) 0%, rgba(7,44,74,.55) 55%, rgba(7,44,74,.25) 80%);
  --font-sans: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --step--1: clamp(.78rem, .74rem + .15vw, .85rem);
  --step-0: clamp(.92rem, .86rem + .25vw, 1rem);
  --step-1: clamp(1.05rem, .99rem + .35vw, 1.25rem);
  --step-2: clamp(1.35rem, 1.2rem + .7vw, 1.65rem);
  --step-3: clamp(1.8rem, 1.55rem + 1.3vw, 2.3rem);
  --step-4: clamp(2.2rem, 1.9rem + 1.9vw, 2.9rem); }

*, *::before, *::after {
  box-sizing: border-box; }

html {
  scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.45;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased; }

img {
  max-width: 100%;
  height: auto;
  display: block; }

a {
  color: var(--color-navy);
  text-decoration: none; }
  a:hover {
    text-decoration: underline; }

:focus-visible {
  outline: 2px solid var(--color-green);
  outline-offset: 2px; }

/* === Layout Helpers === */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem); }

.section {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative; }
  .section.narrow {
    padding-block: clamp(2rem, 5vw, 3rem);
    padding-bottom: 70px; }

.section-title {
  text-align: center;
  font-size: 50px;
  font-weight: 500;
  color: #979797;
  margin: 0 0 2.8rem;
  letter-spacing: .5px; }
  @media (max-width: 700px) {
    .section-title {
      font-size: 32px; } }

.mt {
  margin-top: 1.4rem; }

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition: none !important;
    scroll-behavior: auto !important; } }
.btn:hover {
  text-decoration: underline;
  cursor: pointer; }

/* === Buttons === */
.btn {
  --btn-bg: linear-gradient(90deg, #1E7D36 0%, #239442 100%);
  --btn-color: #fff;
  --btn-bg-hover: linear-gradient(90deg, #239442 0%, #1E7D36 100%);
  background: var(--btn-bg);
  color: var(--btn-color);
  font-weight: 600;
  font-size: 1.4rem;
  padding: 1rem 1.35rem;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  line-height: 1.1;
  text-decoration: none;
  box-shadow: 0 4px 14px -2px rgba(30, 125, 54, 0.18);
  transition: var(--transition);
  position: relative;
  height: 100%;
  min-height: 100%;
  max-height: 1000px;
  letter-spacing: .5px;
  font-family: var(--font-sans); }
  .btn:hover, .btn:focus-visible {
    background: var(--btn-bg-hover);
    text-decoration: none;
    box-shadow: 0 6px 18px -4px rgba(30, 125, 54, 0.28);
    transform: translateY(-2px) scale(1.03); }
  .btn.alt {
    --btn-bg: linear-gradient(90deg, #0A3E65 0%, #072C4A 100%);
    --btn-bg-hover: linear-gradient(90deg, #072C4A 0%, #0A3E65 100%); }
  .btn.outline {
    --btn-bg: transparent;
    --btn-color: var(--color-navy);
    border: 2px solid var(--color-green);
    box-shadow: none;
    color: var(--color-navy); }
    .btn.outline:hover {
      background: linear-gradient(90deg, #1E7D36 0%, #239442 100%);
      color: #fff;
      border-color: var(--color-green-hover); }
  .btn.xs {
    padding: .45rem .7rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: var(--radius-xs);
    --btn-bg: #579AD0;
    --btn-bg-hover: #032844;
    box-shadow: none; }

.btn.btn-outline-secondary {
  color: #fff !important; }

/* === Contact === */
.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: flex-start; }
  @media (min-width: 960px) {
    .contact-grid {
      grid-template-columns: 1fr 1.1fr; } }

.contact-info {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; }
  .contact-info p {
    margin: 0 0 1rem;
    max-width: 38ch;
    color: var(--color-text-soft);
    font-size: 2.2rem;
    line-height: 1.2; }

.contact-heading {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: .6rem;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.3;
  color: #1d5079;
  margin: 0 0 1.1rem; }
  @media (max-width: 700px) {
    .contact-heading {
      font-size: 38px; } }

.contact-box {
  background: var(--color-panel);
  border-radius: 26px;
  padding: clamp(1.3rem, 2.5vw, 2rem);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4), var(--shadow-sm);
  overflow: hidden; }

.contact-box form,
.contact-box .wpcf7-form {
  width: 100% !important;
  max-width: 100%;
  min-width: 0;
  display: block; }

.contact-box input,
.contact-box textarea,
.contact-box select {
  width: 100% !important;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  display: block;
  width: 100%; }

form {
  display: grid;
  gap: .9rem;
  position: relative; }

.field {
  display: flex;
  flex-direction: column;
  gap: .3rem; }

label {
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--color-text-soft); }

/*
input,
textarea {
  font: inherit;
  border: 1px solid #bcc4cc;
  border-radius: var(--radius-xs);
  padding: .7rem .8rem;
  background: #fff;
  transition: var(--transition);
  resize: vertical;
  width: 100%;
}
*/
input:focus,
textarea:focus {
  outline: 2px solid var(--color-green);
  outline-offset: 1px;
  border-color: var(--color-green); }

textarea {
  min-height: 100px; }

.wpcf7-form textarea {
  max-height: 150px !important; }

.wpcf7-form input {
  width: 100% !important; }

.contact-form {
  width: 100%;
  max-width: 100%;
  position: relative; }

.edit-tags-php.auto-fold.admin-bar.post-type-proyecto .form-field input[type="email"], .edit-tags-php.auto-fold.admin-bar.post-type-proyecto .form-field input[type="number"], .edit-tags-php.auto-fold.admin-bar.post-type-proyecto .form-field input[type="password"], .edit-tags-php.auto-fold.admin-bar.post-type-proyecto .form-field input[type="search"], .edit-tags-php.auto-fold.admin-bar.post-type-proyecto .form-field input[type="tel"], .edit-tags-php.auto-fold.admin-bar.post-type-proyecto .form-field input[type="text"], .edit-tags-php.auto-fold.admin-bar.post-type-proyecto .form-field input[type="url"], .edit-tags-php.auto-fold.admin-bar.post-type-proyecto .form-field textarea {
  width: auto !important; }
.edit-tags-php.auto-fold.admin-bar.post-type-proyecto .form-field p, .edit-tags-php.auto-fold.admin-bar.post-type-proyecto .form-field select {
  max-width: 60% !important; }

.service-card {
  background: linear-gradient(120deg, #0A3E65 0%, #072C4A 100%);
  color: #fff;
  padding: 1.4rem 1.2rem 1.5rem;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  min-height: 120px;
  box-shadow: 0 6px 18px -4px rgba(7, 44, 74, 0.18);
  isolation: isolate;
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.18s;
  width: 100%;
  align-items: center; }
  .service-card:hover {
    background: linear-gradient(120deg, #072C4A 0%, #0A3E65 100%);
    box-shadow: 0 10px 24px -6px rgba(7, 44, 74, 0.28);
    transform: translateY(-2px) scale(1.03); }
  .service-card::before {
    content: "";
    position: absolute;
    top: -35%;
    right: -25%;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.22), transparent 70%);
    transform: rotate(25deg);
    opacity: .4;
    z-index: 0; }
  .service-card .service-icon {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    display: grid;
    place-items: center;
    z-index: 1; }
  .service-card h3 {
    font-size: 1.35rem;
    line-height: 1.25;
    margin: .15rem 0 0;
    font-weight: 700;
    letter-spacing: .5px; }
    @media (max-width: 700px) {
      .service-card h3 {
        font-size: 1rem; } }

.logos-swiper {
  margin-top: 2.2rem; }
  .logos-swiper .swiper-wrapper {
    align-items: center; }
  .logos-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    opacity: .85;
    transition: opacity .2s; }
    .logos-swiper .swiper-slide:hover {
      opacity: 1; }
  .logos-swiper .logo-demo {
    max-height: 200px;
    object-fit: contain;
    height: 100% x;
    width: auto;
    filter: grayscale(100%) contrast(115%);
    opacity: .8;
    transition: filter .2s, opacity .2s; }
    @media (max-width: 600px) {
      .logos-swiper .logo-demo {
        height: 60px; } }
    .logos-swiper .logo-demo:hover {
      filter: grayscale(0%);
      opacity: 1; }

@media (max-width: 760px) {
  .logos-swiper .swiper-slide {
    height: 48px; }
  .logos-swiper .logo-demo {
    height: 32px; } }
/* === Promo Bar === */
/* === Promo Bar === */
.promo-bar {
  background: var(--color-green);
  color: #fff;
  padding: clamp(1.6rem, 3vw, 2rem) 0; }

.promo-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start; }
  @media (min-width: 700px) {
    .promo-wrap {
      flex-direction: row;
      align-items: center; } }
  @media (max-width: 700px) {
    .promo-wrap {
      text-align: center;
      align-items: center; } }

.promo-box {
  border-radius: 18px;
  box-shadow: 0 4px 18px -4px rgba(30, 125, 54, 0.18);
  padding: 2.2rem 2rem;
  align-items: center;
  gap: 2.2rem; }

.promo-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px -2px rgba(7, 44, 74, 0.12);
  font-size: 2.2rem; }

.promo-text h4 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 .6rem;
  letter-spacing: .5px; }
.promo-text p {
  font-size: 1.05rem;
  max-width: 38ch;
  margin: 0;
  color: #e4ecf2; }

@media (max-width: 600px) {
  .promo-text {
    text-align: center; } }

/* === Top Bar === */
.top-bar {
  background: var(--color-navy-dark);
  color: #E4ECF2;
  font-size: var(--step--1);
  letter-spacing: .25px;
  padding: .4rem 0;
  text-align: center; }

/* === Header / Navigation === */
header.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 80;
  box-shadow: 0 0 0 1px var(--color-border); }

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 80px; }

.brand {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.05rem;
  gap: .65rem;
  color: var(--color-navy);
  white-space: nowrap; }

.nav-menu {
  position: relative;
  list-style: none;
  display: flex;
  gap: 2.2rem;
  margin: 0 0 0 auto;
  padding: 0; }
  .nav-menu .sub-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 290px;
    background: #fff;
    box-shadow: 0 8px 32px 0 rgba(7, 44, 74, 0.13);
    border-radius: 0px;
    padding: .2rem 0;
    margin: 0;
    z-index: 100;
    flex-direction: column;
    gap: 0;
    list-style: none; }
    .nav-menu .sub-menu a {
      color: var(--color-navy);
      font-size: 1.08rem;
      padding: .45rem 1.1rem;
      border-radius: 6px;
      transition: background .16s, color .16s;
      white-space: normal;
      line-height: 1.25;
      margin: 0;
      width: 100%;
      border: none;
      border-radius: 0; }
      .nav-menu .sub-menu a:hover, .nav-menu .sub-menu a:focus-visible {
        background: var(--color-green);
        color: #fff; }
    .nav-menu .sub-menu li {
      margin: 0;
      padding: 0; }
  .nav-menu .menu-item-has-children {
    position: relative; }
    .nav-menu .menu-item-has-children:hover > .sub-menu, .nav-menu .menu-item-has-children:focus-within > .sub-menu {
      display: flex; }
    .nav-menu .menu-item-has-children > a::after {
      display: none; }
  .nav-menu a {
    font-weight: 500;
    position: relative;
    padding: .3rem 0;
    display: inline-block; }
    .nav-menu a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: var(--color-green);
      transition: var(--transition);
      border-radius: 2px; }
    .nav-menu a:hover::after, .nav-menu a:focus-visible::after {
      width: 100%; }
    .nav-menu a:hover {
      text-decoration: none; }

.nav-toggle {
  display: none;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: .5rem;
  margin-left: auto; }
  .nav-toggle span {
    width: 26px;
    height: 3px;
    border-radius: 3px;
    background: var(--color-navy);
    display: block;
    position: relative;
    transition: var(--transition); }
    .nav-toggle span::before, .nav-toggle span::after {
      content: "";
      position: absolute;
      left: 0;
      width: 26px;
      height: 3px;
      background: inherit;
      border-radius: inherit;
      transition: var(--transition); }
    .nav-toggle span::before {
      top: -8px; }
    .nav-toggle span::after {
      top: 8px; }

.nav--mobile-open .nav-toggle span {
  background: transparent; }
  .nav--mobile-open .nav-toggle span::before {
    top: 0;
    transform: rotate(45deg); }
  .nav--mobile-open .nav-toggle span::after {
    top: 0;
    transform: rotate(-45deg); }
.nav--mobile-open .nav-menu {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto; }

@media (max-width: 860px) {
  .nav-menu {
    position: fixed;
    inset: 80px 0 0 0;
    flex-direction: column;
    background: rgba(7, 44, 74, 0.97);
    backdrop-filter: saturate(160%) blur(6px);
    padding: 2.5rem clamp(1.2rem, 5vw, 2rem) 4rem;
    transform: translateY(-1.5rem);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition); }
    .nav-menu a {
      color: #fff;
      font-size: 1.2rem; }
    .nav-menu .sub-menu {
      position: static;
      background: none;
      box-shadow: none;
      border-radius: 0;
      padding: 0;
      margin: 0 0 0 1.2rem;
      min-width: 0;
      list-style: none; }
      .nav-menu .sub-menu a {
        color: #fff;
        font-size: 1.08rem;
        padding: .35rem 0 .35rem 1.2rem;
        border-radius: 6px;
        white-space: normal;
        line-height: 1.25;
        margin: 0; }
        .nav-menu .sub-menu a:hover, .nav-menu .sub-menu a:focus-visible {
          background: var(--color-green);
          color: #fff; }
      .nav-menu .sub-menu li {
        margin: 0;
        padding: 0; }
    .nav-menu .nav-menu-close-li {
      position: absolute;
      top: 1.2rem;
      right: 1.5rem;
      margin: 0;
      padding: 0;
      z-index: 10;
      list-style: none;
      display: block; }
    .nav-menu .nav-menu-close {
      background: none;
      border: none;
      color: #fff;
      font-size: 2.6rem;
      font-weight: 700;
      line-height: 1;
      cursor: pointer;
      padding: 0.2rem 0.6rem;
      border-radius: 8px;
      transition: background .18s, color .18s, box-shadow .18s;
      box-shadow: 0 2px 12px 0 rgba(7, 44, 74, 0.18);
      opacity: 0.92; }
    .nav-menu .nav-menu-close:hover, .nav-menu .nav-menu-close:focus-visible {
      background: #fff;
      color: #072C4A;
      opacity: 1;
      outline: 2px solid var(--color-green);
      outline-offset: 2px; }

  .nav-toggle {
    display: block; } }
.politica-wrapper {
  background: #f5f6f7;
  padding-bottom: 4.5rem;
  padding-top: 3.5rem; }

.politica-hero {
  background: #fff;
  padding: 4rem 0 3rem 0;
  border-bottom: 1px solid #e3eaf2;
  margin-bottom: 2.5rem; }

.politica-header {
  text-align: left;
  margin-bottom: 2.8rem; }

.politica-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0A3E65;
  margin-bottom: 1.7rem;
  line-height: 1.1;
  letter-spacing: -1px;
  text-transform: uppercase; }
  .politica-title span.medio {
    color: #1E7D36;
    font-weight: 700; }
  .politica-title span.seguridad {
    color: #239442;
    font-weight: 700; }

.politica-revision {
  font-size: 1.05rem;
  color: #546271;
  margin-bottom: 1.7rem; }

.politica-intro {
  font-size: 1.15rem;
  color: #0A3E65;
  margin-bottom: 2.2rem;
  font-weight: 600; }

.politica-illustration img {
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 2px 12px #0A3E6522;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem; }

.politica-bandas {
  background: #fff;
  padding: 2.2rem 0 2.2rem 0;
  border-bottom: none;
  margin-bottom: 2.5rem; }

.band-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: 1.7rem;
  min-height: 80px; }
  .band-row--alt {
    background: #f5f6f7; }

.band-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: 1.7rem;
  min-height: 80px; }
  .band-row--alt {
    background: #f5f6f7; }

.band-row > .band-label,
.band-row > .band-text {
  display: flex;
  align-items: center;
  min-height: 120px; }

.band-label {
  font-weight: 700;
  color: #fff;
  background: #1E7D36;
  min-width: 220px;
  max-width: 260px;
  padding: 1.6rem 2.7rem;
  font-size: 1.3rem;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0; }

.band-row--alt .band-label {
  background: #239442; }

.band-text {
  color: #1F2C37;
  background: #e3eaf2;
  font-size: 1.15rem;
  flex: 1;
  padding: 1.6rem 2.7rem;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  display: flex;
  align-items: center;
  font-weight: 500; }

.politica-objetivos {
  background: #f5f6f7;
  padding: 3.2rem 0 2.7rem 0; }

.politica-lista {
  list-style: none;
  color: #1F2C37;
  font-size: 1.13rem;
  margin-bottom: 2.7rem;
  padding-left: 0; }

.politica-lista li {
  margin-bottom: 1.5rem;
  color: #1F2C37;
  padding-left: 2.7em;
  position: relative;
  font-size: 1.13rem;
  line-height: 1.8; }

.politica-lista li::before {
  content: '';
  position: absolute;
  left: 0.1em;
  top: 1.1em;
  width: 1.2em;
  height: 1.2em;
  background: #1E7D36;
  border-radius: 50%;
  display: inline-block; }

.politica-responsabilidad {
  color: #0A3E65;
  font-size: 1.13rem;
  font-weight: 700;
  margin-top: 2.7rem;
  margin-bottom: 2.7rem; }

.politica-firma {
  text-align: right;
  margin-top: 4rem;
  color: #239442;
  font-weight: 700;
  font-size: 1.13rem; }

.firma-cargo {
  color: #1E7D36;
  font-size: 1.05rem;
  font-weight: 700; }

@media (max-width: 900px) {
  .politica-wrapper {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem; }

  .politica-hero {
    padding: 1.5rem 0 1.2rem 0;
    margin-bottom: 1.2rem; }

  .band-row {
    flex-direction: column;
    min-height: unset;
    margin-bottom: 0.7rem; }

  .band-label, .band-text {
    border-radius: 0 !important;
    max-width: 100%;
    min-width: 0;
    padding: 1rem 1rem;
    font-size: 1rem; }

  .politica-header {
    text-align: center;
    margin-bottom: 1.2rem; }

  .politica-objetivos {
    padding: 1.2rem 0 1.2rem 0; }

  .politica-lista {
    margin-bottom: 1.2rem; }

  .politica-lista li {
    margin-bottom: 0.7rem;
    padding-left: 2em; }

  .politica-firma {
    margin-top: 1.2rem; } }
@media (max-width: 700px) {
  .politica-hero, .politica-bandas, .politica-objetivos {
    padding: 0.5rem 0; }

  .politica-title {
    font-size: 0.95rem;
    margin-bottom: 0.5rem; }

  .band-label, .band-text {
    font-size: 0.9rem;
    padding: 0.4rem 0.4rem; }

  .politica-lista li {
    font-size: 0.9rem;
    margin-bottom: 0.4rem; }

  .politica-header {
    margin-bottom: 0.5rem; }

  .politica-firma {
    font-size: 0.9rem;
    margin-top: 0.5rem; } }
/* === Footer === */
footer.site-footer {
  background: var(--color-bg-alt);
  margin-top: 4rem;
  font-size: .78rem;
  position: relative; }

.footer-main {
  padding-top: 3.2rem;
  padding-bottom: 3.2rem; }

.footer-col h4 {
  margin: 0 0 .9rem;
  font-size: .8rem;
  letter-spacing: .7px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-navy); }
.footer-col p,
.footer-col li,
.footer-col a {
  color: var(--color-text-soft);
  line-height: 1.4; }
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .4rem; }

.socials {
  display: flex;
  gap: .55rem; }
  .socials a {
    --size: 32px;
    width: var(--size);
    height: var(--size);
    background: var(--color-navy-dark);
    color: #fff;
    display: grid;
    place-items: center;
    border-radius: var(--radius-xs);
    font-size: .8rem;
    transition: var(--transition); }
    .socials a:hover {
      background: var(--color-green); }

.foot-bottom {
  background: var(--color-green);
  height: 7px;
  width: 100%; }

/* === Hero === */
.hero {
  position: relative;
  min-height: 360px;
  height: 68vh;
  max-height: 1000px;
  display: flex;
  align-items: stretch;
  color: #fff;
  overflow: hidden;
  background: #0b2d48; }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gradient-hero), url("../images/fotos/un-electricista-masculino-en-mono-se-centro-en-el-trabajo-en-la-central-electrica-con-fusibles-usando-una-tableta.jpg") center/cover no-repeat;
    filter: brightness(0.95);
    z-index: 0; }
  .hero .hero-inner {
    position: relative;
    z-index: 1;
    width: 100%; }
  .hero h1, .hero .hero-title {
    font-size: 60px;
    line-height: 1.3;
    max-width: 18ch;
    margin: 0 0 1.2rem;
    font-weight: 700;
    letter-spacing: .5px; }
    @media (max-width: 700px) {
      .hero h1, .hero .hero-title {
        font-size: 36px;
        max-width: 100%; } }

.hero-relative {
  position: relative; }

.hero-swiper-relative {
  position: relative; }
  .hero-swiper-relative .swiper-pagination {
    display: none !important; }
  .hero-swiper-relative .swiper-button-prev,
  .hero-swiper-relative .swiper-button-next {
    color: #fff !important;
    background: rgba(0, 0, 0, 0.32);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    border: none;
    transition: background 0.18s, color 0.18s;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.97;
    cursor: pointer;
    padding: 0; }
  .hero-swiper-relative .swiper-button-prev:hover,
  .hero-swiper-relative .swiper-button-next:hover {
    background: #fff;
    color: #0b2d48 !important;
    opacity: 1; }
  .hero-swiper-relative .swiper-button-prev:after,
  .hero-swiper-relative .swiper-button-next:after {
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%; }

.section-no-top-space {
  padding-top: 0 !important;
  margin-top: 0 !important; }

.why-text-home {
  max-width: 520px;
  margin-left: 0;
  margin-right: auto;
  padding: 2.5rem 0;
  color: #1F2C37; }

.why-title-home {
  color: #1F2C37; }

.why-desc-home {
  color: #546271; }

.why-actions-home {
  margin-top: 1.4rem; }

.hero-bg-absolute {
  position: absolute;
  inset: 0;
  z-index: 0; }

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: brightness(0.95);
  opacity: .7;
  display: block; }

.hero-inner {
  position: relative;
  z-index: 1; }

.services-grid {
  display: flex;
  justify-content: center; }

.service-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 1.1rem; }

.service-icon-img {
  height: 56px;
  width: auto;
  max-width: 80px;
  display: block; }

.service-title {
  font-size: 1.35rem;
  line-height: 1.25;
  margin: .15rem 0 0;
  font-weight: 700;
  letter-spacing: .5px; }

.promo-wrap {
  border-radius: 18px;
  box-shadow: 0 4px 18px -4px rgba(30, 125, 54, 0.18);
  padding: 2.2rem 2rem;
  display: flex;
  align-items: center;
  gap: 2.2rem; }

.promo-icon {
  background: rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px -2px rgba(7, 44, 74, 0.12); }

.promo-icon i {
  font-size: 2.8rem;
  color: #fff; }

.promo-text {
  flex: 1; }

.promo-text h4 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 .6rem;
  letter-spacing: .5px; }

.promo-text p {
  font-size: 1.15rem;
  color: #e4ecf2;
  margin: 0;
  max-width: 38ch; }

.promo-actions {
  margin-left: 2rem; }

.why-full-bg {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 480px;
  overflow: hidden;
  padding-top: 0; }

.why-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0; }

.why-bg-overlay {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: rgba(255, 255, 255, 0.82);
  z-index: 1; }

.why-container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  min-height: 480px; }

@media (max-width: 900px) {
  .why-full-bg {
    flex-direction: column;
    min-height: unset;
    width: 100%;
    left: 0;
    margin-left: 0;
    margin-right: 0;
    display: flex; }

  .why-bg-img {
    position: static;
    width: 100vw;
    height: 220px;
    display: block;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    margin-bottom: 0.5rem; }

  .why-bg-overlay {
    position: absolute;
    width: 100vw;
    height: auto;
    min-height: 220px;
    background: transparent; }

  .why-container {
    min-height: unset;
    padding: 0 0.5rem;
    justify-content: flex-start; }

  .why-text-home {
    padding: 1.2rem 0 1.2rem 0;
    margin: 0 auto;
    text-align: left;
    background: transparent; } }
.section-experiencia {
  padding-top: 0; }

.experiencia-header {
  text-align: center;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  padding: 2rem 1.5rem; }

.experiencia-title {
  font-size: 3.1rem;
  font-weight: 600;
  color: #3A5A7A;
  margin-bottom: 1.2rem; }

.experiencia-desc {
  font-size: 2rem;
  color: #546271; }
  @media (max-width: 700px) {
    .experiencia-desc {
      font-size: 1.2rem; } }

.section-kpi {
  background: linear-gradient(90deg, #1E7D36 0%, #239442 100%);
  color: #fff;
  padding: 2.5rem 0 2.2rem 0;
  box-shadow: 0 2px 12px 0 rgba(30, 125, 54, 0.1); }

.kpi-grid {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
  background: url("../images/fotos/bg-nosotros-kpi.png") right center/contain no-repeat; }
  @media (max-width: 900px) {
    .kpi-grid {
      gap: 1.2rem; } }
  @media (max-width: 700px) {
    .kpi-grid {
      flex-direction: column;
      gap: 1.2rem;
      background: none;
      align-items: stretch; } }

.kpi-item {
  text-align: center;
  flex: 1;
  min-width: 120px; }

.kpi-num {
  font-size: 5.3rem;
  font-weight: 700;
  text-shadow: 0 2px 8px #23944244;
  line-height: 1.1; }

.kpi-label {
  font-size: 2.5rem;
  font-weight: bold; }

.section-sede {
  background: #f5f6f7;
  padding: 2.5rem 0; }

.sede-grid {
  display: flex;
  align-items: center;
  gap: 2.5rem; }
  @media (max-width: 900px) {
    .sede-grid {
      gap: 1.2rem; } }
  @media (max-width: 700px) {
    .sede-grid {
      flex-direction: column;
      gap: 1.2rem;
      align-items: stretch; } }

.sede-media {
  flex: 1;
  min-width: 220px; }

.img-sede {
  border-radius: 15px;
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  box-shadow: 0 2px 12px #3A5A7A22; }
  @media (max-width: 700px) {
    .img-sede {
      max-width: 100%;
      height: auto; } }

.sede-text {
  flex: 2;
  border-radius: 14px;
  padding: 1.5rem 2rem; }
  @media (max-width: 700px) {
    .sede-text {
      padding: 1rem 0.7rem; } }

.sede-text h3 {
  color: #3A5A7A;
  font-size: 3rem;
  font-weight: 700; }

.sede-text p {
  color: #546271;
  font-size: 1.5rem; }
  @media (max-width: 700px) {
    .sede-text p {
      font-size: 1.2rem; } }

.about-hero.bg-nosotros-hero {
  background: #0A3E65;
  color: #fff;
  padding: 3.5rem 0 2.5rem 0; }

.about-hero-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  backdrop-filter: blur(2px);
  background: rgba(10, 62, 101, 0.72);
  border-radius: 18px;
  padding: 2rem 2.5rem; }
  @media (max-width: 700px) {
    .about-hero-inner {
      flex-direction: column;
      gap: 1.2rem;
      padding: 1.2rem 1rem;
      text-align: center; } }

.about-hero-icon {
  font-size: 4.2rem; }

.about-hero-title {
  font-size: 2.7rem;
  font-weight: 800;
  margin: 0 0 .5rem 0;
  letter-spacing: -1px; }

.about-hero-desc {
  font-size: 1.25rem;
  line-height: 1.5;
  margin: 0;
  opacity: .95; }

.section-valores {
  background: linear-gradient(120deg, #f5f6f7 60%, #e3eaf2 100%); }

.valores-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto; }

.valores-title {
  font-size: 3.4rem;
  font-weight: 500;
  color: #0A3E65;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 8px #e3eaf2; }

.valores-desc {
  font-size: 1.5rem;
  color: #546271; }

.mv-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(10, 62, 101, 0.13);
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: none;
  overflow: hidden;
  max-width: 525px;
  margin: 0 auto; }

.mv-card .btn {
  background: linear-gradient(90deg, #1E7D36 0%, #239442 100%);
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 4px 14px -2px rgba(30, 125, 54, 0.18);
  transition: background .2s, box-shadow .2s, transform .2s; }

.mv-card .btn:hover {
  background: linear-gradient(90deg, #239442 0%, #1E7D36 100%);
  box-shadow: 0 6px 18px -4px rgba(30, 125, 54, 0.28);
  transform: translateY(-2px) scale(1.03); }

.mv-figure {
  width: 100%;
  aspect-ratio: 4/2.3;
  overflow: hidden;
  background: none;
  margin: 0;
  padding: 0; }

.mv-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  display: block;
  box-shadow: none;
  margin: 0; }

.mv-body {
  padding: 1.2rem 1rem;
  text-align: center; }

.mv-title {
  color: #0A3E65;
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: .4rem;
  text-align: center;
  line-height: 1.1;
  letter-spacing: .2px; }

.mv-desc {
  color: #546271;
  font-size: 1rem;
  font-weight: 400;
  max-width: 320px;
  text-align: center;
  line-height: 1.5;
  margin: 0 auto; }

.img-valores {
  border-radius: 12px;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 2px 8px #e3eaf2; }

.recent-projects {
  background: var(--color-navy);
  color: #fff; }
  .recent-projects .section-title {
    color: #fff; }

.recent-projects {
  margin-top: 3.5rem;
  margin-bottom: 2.5rem; }

.recent-projects-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #072C4A;
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: .5px; }

.recent-projects-list {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  margin: 0 auto;
  padding: 0; }

.recent-project-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px -4px rgba(7, 44, 74, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .18s, transform .18s;
  position: relative;
  min-height: 320px; }

.recent-project-card:hover {
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.18);
  transform: translateY(-2px) scale(1.03); }

.recent-project-thumb {
  width: 100%;
  aspect-ratio: 4/2.3;
  overflow: hidden;
  background: #e3eaf2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0; }

.recent-project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0; }

.recent-project-body {
  padding: 1.1rem 1rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1; }

.recent-project-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 .6rem;
  color: #072C4A; }

.recent-project-excerpt {
  color: #546271;
  font-size: 1rem;
  margin-bottom: 1rem; }

.recent-project-card .btn {
  background: linear-gradient(90deg, #1E7D36 0%, #239442 100%);
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 4px 14px -2px rgba(30, 125, 54, 0.18);
  transition: background .2s, box-shadow .2s, transform .2s;
  margin-top: auto;
  align-self: flex-start; }

.recent-project-card .btn:hover {
  background: linear-gradient(90deg, #239442 0%, #1E7D36 100%);
  box-shadow: 0 6px 18px -4px rgba(30, 125, 54, 0.28);
  transform: translateY(-2px) scale(1.03); }

.projects-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  margin-top: 2.5rem; }

.project-card, .project-link {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px -4px rgba(7, 44, 74, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .18s, transform .18s;
  position: relative;
  min-height: 340px;
  max-width: 420px;
  margin: 0 auto 2rem auto; }

.project-card:hover, .project-link:hover {
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.18);
  transform: translateY(-2px) scale(1.03); }

.project-thumb, .proyecto-thumb {
  width: 100%;
  aspect-ratio: 4/2.3;
  overflow: hidden;
  background: #e3eaf2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0; }

.project-thumb img, .proyecto-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0; }

.project-body {
  padding: 1.2rem 1.1rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1; }

.project-title, .proyecto-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 .7rem;
  color: #072C4A; }

.project-cats, .proyecto-cats {
  margin-bottom: .7rem; }

.project-cat, .proyecto-cat {
  display: inline-block;
  background: #e3eaf2;
  color: #0A3E65;
  font-size: .95rem;
  font-weight: 600;
  border-radius: 8px;
  padding: .2rem .8rem;
  margin-right: .5rem;
  margin-bottom: .2rem; }

.project-task {
  margin-bottom: .7rem; }

.task-label {
  display: inline-block;
  background: #e3eaf2;
  color: #0A3E65;
  font-size: .95rem;
  font-weight: 600;
  border-radius: 8px;
  padding: .2rem .8rem;
  margin-right: .5rem;
  margin-bottom: .2rem; }

.project-excerpt {
  color: #546271;
  font-size: 1.05rem;
  margin-bottom: 1rem; }

.projects-grid {
  display: grid;
  gap: 1.6rem; }
  @media (min-width: 700px) {
    .projects-grid {
      grid-template-columns: repeat(3, 1fr); } }

.project-card {
  background: var(--color-navy-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.18), 0 1.5px 0 0 #1de9b6;
  display: flex;
  flex-direction: column;
  position: relative;
  border: none;
  transition: transform 0.18s cubic-bezier(0.4, 2, 0.3, 1), box-shadow 0.18s;
  min-height: 370px;
  border-bottom: 6px solid #1de9b6;
  margin-bottom: .5rem; }

.project-card figure {
  margin: 0;
  aspect-ratio: 4/2.3;
  overflow: hidden;
  position: relative;
  background: linear-gradient(120deg, #0d344f 60%, #1de9b6 100%);
  display: flex;
  align-items: center;
  justify-content: center; }

.project-card img {
  width: 90%;
  height: 90%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.12);
  transition: transform .9s ease; }

.project-card:hover img {
  transform: scale(1.09); }

.project-body {
  padding: 1.2rem 1.1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  align-items: flex-start;
  position: relative; }

.project-body h3 {
  margin: 0 0 .2rem 0;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: .5px;
  color: #1de9b6;
  min-height: 65px; }

.project-body p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #eaf7fa;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  min-height: 90px; }
  @media (max-width: 700px) {
    .project-body p {
      -webkit-line-clamp: 3;
      min-height: 70px; } }

.project-actions {
  margin-top: .25rem; }

.task-label {
  display: inline-block;
  background: #e3eaf2;
  color: #0A3E65;
  font-size: .95rem;
  font-weight: 600;
  border-radius: 8px;
  padding: .2rem .8rem;
  margin-right: .5rem;
  margin-bottom: .2rem; }

.project-excerpt {
  color: #546271;
  font-size: 1.05rem; }

.proyecto-content {
  margin-top: 1.5rem;
  color: #546271;
  font-size: 1.13rem; }

.page-template-template-proyectos {
  background-color: #072c4a; }

.no-projects-msg {
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  padding: 2rem 0; }

/* === MercadoLibre Style Products === */
.ml-products-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  margin-top: 2.5rem; }

.ml-product-card {
  max-width: 100%;
  min-width: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(7, 44, 74, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .18s, transform .18s;
  border: 1px solid #e3eaf2;
  position: relative; }

.ml-product-card:hover {
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.18);
  transform: translateY(-2px) scale(1.03); }

.ml-product-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%; }

.ml-product-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: #e3eaf2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; }

.ml-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.ml-product-body {
  padding: 1rem 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .5rem; }

.ml-product-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: #072C4A;
  margin: 0 0 .2rem 0;
  min-height: 48px; }

.ml-product-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1de9b6;
  margin-bottom: .4rem; }

.ml-product-actions {
  margin-top: .5rem; }

.ml-product-btn {
  display: inline-block;
  background: linear-gradient(90deg, #1E7D36 0%, #239442 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: .45rem 1.1rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(30, 125, 54, 0.12);
  transition: background .18s, color .18s;
  cursor: pointer; }

.ml-product-btn:hover {
  background: linear-gradient(90deg, #239442 0%, #1E7D36 100%); }

.ml-product-excerpt {
  color: #444;
  font-size: 1rem;
  margin: 0.3rem 0 0.5rem 0;
  min-height: 2.5em;
  line-height: 1.4;
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; }

/* === Single Post Template Styles === */
.single-post-main {
  background: #f7fafd;
  padding: 3.5rem 0 2.5rem 0;
  min-height: 70vh; }

.single-post-article {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px -8px rgba(7, 44, 74, 0.13);
  max-width: 1200px;
  margin: 0 auto 2.5rem auto;
  padding: 2.5rem 2.2rem 2rem 2.2rem;
  position: relative; }

.single-post-header {
  text-align: center;
  margin-bottom: 2.2rem; }

.single-post-thumbnail img {
  border-radius: 12px;
  max-height: 340px;
  object-fit: cover;
  width: 100%;
  margin-bottom: 1.2rem; }

.single-post-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--color-navy, #072C4A);
  margin-bottom: .7rem; }

.single-post-meta {
  color: #7a8ca3;
  font-size: .98rem;
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-bottom: 1.2rem; }

.single-post-meta i {
  margin-right: .4em; }

.single-post-content {
  font-size: 1.13rem;
  color: #2a2a2a;
  line-height: 1.7;
  margin-bottom: 2.2rem; }

.single-post-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e4ecf2;
  padding-top: 1.2rem;
  margin-top: 1.2rem;
  gap: 1.2rem; }

.single-post-tags {
  color: #239442;
  font-size: .98rem; }

.single-post-share {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: 1.1rem; }

.single-post-share a {
  color: #fff;
  background: #239442;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  transition: background .2s; }

.single-post-share a:hover {
  background: #072C4A; }

.single-post-nav {
  display: flex;
  justify-content: space-between;
  max-width: 720px;
  margin: 0 auto 2.5rem auto;
  gap: 1.2rem; }

.single-post-prev, .single-post-next {
  flex: 1;
  text-align: center;
  font-size: 1rem; }

.single-post-prev a, .single-post-next a {
  color: #239442;
  text-decoration: none;
  font-weight: 600;
  transition: color .2s; }

.single-post-prev a:hover, .single-post-next a:hover {
  color: #072C4A; }

.single-post-comments {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px -4px rgba(7, 44, 74, 0.08);
  padding: 2rem 2rem 1.2rem 2rem; }

@media (max-width: 900px) {
  .single-post-article, .single-post-comments, .single-post-nav {
    max-width: 98vw;
    padding-left: 1rem;
    padding-right: 1rem; } }
.wsp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 99999;
  background: #25D366;
  /* WhatsApp green */
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px -4px rgba(37, 209, 102, 0.18);
  font-size: 2.3rem;
  transition: background .2s, box-shadow .2s, transform .2s;
  border: 0; }

.wsp-float:hover {
  background: #128c7e;
  color: #fff;
  box-shadow: 0 8px 28px -6px rgba(7, 44, 74, 0.28);
  transform: scale(1.07); }

body.taxonomy-servicio .pods-form .pods-field input,
body.taxonomy-servicio .pods-form .pods-field textarea,
body.taxonomy-servicio .pods-form .pods-field select,
body.taxonomy-servicio .form-wrap .pods-field input,
body.taxonomy-servicio .form-wrap .pods-field textarea,
body.taxonomy-servicio .form-wrap .pods-field select,
body.taxonomy-servicio #edittag .pods-field input,
body.taxonomy-servicio #edittag .pods-field textarea,
body.taxonomy-servicio #edittag .pods-field select {
  width: 100%;
  min-width: 320px;
  box-sizing: border-box;
  font-size: 1.7em;
  padding: 3px 8px; }
body.taxonomy-servicio .pods-dfv-container,
body.taxonomy-servicio .pods-field-wrapper,
body.taxonomy-servicio .wp-editor-container,
body.taxonomy-servicio .pods-tinymce-editor-container {
  width: 100%;
  max-width: 763px;
  margin: 0 auto;
  box-sizing: border-box; }
body.taxonomy-servicio iframe[id*="pods-form-ui"] {
  width: 100%;
  max-width: 763px;
  margin: 0 auto;
  display: block; }
body.taxonomy-servicio .pods-field-option .pods-dfv-container {
  max-width: 100%; }

#edittag {
  max-width: 90% !important; }

.pods-field-wrapper {
  max-width: 1500px !important;
  min-width: 800px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important; }

.service-benefits-content {
  font-size: 21px; }

.service-benefits-content ul {
  list-style: none; }

.service-benefits-title {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1.2rem; }

.service-hero-icon img {
  max-width: 100px; }

.service-hero-desc {
  font-size: 1.15rem;
  max-width: 100%;
  line-height: 1.3;
  margin-bottom: 0; }

.swiper-fade .swiper-slide {
  transition-property: opacity;
  display: flex;
  align-items: center; }

/*# sourceMappingURL=main.css.map */
