@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

:root {
  --deepBlack: #0d1221;
  --prussianBlue: #1d2d44;
  --payneGrey: #3e5c76;
  --blueSilverLake: #748CAB;
  --eggShell: #f0ebd8;
  --deepSkyBlue: #008CBA;
  --darkGray: #333333;
  --headerBackground: #0E2954;
  --menuLinkColor: #B4C0D4;
  --heroGradientStart: #001f3f;
  --heroGradientEnd: #003366;
  --heroSubtitleColor: #ADD8E6;
  --highlightYellow: #FFD700;
  --subtituloColor: #E0E0E0;
  --sectionBackground: #1a3a60;
  --mainTextColor: #f0f0f0;
  --secondaryTextColor: #ADD8E6;
  --tertiaryTextColor: #cccccc;
  --imageBorderColor: #008CBA;
  --opinionCardBackground: #0E223D;
  --footerBackground: #0E223D;
  --buttonPrimary: #007bff;
  --buttonPrimaryHover: #0056b3;
  --bubbleBackground: #1d2d44;
  --bubbleBorderHover: #008CBA;
  --legalBgLight: #e6f7f2;
  --legalHeaderColor: #004d40;
  --legalCardBg: #ffffff;
  --legalCardBorder: rgba(0, 77, 64, 0.1);
  --legalCardHoverBg: #f0fff0;
  --legalCardShadow: rgba(0, 0, 0, 0.12);
  --legalCardHoverShadow: rgba(0, 0, 0, 0.18);
  --legalTitleColor: #00564d;
  --legalTitleBorder: rgba(0, 77, 64, 0.1);
  --legalIconColor: #004d40;
  --legalSubtitleColor: #222;
  --legalLinkColor: #007bff;
  --legalLinkHoverColor: #0056b3;
  --legalPdfIconColor: #dc3545;
  --legalTextColor: #555;
  --legalButtonBg: #004d40;
  --legalButtonHoverBg: #00796b;
  --legalButtonShadow: rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'DM Sans', 'Forum', 'Roboto', Arial, sans-serif;
  text-decoration: none;
  border: none;
  outline: none;
  transition: .2s linear;
  color: var(--eggShell);
  font-size: 1rem;
}

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: var(--deepBlack);
  color: var(--eggShell);
  font-size: 1rem
}

header {
  background-color: var(--headerBackground);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1000;
  height: 100px;
}

.logo-izquierdo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-right: 60px;
}

.logo-izquierdo img {
  height: 5rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.logo-mobile {
  display: none;
}

.logo-desktop {
  display: block;
}

.logo-capitt {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  padding: 5px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-capitt img {
  height: 5rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.inicio {
  font-size: 0.7rem;
}

nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: 60px;
}

.menu-opciones {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
}

.menu-opciones li {
  margin-left: 0;
  position: relative;
}

.menu-opciones li a {
  color: var(--menuLinkColor);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 5px 0px;
  display: block;
  transition: color 0.3s ease;
}

.menu-opciones li a:hover {
  color: var(--eggShell);
}

.menu-opciones li a i {
  margin-left: 5px;
  font-size: 0.8rem;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--headerBackground);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  list-style: none;
  padding: 10px 0;
  margin: 0;
  min-width: 220px;
  z-index: 1000;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}

.submenu li {
  margin: 0;
}

.submenu li a {
  color: var(--menuLinkColor);
  padding: 8px 20px;
  display: block;
  white-space: nowrap;
  font-size: 1rem;
}

.submenu li a:hover {
  background-color: var(--prussianBlue);
  color: var(--eggShell);
}

.menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--menuLinkColor);
}

.menu-icon {
  display: none;
  cursor: pointer;
  color: var(--menuLinkColor);
}

.fullscreen-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.fullscreen-menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.fullscreen-menu li {
  margin: 25px 0;
}

.fullscreen-menu a {
  color: var(--eggShell);
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.fullscreen-menu a:hover {
  color: var(--highlightYellow);
}

.menu-close-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 2rem;
  color: var(--eggShell) !important;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 99999;
}

.menu-close-icon:hover {
  color: var(--highlightYellow) !important;
}

.hero {
  background: linear-gradient(to right, var(--heroGradientStart), var(--heroGradientEnd));
  color: var(--eggShell);
  text-align: center;
  padding: 1rem 1rem;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 1;
}

.hero .contenedor {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  background-color: transparent;
}

.titulo_principal {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--highlightYellow);
}

.linea {
  width: 200px;
  height: 1px;
  background-color: var(--eggShell);
  margin: 0px auto 30px auto;
}

.subtitulo {
  font-size: 1.3rem;
  text-align: justify;
  line-height: 1.5;
  color: var(--subtituloColor);
}

.reconocimiento_contenido {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  max-width: 900px;
  width: 100%;
  margin-bottom: 2rem;
}

.reconocimiento_contenido img {
  flex: 0 0 300px;
  order: 1;
  /* Posición original */
  border-radius: 16px;
}

.texto-reconocimiento {
  flex: 1;
  display: flex;
  flex-direction: column;
  order: 2;
  text-align: left;
}

.texto-reconocimiento .titulo-dinamico {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.texto-reconocimiento h4 {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 1rem;
}

.texto-reconocimiento .texto {
  text-align: justify;
  line-height: 1.6;
}

.contenedor_contenido {
  background-color: var(--sectionBackground);
  padding: 0rem 8rem;
  color: var(--mainTextColor);
  margin-bottom: -1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contenedor_contenido .principal {
  max-width: 900px;
  text-align: center;
}

.contenedor_contenido .subtitulo_2 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.contenedor_contenido .menbrete {
  color: var(--secondaryTextColor);
  line-height: 1.6;
  text-align: justify;
  max-width: 900px;
}

.seccion_asesoramiento_burbujas {
  background-color: var(--sectionBackground);
  padding: 40px 20px;
  color: var(--mainTextColor);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.burbujas-contenedor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.burbuja-servicio {
  background-color: var(--bubbleBackground);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid transparent;
}

.burbuja-servicio:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  border-color: var(--bubbleBorderHover);
}

.burbuja-servicio h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.burbuja-servicio p {
  font-size: 1rem;
  color: var(--eggShell);
  text-align: justify;
}

.principios-seccion {
  background-color: var(--sectionBackground);
  text-align: center;
}

.principios-contenedor {
  max-width: 900px;
  margin: 0 auto;
}

.principios-seccion .titulo {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.lista-principios {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  width: 100%;
  padding: 0;
  margin: 0 auto;
}

.lista-principios li {
  background-color: var(--bubbleBackground);
  padding: 25px 15px;
  margin-bottom: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid transparent;
}

.lista-principios li:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  border-color: var(--bubbleBorderHover);
}

.lista-principios li:hover span {
  transform: scale(1.1);
}

.lista-principios li span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--deepSkyBlue);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
  font-size: 1rem;
}

.lista-principios li span i {
  font-size: 1.5rem;
  color: var(--eggShell);
}

.lista-principios h3 {
  font-family: 'Roboto', sans-serif;
  color: var(--eggShell);
  margin-top: 15px;
  margin-bottom: 1rem;
}

.lista-principios p {
  font-size: 0.95rem;
  color: var(--eggShell);
  line-height: 1.6;
  text-align: justify;
}

.contenedor_contenido.contenido {
  background-color: var(--headerBackground);
}

.contenedor_contenido.contenido .menbrete {
  color: var(--eggShell);
}

.logo-expl-compact {
  padding: 3rem 2rem;
  text-align: center;
}

.contenedor_contenido .subtitulo {
  margin-top: 3rem;
  margin-bottom: 3rem;
  font-weight: 700;
  color: var(--eggShell);
  font-size: 1.5rem;
}

.destacar_1 {
  color: var(--secondaryTextColor);
  font-size: 1rem;
}

.logo-title-override {
  font-size: 2.2rem;
  color: var(--highlightYellow);
  margin-bottom: 40px;
  text-align: center;
  border-bottom: 3px solid var(--heroSubtitleColor);
  display: inline-block;
  padding-bottom: 10px;
}

.logo-text-block {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
  padding: 0 15px;
  text-align: left;
}

.logo-display-area {
  flex-basis: 250px;
  flex-shrink: 0;
  padding-top: 0;
  text-align: center;
}

.compact-logo-image {
  background-color: var(--eggShell);
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

.explanation-text-area {
  flex-grow: 1;
  color: var(--tertiaryTextColor);
  line-height: 1.7;
  font-size: 1.3rem;
}

.explanation-text-area p {
  margin-bottom: 20px;
  text-align: justify;
}

.explanation-text-area p strong {
  color: var(--secondaryTextColor);
  font-size: 1.2rem;
  display: block;
  margin-bottom: 5px;
}

.contenedor_footer {
  background-color: var(--footerBackground);
  color: var(--eggShell);
  padding: 40px 20px;
  text-align: center;
  font-size: 0.9rem;
}

.contenedor_footer .titulo_footer {
  font-size: 1.4rem;
  margin-bottom: 15px;
  line-height: 1.4;
  color: var(--eggShell);
}

.contenedor_footer .info_contacto {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.6;
  color: var(--tertiaryTextColor);
}

.contenedor_footer .logo_footer {
  margin-bottom: 20px;
}

.contenedor_footer .logo_footer img {
  max-width: 80px;
  height: auto;
}

.contenedor_footer .linea_footer {
  width: 80%;
  height: 1px;
  background-color: var(--deepSkyBlue);
  margin: 20px auto;
}

.contenedor_footer .copyright {
  font-size: 0.8rem;
  color: var(--deepSkyBlue);
}

@media(min-width: 1025px) {
  header {
    padding: 5px 2% !important;
    /* Optimización de espacio lateral */
    height: 85px !important;
  }

  .logo-izquierdo {
    padding-right: 20px !important;
  }

  nav {
    padding-left: 20px !important;
  }

  .logo-izquierdo img,
  .logo-capitt img {
    height: 3.5rem !important;
    /* Reducción para acomodar zoom */
  }

  .logo-desktop {
    display: block !important;
  }

  .logo-mobile {
    display: none !important;
  }

  .hero {
    padding: 40px 15px !important;
    min-height: 200px !important;
  }

  .menu-opciones {
    gap: 15px !important;
    /* Reducción de gap entre elementos */
  }

  .menu-opciones li a {
    color: var(--menuLinkColor);
    text-decoration: none;
    font-size: 0.75rem;
    padding: 5px 0px;
    display: block;
    transition: color 0.3s ease;
  }

  .hero .contenedor {
    padding: 0 10px;
  }

  .titulo_principal {
    font-size: 1.4rem !important;
    line-height: 1.3;
  }

  .subtitulo {
    font-size: 1rem !important;
    margin-bottom: 0rem;
    line-height: 1.4;
  }

  .subtitulo_2 {
    font-size: 1rem;
    margin: 1.5rem 0 1.5rem 0;
  }

  .texto-reconocimiento .titulo-dinamico {
    font-size: 1.1rem;
  }

  .texto-reconocimiento h4 {
    font-size: 1rem;
  }

  .texto-reconocimiento .texto {
    font-size: 0.95rem;
  }

  .reconocimiento_contenido {
    flex-direction: row;
    text-align: center;
  }

  .reconocimiento_contenido img {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
    margin-bottom: 0px;
  }

  .texto-reconocimiento {
    text-align: center;
  }

  .burbujas-contenedor {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 30px;
  }

  .burbuja-servicio {
    width: auto;
    max-width: 450px;
    flex: 1;
  }

  .burbuja-servicio h2 {
    margin-bottom: 1rem;
  }

  .burbuja-servicio p {
    font-size: 0.95rem;
  }

  .lista-principios {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }

  .lista-principios li {
    width: auto;
    flex: 1;
    max-width: 300px;
  }

  .logo-text-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    text-align: left;
  }

  .logo-display-area {
    flex: 0 0 200px;
    margin-bottom: 0;
  }

  .explanation-text-area {
    flex: 1;
  }

  .explanation-text-area p {
    font-size: 0.95rem;
  }

  .destacar_1 {
    font-size: 0.95rem;
  }

  .contenedor_contenido {
    padding: 2rem 2rem !important;
  }

  .principios-seccion {
    padding: 0 1rem;
  }

  .contenedor_contenido .subtitulo_2 {
    font-size: 1.2rem;
  }

  .contenedor_contenido.contenido .menbrete {
    font-size: 0.95rem;
  }

  .contenedor_footer {
    padding: 30px 15px !important;
  }

  .contenedor_footer .titulo_footer {
    font-size: 1.1rem !important;
  }

  .contenedor_footer .info_contacto {
    font-size: 0.95rem !important;
  }

  .contenedor_footer .logo_footer img {
    max-width: 60px;
  }

  .contenedor_footer .copyright {
    font-size: 0.8rem;
  }
}

@media (max-width: 1150px) {
  nav .menu-opciones {
    display: none !important;
  }

  .menu-icon {
    display: block !important;
  }

  /* Asegurar que el menú responsive funcione desde aquí */
  .fullscreen-menu {
    display: none;
    /* Se activa por JS */
  }
}

@media(max-width: 1024px) {
  header {
    padding: 5px 3% !important;
    height: 85px !important;
  }

  .logo-izquierdo {
    padding-right: 20px !important;
  }

  nav {
    padding-left: 20px !important;
  }

  .logo-izquierdo img,
  .logo-capitt img {
    height: 3.5rem !important;
  }

  .logo-desktop {
    display: none !important;
  }

  .logo-mobile {
    display: block !important;
  }

  nav .menu-opciones {
    display: none !important;
  }

  .fullscreen-menu a {
    font-size: 1.5rem;
  }

  .menu-close-icon {
    top: 15px;
    right: 10px;
    font-size: 3rem;
  }

  .menu-icon {
    display: block !important;
  }

  .hero {
    padding: 40px 15px !important;
    min-height: 300px !important;
  }

  .hero .contenedor {
    padding: 0 10px;
  }

  .titulo_principal {
    font-size: 1.2rem !important;
    line-height: 1.3;
  }

  .subtitulo {
    font-size: 1rem !important;
    margin-bottom: 0rem;
    line-height: 1.4;
  }

  .subtitulo_2 {
    font-size: 1rem;
    margin: 1.5rem 0 1.5rem 0;
  }

  .texto-reconocimiento .titulo-dinamico {
    font-size: 1.1rem;
  }

  .texto-reconocimiento h4 {
    font-size: 1rem;
  }

  .texto-reconocimiento .texto {
    font-size: 0.95rem;
  }

  .reconocimiento_contenido {
    flex-direction: row;
    text-align: center;
  }

  .reconocimiento_contenido img {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
    margin-bottom: 0px;
  }

  .texto-reconocimiento {
    text-align: center;
  }

  .burbujas-contenedor {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 30px;
  }

  .burbuja-servicio {
    width: auto;
    max-width: 450px;
    flex: 1;
  }

  .burbuja-servicio h2 {
    margin-bottom: 1rem;
  }

  .burbuja-servicio p {
    font-size: 0.95rem;
  }

  .lista-principios {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }

  .lista-principios li {
    width: auto;
    flex: 1;
    max-width: 300px;
  }

  .logo-text-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    text-align: left;
  }

  .logo-display-area {
    flex: 0 0 200px;
    margin-bottom: 0;
  }

  .explanation-text-area {
    flex: 1;
  }

  .explanation-text-area p {
    font-size: 0.95rem;
  }

  .destacar_1 {
    font-size: 0.95rem;
  }

  .contenedor_contenido {
    padding: 2rem 2rem !important;
  }

  .principios-seccion {
    padding: 0 1rem;
  }

  .contenedor_contenido .subtitulo_2 {
    font-size: 1.2rem;
  }

  .contenedor_contenido.contenido .menbrete {
    font-size: 0.95rem;
  }

  .contenedor_footer {
    padding: 30px 15px !important;
  }

  .contenedor_footer .titulo_footer {
    font-size: 1.1rem !important;
  }

  .contenedor_footer .info_contacto {
    font-size: 0.95rem !important;
  }

  .contenedor_footer .logo_footer img {
    max-width: 60px;
  }

  .contenedor_footer .copyright {
    font-size: 0.8rem;
  }
}

@media(max-width: 768px) {
  header {
    padding: 5px 3% !important;
    height: 85px !important;
  }

  .logo-izquierdo {
    padding-right: 20px !important;
  }

  nav {
    padding-left: 20px !important;
  }

  .logo-izquierdo img,
  .logo-capitt img {
    height: 3.5rem !important;
  }

  .logo-desktop {
    display: none !important;
  }

  .logo-mobile {
    display: block !important;
  }

  nav .menu-opciones {
    display: none !important;
  }

  .fullscreen-menu a {
    font-size: 1.5rem;
  }

  .menu-close-icon {
    top: 15px;
    right: 10px;
    font-size: 3rem;
  }

  .menu-icon {
    display: block !important;
  }

  .hero {
    padding: 40px 15px !important;
    min-height: 500px !important;
  }

  .hero .contenedor {
    padding: 0 10px;
  }

  .titulo_principal {
    font-size: 1.2rem !important;
    line-height: 1.3;
  }

  .subtitulo {
    font-size: 1rem !important;
    margin-bottom: 0rem;
    line-height: 1.4;
  }

  .reconocimiento_contenido {
    margin-top: 0px;
    flex-direction: column;
    text-align: center;
  }

  .reconocimiento_contenido img {
    flex: 0 0 auto;
    width: 100%;
    max-width: 300px;
    margin-bottom: 0px;
  }

  .texto-reconocimiento {
    text-align: center;
  }

  .burbujas-contenedor {
    flex-direction: column;
    align-items: center;
  }

  .burbuja-servicio {
    width: 100%;
    max-width: 100%;
    flex: none;
  }

  .burbuja-servicio h2 {
    margin-bottom: 1rem;
  }

  .burbuja-servicio p {
    font-size: 0.95rem;
  }

  .lista-principios {
    flex-direction: column;
    align-items: center;
  }

  .lista-principios li {
    width: 100%;
    max-width: 100%;
    flex: none;
  }

  .logo-text-block {
    flex-direction: column;
    text-align: center;
  }

  .logo-display-area {
    margin-bottom: 0rem;
  }

  .explanation-text-area {
    text-align: justify;
    font-size: 1.1rem;
  }

  .contenedor_contenido {
    padding: 2rem 2rem !important;
  }

  .principios-seccion {
    padding: 0 1rem;
  }

  .explanation-text-area p {
    font-size: 0.95rem;
  }

  .destacar_1 {
    font-size: 0.95rem;
  }

  .contenedor_footer {
    padding: 30px 15px !important;
  }

  .contenedor_footer .titulo_footer {
    font-size: 1.1rem !important;
  }

  .contenedor_footer .info_contacto {
    font-size: 0.95rem !important;
  }

  .contenedor_footer .logo_footer img {
    max-width: 60px;
  }

  .contenedor_footer .copyright {
    font-size: 0.8rem;
  }
}

@media(max-width: 480px) {
  header {
    padding: 5px 3% !important;
    height: 85px !important;
  }

  .logo-izquierdo {
    padding-right: 20px !important;
  }

  nav {
    padding-left: 20px !important;
  }

  .logo-izquierdo img,
  .logo-capitt img {
    height: 3.5rem !important;
  }

  .logo-desktop {
    display: none !important;
  }

  .logo-mobile {
    display: block !important;
  }

  nav .menu-opciones {
    display: none !important;
  }

  .fullscreen-menu a {
    font-size: 1.5rem;
  }

  .menu-close-icon {
    top: 15px;
    right: 10px;
    font-size: 3rem;
  }

  .menu-icon {
    display: block !important;
  }

  .hero {
    padding: 40px 15px !important;
    min-height: 500px !important;
  }

  .hero .contenedor {
    padding: 0 10px;
  }

  .titulo_principal {
    font-size: 1.2rem !important;
    line-height: 1.3;
  }

  .subtitulo {
    font-size: 1rem !important;
    margin-bottom: 0rem;
    line-height: 1.4;
  }

  .subtitulo_2 {
    font-size: 1rem;
    margin: 1.5rem 0 1.5rem 0;
  }

  .texto-reconocimiento .titulo-dinamico {
    font-size: 1.1rem;
  }

  .texto-reconocimiento h4 {
    font-size: 1rem;
  }

  .texto-reconocimiento .texto {
    font-size: 0.95rem;
  }

  .reconocimiento_contenido {
    flex-direction: column;
    text-align: center;
  }

  .reconocimiento_contenido img {
    flex: 0 0 auto;
    width: 100%;
    max-width: 250px;
    margin-bottom: 0px;
  }

  .texto-reconocimiento {
    text-align: center;
  }

  .burbujas-contenedor {
    flex-direction: column;
    align-items: center;
  }

  .burbuja-servicio {
    width: 100%;
    max-width: 100%;
    flex: none;
  }

  .burbuja-servicio h2 {
    margin-bottom: 1rem;
  }

  .burbuja-servicio p {
    font-size: 0.95rem;
  }

  .lista-principios {
    flex-direction: column;
    align-items: center;
  }

  .lista-principios li {
    width: 100%;
    max-width: 100%;
    flex: none;
  }

  .logo-text-block {
    flex-direction: column;
    text-align: center;
  }

  .logo-display-area {
    margin-bottom: 0rem;
  }

  .explanation-text-area {
    text-align: justify;
    font-size: 1.1rem;
  }

  .contenedor_contenido {
    padding: 2rem 2rem !important;
  }

  .principios-seccion {
    padding: 0 1rem;
  }

  .contenedor_contenido .subtitulo_2 {
    font-size: 1.2rem;
  }

  .contenedor_contenido.contenido .menbrete {
    font-size: 0.95rem;
  }

  .contenedor_footer {
    padding: 30px 15px !important;
  }

  .contenedor_footer .titulo_footer {
    font-size: 1.1rem !important;
  }

  .contenedor_footer .info_contacto {
    font-size: 0.95rem !important;
  }

  .contenedor_footer .logo_footer img {
    max-width: 60px;
  }

  .contenedor_footer .copyright {
    font-size: 0.8rem;
  }
}