@font-face{
  font-family: 'AMFina';
  src: url('/fonts/AMFinav1-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.poppins {
    font-family: 'Poppins', sans-serif;
}

.raleway {
    font-family: "Raleway", sans-serif;
}

/** HEADER **/

:root { 
	--hg-pill:#BBDDE6;
	--hg-dark-blue:#00263A;
	--hg-light-blue:#04ADC7;
}

#menu_principal {
	box-shadow: 0 1.67px 8.35px 0 rgba(0, 0, 0, 0.25);
	transition: background 1.0s;
}

#logo-header-container {
	width: 150px;
	align-items: center;
	text-align: center;
}

#logo-header {
	height: 60px;
	transition: height 1.0s;
}

#logo-header-mobile {
	height: 40px;
}


.boton_asistente_menu {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px 8px 8px;
  border-radius: 34px;
	  background: var(--hg-light-blue, #04ADC7);
  border: 1px solid var(--hg-light-blue, #04ADC7);
  color: #FFF;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;                  /* ← antes 16px */
  text-decoration: none;           /* opcional */
  transition: background .2s, color .2s, box-shadow .2s;
}

.boton_asistente_menu img {
  width: 36px;
  height: 36px;
  border-radius: 100%;
  display: block;
}

.boton_asistente_menu:hover {
    color: var(--hg-light-blue, #04ADC7);
    background: white;
    border: 1px solid var(--hg-light-blue, #04ADC7);
}

.boton_asistente_menu:hover img {
    -webkit-box-shadow: 1px 1px 2px 2px rgba(0,0,0,0.15);
    -moz-box-shadow: 1px 1px 2px 2px rgba(0,0,0,0.15);
    box-shadow: 1px 1px 2px 2px rgba(0,0,0,0.15);
}

.menu_group_bar {
  border-radius: 10px;
  background-color: var(--hg-pill, #BBDDE6);
  border: 1px solid var(--hg-pill, #BBDDE6);
  color: #00263A;
}

.menu_group_bar li a {
  	color: var(--hg-dark-blue, #00263A);
	font-family: 'Poppins', sans-serif;
	font-style: normal;
	font-weight: 400;
}

.menu_group_bar li a:hover,
.menu_group_bar li a:focus {
  	color: var(--hg-dark-blue, #00263A);
	font-weight: 600;
}

.header-buscador{
  width: 40px;
  height: 40px;
  line-height: 1;        /* evita “saltos” */
  box-sizing: border-box;/* por si tu reset no es border-box */
}

.header-buscador:hover {
    border: 1px solid var(--hg-light-blue, #04ADC7);
    background: white;
    color: var(--hg-light-blue, #04ADC7);
}

.btn-flag{
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;   /* la bandera llena el círculo */
  line-height: 1;
  box-sizing: border-box;   /* el borde cuenta dentro de 40px */
}

.btn-flag:focus-visible{
  outline: 2px solid #000;  /* accesible */
  outline-offset: 2px;
}

.dropdown-item.active {
	background: var(--hg-light-blue, #04ADC7);
}


/** FOOTER **/

.bloque{
  display: grid;
  gap: 16px;                         /* opcional */
  grid-template-columns: 2fr 1fr 1fr 1fr;  /* 2/5 + 1/5 + 1/5 + 1/5 */
}

@media (max-width: 991.98px){
  .bloque{ grid-template-columns: 1fr; }
  .c1-inner{ width: 100%; }
}

.c1-inner { width:66%; max-width: 720px; }

@media (min-width: 992px){
  .c1-inner{
    width: 66%;
    box-sizing: border-box;       /* por si añades padding/borde */
    /* opcional: centrado o alineado */
    /* margin-inline: auto;        /* centrado dentro de la col */
    /* margin-inline: 0;           /* alineado a la izquierda (por defecto) */
  }
}

@media (max-width: 576px){           /* mobile */
  .bloque{
    grid-template-columns: 1fr;      /* una debajo de otra */
  }
}

.content_newsletter {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}

.row_links_footer .content_newsletter h3 {
	font-family: 'AMFina', sans-serif;
	color: #fff;
	text-align: center;
	font-size: 105px;
	font-style: normal;
	font-weight: 400;
}


/** MENU **/

.logo_menu_mobile {
    padding-left: 0;
    padding-right: 0;
    margin-right: 6px;
}



