/* ----------------------------- */
/* Variables globales manejables */
/* --icon-size: tamaño de todos los SVG inline */
/* --dash-border-color: color del borde del icono Dashboard */
/* --dash-border-width: grosor del borde del icono Dashboard */
:root {
  --icon-size: 100px;
  --color-btn-solicitar-demo: green;
  --color-btn-solicitar-demo-hover: green;
}

/* ----------------------------- */
/* Load Montserrat font */
@font-face {
  font-family: "Montserrat";
  font-display: swap;
  src: url("./fonts/Montserrat-Regular.woff2") format("woff2"),
    url("./fonts/Montserrat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  font-display: swap;
  src: url("./fonts/Montserrat-Bold.woff2") format("woff2"),
    url("./fonts/Montserrat-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}

body {
  margin: 0;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
}

header {
  background: #0d47a1;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

header img {
  max-width: 300px;
  margin-bottom: 20px;
}

header h1 {
  font-size: 2em;
  margin-bottom: 0.5em;
}

header p {
  font-size: 1.1em;
  max-width: 700px;
  margin: auto;
}
/* Base neutral, institucional, ideal como color madre */
.header-etiquetas-1 {
  background: #6f7072;
  color: white;
}
/* Transmite control, decisión, reglas estrictas */
.header-etiquetas-2 {
  background: #2E2F31;
  color: white;
}
/* Criterio flexible con respaldo, decisiones razonables */
.header-etiquetas-3 {
  background: #5D6D64;
  color: white;
}
/* Tecnología + planificación, visión a futuro */
.header-etiquetas-4 {
  background: #395A73;
  color: white;
}
/* Seriedad documental, estructura clara */
.header-etiquetas-5 {
  background: #46484A;
  color: white;
}
/* Control dinámico, seguimiento visual amigable */
.header-etiquetas-6 {
  background: #8EA5B3;
  color: white;
}
/* Supervisión, visibilidad, accesibilidad total */
.header-etiquetas-7 {
  background: #B5B7BA;
  color: white;
}
/* Visión panorámica, suavidad con autoridad */
.header-etiquetas-8 {
  background: #9FAEA6;
  color: white;
}
/* Gris claro con elegancia ejecutiva */
.header-etiquetas-9 {
  background:#8a8b8d;
  color: white;
}	
/* Gris oscuro serio, ideal para “backoffice” */
.header-etiquetas-10 {
  background:#58595b;
  color: white;
}		
/* Tono medio con firmeza */
.header-etiquetas-11 {
  background:#727375;
  color: white;
}
/* Gris claro con neutralidad estratégica */
.header-etiquetas-12 {
  background:#9c9c9e;
  color: white;
}
/* Gris grafito, moderno y sobrio */
.header-etiquetas-13 {
  background:#4c4d4f;
  color: white;
}
/* Gris cálido, humano, confiable */
.header-etiquetas-14 {
  background:#7f8183;
  color: white;
}
/* Intermedio, para balance visual */
.header-etiquetas-15 {
  background:#666769;
  color: white;
}
/* Casi plateado, muy limpio y técnico */
.header-etiquetas-16 {
  background:#a7a8aa;
  color: white;
}
/* Gris asfalto, para temas más rígidos */
.header-etiquetas-17 {
  background:#5e5f61;
  color: white;
}
/* Gris medio claro, sobrio, versátil, elegante */
.header-etiquetas-17 {
  background:#b4b4b6;
  color: white;
}
/* Gris medio claro, sobrio, versátil, elegante */
.header-etiquetas-18 {
  background:#999a9c;
  color: white;
}




.cta-buttons {
  margin-top: 30px;
}

.cta-buttons a {
  background: #1976d2;
  color: white;
  padding: 12px 24px;
  margin: 0 10px;
  text-decoration: none;
  border-radius: 5px;
}

.cta-buttons-mas-info a {
  background: #1976d2;
  background: white;
  border: 1px solid #1976d2;
  /* Ancho, estilo, color */
  border-radius: 5px;
  color: white;
  color: #1976d2;
  font-weight: bolder;
  margin: 0 10px;
  padding: 9.6px 19.2px;
  text-decoration: none;
  transition: background-color 0.5s ease-in-out;
}

.cta-buttons-mas-info a:hover {
  background: #1976d2;
  color: white;
}

.cta-buttons .btn-solicitar-demo {
  background: rgb(1, 145, 1);
  font-weight: bolder;
  transition: background-color 0.5s ease-in-out;
}

.cta-buttons .btn-solicitar-demo:hover {
  background: green;
}

.cta-buttons .btn-ver-funcionalidades {
  font-weight: bolder;
  transition: background-color 0.5s ease-in-out;
}

.cta-buttons .btn-ver-funcionalidades:hover {
  background: #1665b5;
}

.section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.benefit {
  display: flex;
  flex-direction: column;
  background: white;
  align-items: center;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
}

.benefit:hover {
  transform: scale(1.015);
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.benefit .cta-buttons-mas-info {
  margin-top: auto;
  /* “empuja” este div hasta abajo */
}

.benefit img,
.benefit svg.responsive-icon {
  width: var(--icon-size);
  height: var(--icon-size);
  vertical-align: middle;
  margin-bottom: 15px;
}

.benefit p {
  padding-bottom: 20px;
}

.benefit ul {
  text-align: left;
  list-style-type: none;
}

.benefit ul li {
  margin-bottom: 1rem;
}

.benefit ul li span {
  color: #0D47A1;
  font-weight: bold;
}

.testimonial {
  background: #fff3e0;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  font-style: italic;
}

/* Logo SVG inline */
.logo-iiifilomena {
  padding: 15px;
  background-color: white;
  border-radius: 10px;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  padding: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Panel Ejecutivo de Cuentas */
.panel-ejecutivo {
  background-color: #f1f9ff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 40px 20px;
}

.panel-ejecutivo-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.panel-ejecutivo-image img {
  max-width: 240px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.panel-ejecutivo-content {
  max-width: 600px;
}

.panel-ejecutivo-content h2 {
  font-size: 1.8em;
  margin-bottom: 0.5em;
  color: #0d47a1;
}

.panel-ejecutivo-content p {
  font-size: 1.1em;
  margin-bottom: 1em;
}

/* Panel barra superior con datos de contacto */
.top-contact-bar {
  background: #1b1b1b;
  padding: 14px 20px;
  font-size: 1rem;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.top-contact-content {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.top-contact-content a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
  transition: color 0.3s ease-in-out;
  font-weight: 600;
  font-size: 1rem;
}

.top-contact-content a:hover {
  color: #4caf50;
}

.microdescripcion {
  font-size: 0.9rem;
  font-weight: 400;
  color: #666;
  font-style: italic;
  margin-top: -0.2rem;
  margin-bottom: 0.4rem;

  /* background-color: #f4f6fa;
  padding: 10px;
  border-left: 3px solid #0056b3;
  border-radius: 8px; */
}

@media (max-width: 460px) {
  .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .top-contact-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .top-contact-bar {
    padding: 18px 10px;
  }
}