@charset "UTF-8";
/* CSS Document */

@font-face {
    font-family: "Poppins";
    src: local('Poppins Regular'), local('Poppins-Regular'),
        url('../fonts/Poppins-Regular.woff2') format("woff2"),
        url('../fonts/Poppins-Regular.woff') format('woff'),
        url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
	font-display: swap;
  }

@font-face {
    font-family: 'Poppins';
    src: local('Poppins Italic'), local('Poppins-Italic'),
        url('../fonts/Poppins-Italic.woff2') format('woff2'),
        url('../fonts/Poppins-Italic.woff') format('woff'),
        url('../fonts/Poppins-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
	font-display: swap;
  }

@font-face {
    font-family: 'Poppins';
    src: local('Poppins Medium'), local('Poppins-Medium'),
		url('../fonts/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/Poppins-Medium.woff') format('woff'),
	    url('../fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: local('Poppins Medium Italic'), local('Poppins-MediumItalic'),
		url('../fonts/Poppins-MediumItalic.woff2') format('woff2'),
        url('../fonts/Poppins-MediumItalic.woff2') format('woff'),
		url("../fonts/Poppins-MediumItalic.ttf") format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: local('Poppins Bold'), local('Poppins-Bold'),
		url('../fonts/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/Poppins-Bold.woff') format('woff'),
		url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: local('Helvetica Neue Light'), local('HelveticaNeue-Light'),
		url('../fonts/HelveticaNeue-Light.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Light.woff') format('woff'),
        url('../fonts/HelveticaNeue-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: local('Helvetica Neue Medium'), local('HelveticaNeue-Medium'),
		url('../fonts/HelveticaNeue-Medium.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Medium.woff') format('woff'),
        url('../fonts/HelveticaNeue-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: local('Helvetica Neue Bold'), local('HelveticaNeue-Bold'),
		url('../fonts/HelveticaNeue-Bold.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Bold.woff') format('woff'),
        url('../fonts/HelveticaNeue-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: local('Helvetica Neue Thin'), local('HelveticaNeue-Thin'),
		url('../fonts/HelveticaNeue-Thin.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Thin.woff') format('woff'),
        url('../fonts/HelveticaNeue-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: local('Helvetica Neue Roman'), local('HelveticaNeue-Roman'),
		url('../fonts/HelveticaNeue-Roman.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Roman.woff') format('woff'),
        url('../fonts/HelveticaNeue-Roman.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}




html {
  font-family: "Poppins";
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
  font-family: 'Poppins' !important;
  background-color: #ffffff;
}


/*CODIGO ROSS*/
.navbar {
  background-color: #f7f7f7;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;

}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-list li {
  position: relative;
}

.nav-list a {
  font-family: 'Poppins';
  font-size: 17px;
  color: #005796;
  text-decoration: none;
  text-align: right;
  padding: 25px 12px;
  display: block;
}

.nav-list a:hover {
  color: #03b7d5;
  font-weight: normal;
}

.dropdown-menu {
  position: absolute;
  top: 65px;
  right: 0; 
  background-color: #f7f7f7;
  display: none;
  flex-direction: column;
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 0;	
  z-index: 2000;
	  border-radius: clamp(4px, 3vw, 4px);
	box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-menu li a {
  padding: 8px 14px;
  line-height: 1.5;
  color: #005796;
  text-align: right;
  background: transparent;
	font-size: 15px;
	border-bottom: 1px solid #ffffff; /* línea clara debajo*/
	border-radius: 4px;

}

.dropdown-menu li a:hover {
  background-color: #ebf0fb;
  color: #03b7d5;
  font-weight: normal;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 4px;
  margin-right: 10px;
  z-index: 3000;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  pointer-events: auto;
	border: 1px,solid, #005796;

}

.bar {
  height: 2px;
  width: 24px;
  background-color: #005796;
  margin: 3px 0;
}

@media (max-width: 768px) {

  .menu-toggle {
    display: flex;
  }

  .nav-list {
    position: fixed;
    top: 62px;
    right: 0;
    width: 100%;
    max-height: 600px;
    background-color: #f7f7f7;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    border-radius: 4px;

    transform: translateX(110%);
    transition: none;
    list-style: none;
	padding: 0;
    margin: 0;	  
    z-index: 2000; 
  }

  .nav-list.active {
    transform: translateX(0);
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list a {
    padding: 10px 18px;
    width: 100%;
    text-align: right;
	 
  }

  .dropdown-menu {
    position: static;
    display: none;
    background-color: transparent;
    padding: 0;
    width: 100%;
    align-items: center;
	margin-top: 2px;
	list-style: none; 
	  box-shadow: 0 2px 8px rgba(255,255,255,255.1);
  }

  .dropdown.active .dropdown-menu {
    display: flex;
    flex-direction: column;
  }

  .dropdown-menu .submenu-block {
    width: 90%;
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    margin: 2px 0;
  }

  .dropdown-menu .submenu-block li a {
    display: block;
    width: 100%;	
    padding: 6px 14px;
    background: transparent;
    color: #005796;
    text-align: right;
    line-height: 2.0;
    border-radius: 0;
    margin: 0;
	  border-bottom: 1px solid #f2f2f2; 
  }

  .dropdown-menu .submenu-block li a:hover {
    background-color: rgba(255,255,255,0.08);
    color: #03b7d5; /* Antes #999999 */
    font-weight: normal;
  }
.dropdown.active .submenu-block li a {
    color: #005796; 
}	
	
}


/* Logo Menu */

.top-logo-menu {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #f7f7f7; 
  padding: 5px;
  z-index: 1040; /* Mayor que el navbar para estar encima */
	 display: flex;
	width: 190px;
	height: 164px;
	border-radius: 8px;
	justify-content: center;
	align-items: center;     /* centra vertical */
	 box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.top-logo-menu img {
  width: 155px;
  height: auto;
  object-fit: contain;
  display: block;
  align-content: center;
}

/* 1920px */
@media (max-width: 1920px) {
  .top-logo-menu {
    width: 190px;
    height: 164px;
  }
}

/* 1366px */
@media (max-width: 1366px) {
  .top-logo-menu {
    width: 170px;
    height: 150px;
  }
  .top-logo-menu img {
    width: 140px;
  }
}

/* 1280px */
@media (max-width: 1280px) {
  .top-logo-menu {
    width: 160px;
    height: 140px;
  }
  .top-logo-menu img {
    width: 130px;
  }
}

/* 1024px */
@media (max-width: 1024px) {
  .top-logo-menu {
    width: 150px;
    height: 130px;
  }
  .top-logo-menu img {
    width: 120px;
  }
}

/* 768px */
@media (max-width: 768px) {
  .top-logo-menu {
    width: 140px;
    height: 120px;
  }
  .top-logo-menu img {
    width: 110px;
  }
}

/* 720px */
@media (max-width: 720px) {
  .top-logo-menu {
    width: 130px;
    height: 110px;
  }
  .top-logo-menu img {
    width: 100px;
  }
}

/* 600px */
@media (max-width: 600px) {
  .top-logo-menu {
    width: 120px;
    height: 100px;
  }
  .top-logo-menu img {
    width: 90px;
  }
}

/* 480px */
@media (max-width: 480px) {
  .top-logo-menu {
    width: 110px;
    height: 90px;
  }
  .top-logo-menu img {
    width: 80px;
  }
}

/* 360px */
@media (max-width: 360px) {
  .top-logo-menu {
    width: 100px;
    height: 80px;
  }
  .top-logo-menu img {
    width: 70px;
  }
}



/* BANNER IMAGEN HOME */

.header-home {
  background-image: url('../images/header-home.jpg'); 
  background-size: cover;        /* imagen para cubrir el div */
  background-position: right center;   /* Centra la imagen */
  background-repeat: no-repeat;	
  height: clamp(300px, 40vw, 570px);               
  width: 100%;
  position: relative;
  display: flex;	
  align-items: center;
/*justify-content: flex-start;	*/
  
}
.header-home-text {
  position: relative; /* no se necesitama absolute para centrar verticalmente */
  margin-left: clamp(5px, 5vw, 90px); 
  max-width: clamp(200px, 60%, 600px);  
  display: flex;
  flex-direction: column;
  gap: clamp(5px, 1vw, 15px);  
  color: #ffffff;
}

.header-home-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(18px, 4vw, 26px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.0em;
  margin: 0;
}

.header-home-text p {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(12px, 2vw, 24px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.0em;
  margin: 0;
}

/* BANNER IMAGEN ONTOLOGICO */

.header-ontologico {
  background-image: url('../images/header-ontologico.jpg'); 
  background-size: cover;       
  background-position: right center;   
  background-repeat: no-repeat;	
  height: clamp(300px, 40vw, 570px);               
  width: 100%;
  position: relative;
  display: flex;	
  align-items: center;
/*justify-content: flex-start;	*/ 
}

.header-ontologico::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  background-color: rgba(251, 183, 0, 0.4); /* color + transparencia */
  z-index: 1;
}


.header-ontologico-text {
  position: relative; 
  margin-left: clamp(5px, 5vw, 90px); 
  max-width: clamp(200px, 60%, 600px);  
  display: flex;
  flex-direction: column;
  gap: clamp(5px, 1vw, 15px);  
  color: white;
  z-index: 2;	
}

.header-ontologico-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(18px, 4vw, 26px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.0em;
  margin: 0;
}

.header-ontologico-text p {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(12px, 2vw, 24px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.0em;
  margin: 0;
}


/* BANNER IMAGEN DEPORTIVO */

.header-deportivo {
  background-image: url('../images/header-deportivo-02.jpg'); 
  background-size: cover;       
  background-position: right center;  
  background-repeat: no-repeat;	
  height: clamp(300px, 40vw, 570px);               
  width: 100%;
  position: relative;
  display: flex;	
  align-items: center;
/*justify-content: flex-start;	*/  
}

.header-deportivo::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  background-color: rgba(188, 24, 24, 0.55); 
  z-index: 1;
}

.header-deportivo-text {
  position: relative; 
  margin-left: clamp(5px, 5vw, 90px); 
  max-width: clamp(200px, 60%, 600px);  
  display: flex;
  flex-direction: column;
  gap: clamp(5px, 1vw, 15px);  
  color: white;
  z-index: 2;	
}

.header-deportivo-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(18px, 4vw, 26px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.0em;
  margin: 0;
}

.header-deportivo-text p {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(12px, 2vw, 24px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.0em;
  margin: 0;
}

/* BANNER IMAGEN ORGANIZACIONAL */

.header-organizacional {
  background-image: url('../images/header-organizacional.jpg'); 
  background-size: cover;        
  background-position: right center;  
  background-repeat: no-repeat;	
  height: clamp(300px, 40vw, 570px);               
  width: 100%;
  position: relative;
  display: flex;	
  align-items: center;
/*justify-content: flex-start;	*/  
}

.header-organizacional::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  background-color: rgba(30, 73, 116, 0.80); 
  z-index: 1;
}

.header-organizacional-text {
  position: relative; 
  margin-left: clamp(5px, 5vw, 90px); 
  max-width: clamp(200px, 60%, 600px);
  display: flex;
  flex-direction: column;
  gap: clamp(5px, 1vw, 15px);  
  color: white;
  z-index: 2;	
}

.header-organizacional-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(18px, 4vw, 26px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.0em;
  margin: 0;
}

.header-organizacional-text p {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(12px, 2vw, 24px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.0em;
  margin: 0;
}

/* BANNER IMAGEN SERVICIOS */

.header-services {
  background-image: url('../images/header-servicios.jpg'); 
  background-size: cover;       
  background-position: right center;
  background-repeat: no-repeat;	
  height: clamp(300px, 40vw, 430px);               
  width: 100%;
  position: relative;
  display: flex;	
  align-items: center;
/*justify-content: flex-start;	*/
  
}
.header-services-text {
  position: relative; 
  margin-left: clamp(5px, 5vw, 90px); 
  max-width: clamp(200px, 60%, 600px); 
  display: flex;
  flex-direction: column;
  gap: clamp(5px, 1vw, 15px);  
  color: white;
}

.header-services-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(18px, 4vw, 26px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.0em;
  margin: 0;
}

.header-services-text p {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(12px, 2vw, 24px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.0em;
  margin: 0;
}

/* BANNER IMAGEN BIOGRAFIA */

.header-biografia {
  background-image: url('../images/header-bio-v2.jpg'); 
  background-size: cover;       
  background-position: right center;
  background-repeat: no-repeat;	
  height: clamp(300px, 40vw, 430px);               
  width: 100%;
  position: relative;
  display: flex;	
  align-items: center;
/*justify-content: flex-start;	*/
  
}
.header-biografia-text {
  position: relative; 
  margin-left: clamp(5px, 5vw, 90px); 
  max-width: clamp(200px, 60%, 600px); 
  display: flex;
  flex-direction: column;
  gap: clamp(5px, 1vw, 15px);  
  color: white;
}

.header-biografia-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(18px, 4vw, 26px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.0em;
  margin: 0;
}

.header-biografia-text p {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(12px, 2vw, 24px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.0em;
  margin: 0;
}


/* BANNER IMAGEN ARTICULOS */

.header-articulos {
  background-image: url('../images/header-articulos.jpg'); 
  background-size: cover;       
  background-position: center;
  background-repeat: no-repeat;	
  height: clamp(300px, 40vw, 430px);               
  width: 100%;
  position: relative;
  display: flex;	
  align-items: center;
/*justify-content: flex-start;	*/
  
}
.header-articulos-text {
  position: relative; 
  margin-left: clamp(5px, 5vw, 90px); 
  max-width: clamp(200px, 60%, 600px); 
  display: flex;
  flex-direction: column;
  gap: clamp(5px, 1vw, 15px);
  color: #ffffff;
}

.header-articulos-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(18px, 4vw, 26px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.0em;
  margin: 0;
}

.header-articulos-text p {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(12px, 2vw, 24px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.0em;
  margin: 0;
}



.mx-auto {
  margin-right:auto !important;
  margin-left: 75px;
/*  align-items: right;*/
}


 /* TITULOS Y SUBTITULOS */

.titulo-01  {
  width: clamp(340px, 90%, 1000px); /* ancho mínimo xpx, máximo xpx, escala con 80% del viewport */
  height: auto;
  margin: 0 auto;           /* Centra horizontalmente */
  display: flex;
  align-items: center;        /* Centra verticalmente */
  justify-content: center;    /* Centra horizontalmente */
  padding: 0 10px;
  text-align: center;
}
	
.titulo-01 h2 {
  font-family:  'Poppins';
  font-size: clamp(18px, 4vw, 28px); 
  font-weight: 500;
  color: #005796;
  line-height: 1.2;
  letter-spacing: 0em;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

.titulo-01 .inicio {
  color: #5d5d5d;
  font-size: clamp(20px, 4vw, 28px);	
}

.titulo-01 .final {
  font-size: clamp(20px, 4vw, 28px);	
}

.titulo-home .final {
  color: #00b8d6;
}

.titulo-ontologico .final {
  color: #fbb700;
}

.titulo-deportivo .final {
  color: #bc1818;
}

.titulo-organizacional .final {
  color: #004976;
}

.titulo-biografia .final {
  color: #00b8d6;
}



.titulo-02  {
  height: auto;
  display: flex;
  align-items: center;        /* Centra verticalmente */
  justify-content: center;    /* Centra horizontalmente */
  padding: 0 10px;
  text-align: center;
}

.titulo-02 h2 {
  font-family:  'Poppins Bold';
  font-size: 28px;
  font-weight: bold;
  color: #005796;
  line-height: 1.0;
  letter-spacing: 0em;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

/* Responsive pantallas de 1024px o menos */
@media screen and (max-width: 1024px) {
	 .titulo-02 {
     height: auto;
    padding: 0px 10px;
  }
  .titulo-02 h2 {
    font-size: 24px;
    line-height: 1.0;	  
  }
}

/* Responsive pantallas de 768px o menos */
@media screen and (max-width: 768px) {
  .titulo-02 {
	height: auto;  
    padding: 0px 10px;
  }
  .titulo-02 h2 {
    font-size: 22px;
    line-height: 1.0;
  }
}

/* Responsive pantallas de 480px o menos */
@media screen and (max-width: 480px) {
  .titulo-02 {
	height: auto;  
    padding: 0px 7px;
  }	
  .titulo-02 h2 {
    font-size: 20px;
    line-height: 1.0;
  }
}

/* Responsive pantallas de 360px o menos */
@media screen and (max-width: 360px) {
  .titulo-02 {
    height: auto;
    padding: 0px 5px;
  }	
  .titulo-02 h2 {
    font-size: 18px;
    line-height: 1.0;
  }
}


.subtitulo-01 {
  width: clamp(340px, 90%, 1000px); 
  height: auto;
  margin: 0 auto;           /* Centra horizontalmente */
  display: flex;
  align-items: center;        /* Centra verticalmente */
  justify-content: center;    /* Centra horizontalmente */
  padding: clamp(8px, 2vw, 20px) clamp(10px, 4vw, 30px);
  text-align: center;
}

.subtitulo-01 h2 {
  font-family:  'Helvetica Neue';
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: normal;
  color: var(--tx-color, #525252);
  line-height: 1.2;
  letter-spacing: 0em;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  text-align: center;
}

.subtitulo-acerca .final {
  color: #00b8d6;
}

.subtitulo-ontologico .final {
  color: #fbb700;
}

.linea {
  width: 80%;
  height: 1px;
  background-color: #979595;
  margin: 10px auto;        /* Centra la línea horizontalmente */

}

/* SUBTÍTULO ARTICULOS BLOG */

.subtitulo-articulos {
  font-family: 'Helvetica Neue';
  font-size: clamp(14px, 2vw, 18px); 
  font-weight: 600;
  text-align: var(--text-align, center); 
  line-height: 1.3;
  color: #525252;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0em;
  	
}



/* ESTILOS DE TEXTO */

.tx-contenido-general{
  font-family: 'Helvetica Neue';
  font-size: clamp(12px, 2vw, 16px); 
  font-weight: normal;
  text-align: var(--text-align, center); 
  line-height: 1.3;
  color: #525252;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0em;
}


.tx-content-01{
  font-family: 'Helvetica Neue';
  font-size: clamp(12px, 2vw, 16px); 
  font-weight: normal;
  color: var(--tx-color, #525252); 
  font-style: var(--tx-style, normal);	
  line-height: 1.3;
  text-align: var(--text-align, left);
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0em;

}

.tx-content-02{
  font-family: 'Helvetica Neue';
  font-size: clamp(16px, 2vw, 20px); 
  font-weight: 500;
  color: var(--tx-color, #525252); 
  font-style: var(--tx-style, normal);	
  line-height: 1.3;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0em;

}


.tx-lista {
  text-align: left;
  list-style-type: disc;     /* bullets normales */
  padding-left: 20px;        /* espacio para bullets */
  font-family: 'Helvetica Neue';
  font-weight: normal;	
  font-size: clamp(12px, 2vw, 16px); 
  line-height: 1.4;
  color: var(--tx-color, #525252);
	  -webkit-font-smoothing: antialiased;
  letter-spacing: 0em;
}

.tx-lista li {
  margin-bottom: 10px;
}

/* Sublistas dentro de li */
.tx-lista li ul {
  list-style-type: circle; /* bullets diferentes para sublistas */
  padding-left: 15px;      
  margin-top: 5px;       
}


.tx-footer{
  text-align: center;
  font-family: "Poppins";
  font-size: clamp(9px, 2vw, 12px); 
  font-weight: 100;
  letter-spacing: 0em;;
   line-height: 1.4;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
}



/* CONTENIDO TEXTO HORIZONTAL*/

.contenido-texto {
  padding: clamp(10px, 2vw, 20px) clamp(5px, 2vw, 15px);
  width: 100%;
  display: flex;
  justify-content: center;
  height: auto;
  background-color: var(--bg-color, transparent); 

}

/* Caja de texto centrada */
.texto-contenido {
  max-width: clamp(300px, 90%, 1200px); 
  width: 90%;

}

/* BOTON GENERAL*/

.contenedor-boton-general {
  margin-top: auto;              /* empuja el botón al fondo */
  display: flex;
  flex-direction: column; 
  align-items: center;	
  justify-content: center;       /* centra horizontalmente */
  gap: clamp(6px, 1.2vw, 12px);	
  width: 100%;                   /* ocupa todo el ancho interno */
  margin-bottom: clamp(8px, 2vw, 15px);	
  padding: clamp(6px, 1.2vw, 20px)	
}


/* Estilo del botón */
.boton-general-btn {
  display: inline-block;
  background: var(--btn-gen-bg);
  color: var(--btn-gen-text);
  border: 1px solid var(--btn-gen-border);
  border-radius: clamp(20px, 3vw, 30px);
  padding: clamp(10px, 5vw, 10px) clamp(12px, 5vw, 24px);
  font-family: 'Helvetica Neue';	
  font-size: clamp(13px, 1.5vw, 16px); 
  font-weight: normal;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);	
   align-items: center;
	
	
  --btn-gen-bg: #ffffff;     /* color de fondo normal */
  --btn-gen-text: #262626;   /* color de texto normal */
  --btn-gen-border: #003b7d5; /* color del borde */	
  --btn-gen-hover-bg: #003b7d5;
  --btn-gen-hover-text: #ffffff;
  --btn-gen-hover-border: #003b7d5;	
}

/* Hover del botón */
.boton-general-btn:hover,
.boton-general-btn:focus,
.boton-general-btn:active 
{
  background: var(--btn-gen-hover-bg);
  color: var(--btn-gen-hover-text);
  border-color: var(--btn-gen-hover-border);

  transform: translateY(-2px); 
  outline:none;
}





/*CONTENEDOR IMAGEN Horizontal 100% */

.contenedor-imagen {
  width: clamp(300px, 90vw, 1200px); 
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(5px, 2vw, 0px);
  margin: 0 auto; /* Centra el contenedor horizontalmente */	
}

/* Imagen centrada */
.contenedor-imagen img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px; /* bordes redondeados */
  border: 3px solid var(--img-border, transparent);	

}


/* Div contenido texto-imagen*/

.content-01 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(5px, 2vw, 20px) clamp(5px, 2vw, 15px);
  box-sizing: border-box;
  gap: clamp(10px, 2vw, 20px);
  flex-wrap: wrap; /* permite que se acomode en columna si es necesario */
  background-color: var(--bg-color, transparent); 
}

.content-01.reverse {
  flex-direction: row-reverse;
}

/* Texto a la izq */
.caja-lateral-01 {
  max-width: clamp(320px, 80%, 550px);

}
.caja-lateral-01 h2 {
  font-family: 'Poppins';
  font-weight: 500;	
  font-size: clamp(20px, 4vw, 28px);
  color: var(--tx-color, #525252);
  margin-bottom: clamp(8px, 1.5vw, 15px);
  /*text-transform: uppercase;  ejemplo de transformación */
	  line-height: 1.2;
	text-align: center;
  letter-spacing: 0em;
  -webkit-font-smoothing: antialiased;
}

.caja-lateral-01 .inicio {
  color: #5d5d5d;
  font-size: clamp(20px, 2vw, 28px);	
}

.caja-lateral-01 .final {
  color: #00b8d6;
  font-size: clamp(20px, 2vw, 28px);	
}

/* Imagen a la derecha */
.imagen-lateral-01 img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  width: clamp(350px, 90vw, 550px);
}


/* CONTENEDOR CONTENIDO DETALLES COACHING ONTOLOGICO DEPORTIVO ORGANIZACIONAL*/

.cards-container {
	width: clamp(85%, 90vw, 90%);
	margin: 0 auto;          
  display: flex;
  gap: clamp(15px, 2vw, 30px); 
  justify-content: center;
  flex-wrap: wrap;
  padding: clamp(5px, 2vw, 15px) clamp(10px, 4vw, 40px);
}

.card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: clamp(5px, 2vw, 15px) clamp(10px, 4vw, 40px);
  flex: 1 1 clamp(360px, 45%, 550px); /* ancho flexible */
/*  max-width: 550px;*/
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  	
}

.card-icon {
  margin-bottom: 5px;
  margin-top: 5px;
}

.card-icon img {
  width: clamp(80px, 10vw, 120px);  
  height: clamp(67px, 10vw, 100px);
  object-fit: contain;
}

.card h2 {
  font-family:  'Poppins';
  font-size: clamp(20px, 4vw, 28px); 
  font-weight: 500;
  color: var(--tx-color, #00b8d6);
  margin-bottom: clamp(5px, 1.5vw, 10px);
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0em;
  -webkit-font-smoothing: antialiased;
	
}	

.card h3 {
  font-family: 'Helvetica Neue';
  font-size: clamp(15px, 2vw, 18px); 
  font-weight: 600;
  margin-bottom: clamp(5px, 2vw, 15px);
  color: var(--tx-color, #525252);
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0em;
  -webkit-font-smoothing: antialiased;	
	
}

.card p {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: clamp(12px, 2vw, 16px); 
  font-weight: normal;
  line-height: 1.3;
  color: var(--tx-color, #525252);
  text-align: var(--text-align, center); 
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0em;
	
}



/* CONTENEDOR DETALLE SERVICIOS*/

.servicio-detalle-seccion {
  width: 100%;
  background-color: var(--bg-color, #f2f2f2);
  padding: clamp(5px, 4vw, 20px) clamp(10px, 3vw, 20px); /* primeo arriba después abajo */
}

.servicio-detalle-contenedor {
  max-width: clamp(320px, 85vw, 1100px);
  margin: auto;
  padding: clamp(5px, 5vw, 25px)  clamp(20px, 5vw, 40px);
  border-radius: clamp(8px, 2vw, 16px);
  background-color: #ffffff;	
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);	
}

/* Título principal */
.servicio-detalle-titulo {
  font-family: 'Poppins';
  font-weight: 400;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--color-titulo, #525252); 
  margin-bottom: clamp(5px, 2vw, 10px);
  margin-left: clamp(5px, 2vw, 10px);	
	letter-spacing: 0em;
  -webkit-font-smoothing: antialiased;

}

/* Subtítulo */
.servicio-detalle-subtitulo {
  font-family: 'Helvetica Neue';
  font-weight: normal;	
  font-size: clamp(13px, 2.5vw, 20px);
  margin-bottom: clamp(10px, 3vw, 15px);
  margin-left: clamp(5px, 2vw, 10px);	
  color: #525252;
}

/* Cada item dentro de la sección */
.servicio-detalle-item {
  display: flex;
  align-items: center;
  gap: clamp(5px, 2vw, 10px);
  margin-bottom: clamp(5px, 3vw, 10px);
}

.servicio-detalle-item-icono {
/*  flex-shrink: 0; */
  width: clamp(60px, 8vw, 110px);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Icono del item */
.servicio-detalle-item img {
  height: clamp(35px, 5vw, 55px);
	object-fit: contain;
}

/* Texto dentro del item */
.servicio-detalle-item-texto {
  flex: 1;
  font-family: 'Helvetica Neue';
  font-size: clamp(12px, 2vw, 16px); 
  font-weight: normal;
  line-height: 1.2;
  color: #525252;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0em;

}
.servicio-detalle-item-texto b {
  display: block;
  margin-bottom: clamp(4px, 1vw, 8px);
  color: #444;
  font-size: clamp(15px, 2vw, 19px);
}

/* Texto dirigido a quién está orientado el servicio */
.servicio-detalle-dirigido {
  margin-top: clamp(16px, 3vw, 24px);
  font-size: clamp(13px, 1.8vw, 16px);
  color: #666;
}


/* CONTENEDOR SERVICIOS OPCION 2*/

.content-servicios {
  width: 100%;
  display: flex;
  align-items: flex-start;           /* alinea los elementos al inicio verticalmente */
  justify-content: center;
  padding: clamp(10px, 2vw, 25px) clamp(5px, 2vw, 15px);
  box-sizing: border-box;
  gap: clamp(10px, 2vw, 20px);
  flex-wrap: wrap;                   /* permite que se acomode en columna si es necesario */
  background-color: var(--bg-color, transparent);
}

.content-servicios.reverse {
  flex-direction: row-reverse;
}

/* Caja lateral (texto + botón) */
.caja-servicios {
  max-width: clamp(400px, 90%, 600px);
  display: flex;
  flex-direction: column;             /* organiza título, texto y botón verticalmente */
  align-items: var(--caja-align, center);
  gap: clamp(10px, 2vw, 15px);       
}

/* Título de caja lateral */
.caja-servicios h2 {
  font-family: 'Helvetica Neue';
  font-weight: normal;	
  font-size: clamp(12px, 4vw, 20px);
  color: var(--tx-color, #525252);
  margin: 0;
  line-height: 1.2;
   text-align: var(--text-align, center);
  letter-spacing: 0em;
  -webkit-font-smoothing: antialiased;
}

/* Imagen lateral */
.imagen-servicios {
  display: flex;
  flex-direction: column;      /* organiza imagen, título y botón verticalmente */
  align-items: center;
  gap: clamp(10px, 2vw, 15px);
   width: clamp(200px, 90vw, 350px);	
}

.imagen-servicios img {
  max-width: 80%;
  height: auto;
  display: block;
  border-radius: 8px;
/*  width: clamp(200px, 90vw, 400px);*/
}

/* Título debajo de la imagen */
.imagen-servicios .imagen-titulo {
  font-family: 'Helvetica Neue';
  font-size: clamp(20px, 2.5vw, 80px);
  font-weight: normal;
  color: var(--titulo-color, #525252);
  text-align: center;
  margin: 0;
}


/* DIV CONTENIDO SERVICIOS VERTICAL*/

.cards-container-service {
  display: flex;
  gap: clamp(15px, 2vw, 30px); 
  justify-content: center;
  flex-wrap: wrap;
  padding: clamp(5px, 2vw, 15px) clamp(10px, 4vw, 40px);
}

.card-service {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: clamp(5px, 2vw, 15px) clamp(10px, 4vw, 40px);
  flex: 1 1 1 clamp(300px, 30%, 400px); 
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card-service-icon {
  margin-bottom: 5px;
  margin-top: 5px;
}

.card-service-icon img {
  width: clamp(67px, 10vw, 100px);  /* icono responsive */
  height: clamp(67px, 10vw, 100px);
  object-fit: contain;
}

.card-service h3 {
  font-family: 'Helvetica Neue';
  font-size: clamp(15px, 2vw, 18px); 
  font-weight: 600;
  margin-bottom: clamp(5px, 2vw, 15px);
  color: #525252;
}

.card-service p {
  font-family: 'Helvetica Neue';
  font-size: clamp(12px, 2vw, 15px); 
  font-weight: 300;
  line-height: 1.3;
  color: #525252;
}



/* CARRUSEL TESTIMONIOS */

* {
  box-sizing: border-box;
}

.testimonios {
  background: #005796;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
  overflow: hidden;
}

.titulo-testimonio {
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  padding: 5px 10px 15px 10px;	
}

.testimonios h2 {
  font-family: 'Poppins';	
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 500;
  color: #ffffff;
  text-align: left;
  letter-spacing: 0em;
  line-height: 0.5;	
}

.linea {
  width: clamp(120px, 20vw, 220px);
  height: 2px;
  background-color: #00b8d6;
  margin-left: 0px;
  margin-bottom: clamp(3px, 1vw, 5px);	  	
}

.carrusel {
  position: relative;	
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  border-radius: 12px;
}

.slides {
  display: flex;
  transition: transform 1.0s ease-in-out;
/*  transform: translateX(0);	*/
}

.card-testimonies {
  min-width: 100%;
  background: #f2f2f2;
  color: #333;
  padding: 35px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;

}

.imagen-testimonies {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #0b4d80;
  flex-shrink: 0;
}

.texto {
  max-width: 700px;
  text-align: left;
}

.texto h3 {
  font-family: 'Helvetica Neue';
  font-weight: normal;
  color: #00b8d6;
  margin: 0;
  font-size: clamp(18px, 3vw, 24px);
  letter-spacing: 0em;
  line-height: 0.5;		
}

.texto .rol {
  font-family: 'Helvetica Neue';
  font-weight: normal;	
  font-size: clamp(14px, 2.5vw, 19px);
  color: #005796;
  margin-bottom: clamp(5px, 1.5vw, 10px);
}

.texto p {
  font-family: 'Helvetica Neue';
  font-size: clamp(12px, 2vw, 16px);  
  font-weight: normal;
  text-align: var(--text-align, left); 	
  line-height: 1.3;
  color: #525252;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0em;

}

.controles {
  margin-top: clamp(10px, 2vw, 20px);
}

.punto {
  display: inline-block;
  width: clamp(8px, 2vw, 10px);
  height: clamp(8px, 2vw, 10px);
  margin: clamp(3px, 1vw, 6px);
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.punto.activo {
  background: #00b8d6;
}

/* Botones de navegación */
.btn-prev,
.btn-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  transition: background 0.3s;
}

.btn-prev:hover,
.btn-next:hover {
  background: rgba(0,0,0,0.8);
}

.btn-prev { left: 15px; }
.btn-next { right: 15px; }



/* 1024px */
@media (max-width: 1024px) {
  .card-testimonies {
    flex-direction: row;
    text-align: center;
    gap: 40px;
    padding: 50px;
  }
  .texto { 
	max-width: 90%;  
    text-align: center; }
}

/* 768px */
@media (max-width: 768px) {
  .card-testimonies {
	flex-direction:column;  
    gap: 30px;
    padding: 35px 35px;
  }
  .imagen-testimonies {
    width: 180px;
    height: 180px; 
  }	
   .texto h3 {
    text-align: center;
  }

  .texto .rol {
    text-align: center;
  }	  
}

/* 600px */
@media (max-width: 600px) {
  .card-testimonies {
    padding: 25px 25px;
    gap: 20px;
  }

  .imagen-testimonies {
    width: 160px;
    height: 160px;
  }

  .texto {
    max-width: 90%;
  }
	
   .texto h3 {
    text-align: center;
  }

  .texto .rol {
    text-align: center;
  }	  	
}
	

/* ===== Móviles estándar (<= 480px) ===== */
@media (max-width: 480px) {
  .card-testimonies {
	flex-direction:column;  
    gap: 22px;
    padding: 28px 28px;
  }
  .imagen-testimonies {
    width: 140px;
    height: 140px;
  }
	
  .texto h3 {
    text-align: center;
  }

  .texto .rol {
    text-align: center;
  }	  	
}

/* ===== Móviles pequeños (<= 360px) ===== */
@media (max-width: 360px) {
  .card-testimonies {
	flex-direction:column;  
    gap: 18px;
    padding: 22px 25px;
  }
  .imagen-testimonies {
    width: 120px;
    height: 120px;
  }
  .texto h3 {
    text-align: center;
  }

  .texto .rol {
    text-align: center;
  }	  	
}

/* DIV CONTENIDO BIOGRAFIA-FILOSOFIA*/
.section-filosofia {
  position: relative;
  background-image: url('../images/image-filosofia.jpg'); 
  background-size: cover;
  background-position: right center;
  width: 100%;
  height: clamp(400px, 60vh, 400px); /* ajustar o usar min-height */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #ffffff;
}

.text-block {
  width: clamp(60%, 60vw, 60%);
  height: 100%; /* ocupa toda la altura del padre */
  background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.4) 90%, rgba(255,255,255,0) 100%);
  padding: clamp(20px, 5vw, 80px) clamp(30px, 7vw, 100px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
	
}

.text-block p {
  margin-bottom: 20px;
}


/* CONTENIDO FORMACIÓN & EXPERIENCIA*/

.biography-section {
  position: relative;
  width: 100%;
  min-height: clamp(450px, 100vh, 1900px);/* o el alto que se necesite */
  background: url('../images/ima-experiencia-v2.jpg') top center/cover no-repeat;
  display: flex;
  align-items: flex-end; /* coloca el texto en la parte baja */
  justify-content: center;	
  color: #ffffff;
  padding: clamp(5px, 5vw, 20px);
  box-sizing: border-box;
  overflow: hidden; /* asegura que nada sobresalga */
}

/* Degradado sobre la imagen */	
.biography-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    #02325f 0%,
    rgba(2, 50, 95, 0.9) 40%,
    rgba(2, 50, 95, 0) 80%);
  z-index: 1;

}

/* Bloque de texto encima del degradado */
.biography-section_text-block {
  position: relative;
  z-index: 2; /* encima del ::before */
  max-width: clamp(350px, 90%, 1200px);
  max-height: clamp(300px, 60vh, 800px); /* más alto sin cubrir toda la imagen */	
  text-align: center;
  padding: clamp(5px, 5vw, 10px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* texto abajo dentro del bloque */
	
}




/* CONTENEDOR ARTICULOS GRID */

.articulos {
  width: 90%;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
}

.grid-articulos {
  /*display: grid;*/
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 	
  /*grid-template-columns: repeat(4, 1fr);  4 columnas fijas */
 /*  gap: 40px 20px;  row-gap 40px, column-gap 20px */	
  column-gap: 20px; /* espacio entre columnas */
  row-gap: 40px;    /* espacio entre filas */
  justify-content: center; /* centra el conjunto de columnas */	
  justify-items: center; /* centra las tarjetas dentro de la columna */
  align-items: stretch;	

}

/* Card articulos */
.card-articulos {
  width: 100%;
  max-width: 300px; /* tamaño uniforme */
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
/*  transition: transform 0.2s ease;*/
  display: flex;
   flex-wrap: wrap;
  flex-direction: column;
	justify-content: space-between;
	gap: clamp(5px, 2vw, 15px); 
 
  --hover-bg: #FFFFFF;   /* color de fondo por defecto al hacer hover */	

}
.card-articulos:hover, 
.card-articulos:focus,
.card-articulos:active {
  transform: translateY(-5px);
  background: var(--hover-bg);		
}

.card-articulos:focus {
  outline: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);  /* Antes 0 0 0 3px */
}

.card-articulos-imagen {
  position: relative;
}

.card-articulos img {
  width: 100%;
  height: auto;
  display: block;
}

.card-articulos .fecha {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(255, 255, 255, 0.7); /* color con 70% opacidad */
  color: #4d4c4c;
  font-family: 'Helvetica Neue';
  font-weight: normal;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 16px;
}

.card-articulos .contenido {
  padding: 10px 26px;
  min-height: 140px; /* Si no de alinea el botón abajo modificar tamaño */
  display: flex;
  flex-direction: column;
justify-content: center;
  text-align: center;
/*  margin-top: 5px;*/
}

.card-articulos .texto {
  font-family: 'Helvetica Neue';	
  font-size: 16px;
  font-weight: normal;	
  color: var(--tx-color, #525252);	
  margin-top: 5px;
  text-align: center;
  line-height: 1.2;
	
  --hover-text: #ffffff; /* color de texto por defecto al hacer hover */
}

.card-articulos:hover .texto,
.card-articulos:focus .texto,
.card-articulos:active .texto {
  color: var(--hover-text);
}

.card-articulos-btn-contenedor {
  margin-top: auto;             /* empuja el botón al fondo del card */
  display: flex;
	flex-direction: column; 
    align-items: center;	
  justify-content: center;       
  width: 100%;                   /* ocupa todo el ancho interno */
  padding: clamp(5px, 3vw, 15px);
	margin-bottom: 5px;
}

.card-articulos-btn {
  display: inline-block;
  background: var(--btn-art-bg);
  color: var(--btn-art-text);
  border: 1px solid var(--btn-art-border);	
  border-radius: clamp(20px, 3vw, 30px);
  text-decoration: none;
  padding: 8px 14px;
  font-family: 'Helvetica Neue';	
  font-size: clamp(12px, 1.5vw, 14px); 
  font-weight: normal;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  	
	
  --btn-art-bg: #ffffff;     /* color de fondo normal */
  --btn-art-text: #262626;   /* color de texto normal */
  --btn-art-border: #03b7d5; /* color del borde */	
  --btn-art-hover-bg: #03b7d5;
  --btn-art-hover-text: #ffffff;
  --btn-art-hover-border: #03b7d5;
}

.card-articulos-btn:hover,
.card-articulos-btn:focus,
.card-articulos-btn:active {
  background: var(--btn-art-hover-bg);
  color: var(--btn-art-hover-text);
  border-color: var(--btn-art-hover-border);	
}

/* PAGINACIÓN */
.paginacion {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
/*   flex-wrap: wrap;	*/
}

.paginacion a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 6px;
  background: #eee;
  color: #525252;
  text-decoration: none;
  transition: background 0.2s ease;
  font-family: 'Helvetica Neue';
  font-size: 12px;
  font-weight: 500;	
}

.paginacion a:hover {
  background: #cccccc;
}

.paginacion a.active {
  background: #03b7d5;
  color: #fff;
}


/* 1366px */
@media (max-width: 1366px) {
  .grid-articulos {
    grid-template-columns: repeat(4, 1fr); /* aún 4 columnas */
  }
}

/* 1280px */
@media (max-width: 1280px) {
  .grid-articulos {
    grid-template-columns: repeat(3, 1fr); /* baja a 3 columnas */
  }
}

/* 1024px */
@media (max-width: 1024px) {
  .grid-articulos {
    grid-template-columns: repeat(3, 1fr); /* mantiene 3 columnas */
  }
}

/* 768px (tablets) */
@media (max-width: 768px) {
  .grid-articulos {
    grid-template-columns: repeat(2, 1fr); /* 2 columnas */
  }
}

/* 600px (phablets / móviles grandes) */
@media (max-width: 600px) {
  .grid-articulos {
    grid-template-columns: repeat(2, 1fr); /* aún 2 columnas */
    column-gap: 15px;
    row-gap: 30px;
  }
  .card-articulos {
    max-width: 260px;
  }
}

/* 480px (móviles medianos) */
@media (max-width: 480px) {
  .grid-articulos {
    grid-template-columns: 1fr; /* solo 1 columna */
    row-gap: 25px;
  }
  .card-articulos {
    max-width: 90%; /* ocupa casi todo el ancho */
  }
}

/* 360px (móviles pequeños) */
@media (max-width: 360px) {
  .grid-articulos {
    grid-template-columns: 1fr; /* una sola columna */
  }
  .card-articulos {
    max-width: 100%;
  }
}





/* Contenedor Video */
.video-container {
  width: 60%;
  margin: 0 auto; /* Centrado horizontal */
  padding: 35px 0; 
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px; /* bordes redondeados */
}

/* Para pantallas de 1024px o menos */
@media (max-width: 1024px) {
  .video-container {
    width: 80%;
  }
}

/* Para pantallas de 768px o menos (tabletas) */
@media (max-width: 768px) {
  .video-container {
    width: 90%;
  }
}

/* Para pantallas de 480px o menos (móviles pequeños) */
@media (max-width: 480px) {
  .video-container {
    width: 95%;
  }
}

/* Para pantallas de 360px o menos (móviles muy pequeños) */
@media (max-width: 360px) {
  .video-container {
    width: 100%;
    padding: 10px 5px;
  }
}


 /* FOOTER NEW */
.footer {
  background-color: #24366d; /* Azul oscuro */
  color: #ffffff;
  padding: 20px 20px;
  font-family: "Poppins";
}

.footer-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto; /* Texto ocupa más espacio, logo ajustado */
  /*grid-template-rows: auto auto;   Redes arriba, texto abajo */
  grid-template-areas:
    "social social"
    "text logo"; 	
  gap: 10px;
  align-items: center;
}

/* Redes sociales */
.footer-social {
  /*grid-column: 1 / 3;  Ocupa todo el ancho arriba */
  grid-area: social;	
  display: flex;
  gap: 20px;
  justify-content: center;
}

.footer-social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid white;
  border-radius: 50%;
  background-color: #2a438e; 
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 0 8px rgba(255,255,255,50.5);
  overflow: hidden;   /* Para que la imagen no sobresalga */	
}

.footer-social a img {
  max-width: 60%;    /* tamaño dentro del círculo */
  height: auto;
}

.footer-social a:hover {
  background: #0081ab;
  color: #0081ab;
}

/* Primer párrafo destacado Texto copyright */
.footer-text {
	grid-area: text;
  font-family: "Poppins";	
  font-weight: 600;	
  line-height: 1.4;
  text-align: center;   /* Centra todo el texto */
  max-width: 900px;     /* Controla el ancho máximo */
  margin: 0 auto;       /* Lo centra en el grid */	
}


.footer-text p:first-child {
  font-family: "Poppins";
  font-size: clamp(11px, 2vw, 14px); 	
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.0;
  color: #ffffff;
  margin-bottom: 8px;

}

/* Texto pequeño de derechos de autor */
.footer-text .copyright {
  font-family: "Poppins";	
    font-size: clamp(9px, 2vw, 12px); 
  font-weight: 100;
  text-align: center;
  letter-spacing: 0em;
  line-height: 1.4;
  color: #ffffff;	
  opacity: 0.85;
}

/* Logo */
.footer-logo {
	grid-area: logo;
  justify-self: end; /* Empuja el logo a la derecha */
  margin-right: 45px; 
}

.footer-logo img {
  height: clamp(55px, 8vw, 90px);
  width: auto;
}


@media (max-width: 1366px) {
  .footer-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "social"
      "logo"
      "text";
    text-align: center;
  }
  .footer-logo { justify-self: center; margin-right: 0; }
}

@media (max-width: 1280px) {
  .footer-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "social"
      "logo"
      "text";
  }
  .footer-logo { justify-self: center; }
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "social"
      "logo"
      "text";
  }
  .footer-logo { justify-self: center; }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "social"
      "logo"
      "text";
  }
  .footer-logo { justify-self: center; }
}

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "social"
      "logo"
      "text";
  }
  .footer-logo { justify-self: center; }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "social"
      "logo"
      "text";
  }
  .footer-logo { justify-self: center; }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "social"
      "logo"
      "text";
  }
  .footer-logo { justify-self: center; }
}

@media (max-width: 360px) {
  .footer-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "social"
      "logo"
      "text";
  }
  .footer-logo { justify-self: center; }
}


 /* FOOTER VITAL SOLUTIONS */

.footer-vs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #24366d;
  color: white;
  padding: 15px 30px;
  flex-wrap: wrap; /* permite que bajen los hijos en pantallas pequeñas */
}

.footer-vs-text {
  width: 80%;
}

.footer-vs-logo {
  width: 20%;
  display: flex;
  justify-content: flex-end;
}

.footer-vs-logo img {
  max-height: 60px;
  height: 60px;
  width: auto;
}


/* Responsive pantallas de 1024px o menos */
@media (max-width: 1024px) {
  .footer-vs {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .footer-vs-logo {
    order: -1; /* Mueve el logo arriba */
    width: 100%;
    justify-content: center;
  }

  .footer-vs-text {
    width: 100%;
  }
}

/* Responsive pantallas de 768px o menos */
@media (max-width: 768px) {
  .footer-vs {
    padding: 15px 20px;
  }

  .footer-vs-logo img {
    max-height: 55px;
  }
}

/* Responsive pantallas de 480px o menos */
@media (max-width: 480px) {
  .footer-vs {
    padding: 10px 15px;
  }

  .footer-vs-logo img {
    max-height: 50px;
  }

  .footer-vs-text {
    font-size: 14px;
  }
}

/* Responsive pantallas de 360px o menos */
@media (max-width: 360px) {
  .footer-vs {
    padding: 10px;
  }

  .footer-vs-logo img {
    max-height: 45px;
  }

  .footer-vs-text {
    font-size: 13px;
  }
}




/* FORMULARIO DE CONTACTO */

 .content-contacto{
  width: 80%;
  max-width: 1200px;
  height: auto;
     margin: 0 auto; /* CENTRA el div horizontalmente */
     position: relative; /* opcional, si se necesita posicionar hijos relativos a este */
     display: flex; /* activamos Flexbox */
     flex-direction: row; /* para que los hijos estén uno al lado del otro */
	 }

.farodiv{
    width: 50%;
    display: block;
	position: relative;
    float: left;
	  box-sizing: border-box;
        }
 .faro{
    width: 100%;
	   border-radius: 6px;
        }

 .formdiv{
    width: 50%;
	 position: relative;
    display: block;
  text-align: left;
  float: left;
        }
        .conttel div {
    left: 32px;
}
 
  .titform{
     width: 50%;
     margin: 0px auto;
     position: relative;
     display: block;
        }

     h1{
      font-family: 'Poppins';
      font-size: 26px;
      color: #005796;
      font-weight: 500;
	  letter-spacing: 0.1em;
      text-align: center;	
	  margin: 10px auto;	 
/*
     position: relative;
     display: block;
*/
        }
    .formdiv input[type="submit"]{
        color: #ffffff;
		width: 25%;
	background-color: #005796;
    border: none;
    padding: 5px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Poppins';
		text-align: center;
    font-size: 15px;
    margin: 20px 30px;
    transition: background-color 0.3s ease;
}

.formdiv input[type="submit"]:hover {
    background-color: #1D3A68;
}	
    
    .contenido input{
        width: 80% !important;
    }

    .iti--allow-dropdown{
        width: 85% !important;
    }
    #phone{
        margin-right:100px !important;
    }
    
/*
    .contenido textarea{
        width: 70% !important;
        height: 300px;
    }
*/

   form label{
     display: block;
     margin: 10px 0px 3px 30px;
     color: #525252;
	 font-family: 'Poppins';
	 font-weight: normal;
	 font-size: 15px;


        }
   form input{
     display: block;
     color: gray;
     margin: 5px 30px;
     padding: 6px 10px;
     border-radius: 10px;
/*   border-style:solid;*/
	 border: 1px solid #525252;
	 width: 70%;
	   height: 35px;
        }

   form textarea{
     display: block;
     color: gray;
     margin: 5px 30px;
     width: 80%;
     height: 120px;			
     padding: 0 10px;
	 border: 1px solid #525252;
       }

.input-phone {
  width: clamp(70%, 90vw, 80%);
  margin: 0 auto;
  display: block;
}

/* Para pantallas de 1024px o menos */
@media screen and (max-width: 1024px) {
  .content-contacto {
    flex-direction: column;
    align-items: center;
  }

  .farodiv, .formdiv {
    width: 100%;
    float: none;
  }

  .formdiv input[type="submit"] {
    width: 50%;
    margin: 20px auto;
    display: block;
  }

  form input, form textarea {
    width: 80%;
    margin-left: 30px;
  }
}

/* Para pantallas de 768px o menos */
@media screen and (max-width: 768px) {
  .formdiv input[type="submit"] {
    width: 60%;
  }

  form input, form textarea {
    width: 85%;
  }
}

/* Para pantallas de 480px o menos */
@media screen and (max-width: 480px) {
  .titform {
    width: 80%;
  }
	

  .formdiv input[type="submit"] {
    width: 80%;
  }

  form input, form textarea {
    width: 90%;
    margin-left: 20px;
  }
}

/* Para pantallas de 360px o menos */
@media screen and (max-width: 360px) {
  .formdiv input[type="submit"] {
    width: 90%;
  }

  form input, form textarea {
    width: 95%;
    margin-left: 15px;
  }
}
