/* ----------------------------- */
/*             Reset            */
/* ----------------------------- */
* {
	box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
  }
  
  @font-face {
	font-family: Repsol;
	src: url(tipo/OpenType/Repsol-Bold.otf);
  }
  
  @font-face {
	font-family: RepsolRegular;
	src: url(tipo/OpenType/Repsol-Regular.otf);
  }
  
  body {
	margin: 0;
	font-family: 'Roboto', Arial, sans-serif;
	font-size: 20px;
	min-height: 100vh;
	background-color: #fafafa;
  }
  
  /* Estilo para enlace 'Saltar al contenido' */
  .skip-link {
	position: absolute;
	top: -40px;
	left: 0;
	background: #041e42;
	color: #fff;
	padding: 8px;
	z-index: 100;
	text-decoration: none;
	transition: top 0.3s;
  }
  .skip-link:focus {
	top: 0;
  }
  
  /* Mantener un foco visible para la accesibilidad */
  :focus {
	outline: 3px solid #006c83 !important;
	outline-offset: 2px;
  }
  
  /* Topnav */
  .navbar.navbar-default.topnav {
	padding: 11px;
	padding-left: 38px;
	background-color: white;
	border-bottom: 1px solid #F2F2F2;
	z-index: 5;
  }
  
  /* Ajuste general de secciones */
  section {
	position: relative;
	width: 100%;
	opacity: 0;
	transition: opacity 0.7s ease-in-out;
  }
  
  /* Columnas y layout */
  .row {
	position: relative;
	width: 100%;
	margin: auto;
	z-index: 3;
  }
  
  .column {
	float: left;
	width: 50%;
	color: black;
  }
  
  /* Foco en botones y enlaces */
  button,
  a,
  .accesibilidad-btn {
	outline: none;
	text-decoration: none;
	cursor: pointer;
  }
  
  button:focus,
  button:active,
  a:focus,
  a:active,
  .accesibilidad-btn:focus,
  .accesibilidad-btn:active {
	outline: 3px solid #006c83 !important;
	outline-offset: 2px;
  }
  
  /* Botón de accesibilidad (posicionar abajo/derecha) */
  .accesibilidad-btn {
	position: absolute;
	right: 0;
	bottom: 0;
	margin: 10px;
	z-index: 8;
	display: inline-block;
  }
  
  /* Adaptaciones responsivas y estilos heredados del archivo original */
  .tipoRepsol {
	font-family: Repsol;
  }
  
  .tipoRepsolRegular {
	font-family: RepsolRegular;
  }
  
  /* Clases para la animación en transitions.js */
  .live {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 80%;
	padding: 30px;
	margin: auto;
  }
  
  .live iframe {
	border-radius: 5px;
	background-color: transparent;
  }
  
  /* Barra lateral, contenedores, etc. - Se mantiene la lógica previa */
  .fondo {
	width: 58.33%;
	left: 8.33%;
	background-image: url('img/fondo.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	height: calc(100vh - 83px);
  }
  
  a:hover {
	text-decoration: none;
  }
  
  /* Breakpoints y responsive */
  @media screen and (max-width: 1024px) {
	.live {
	  width: 100%;
	}
	.fondo {
	  left: 0;
	  width: 58.33%;
	}
  }
  
  @media screen and (max-width: 840px) {
	.column.live {
	  width: 100%;
	}
	.fondo {
	  left: 0;
	  width: 100%;
	  height: 54vh;
	}
  }
  
  @media screen and (max-width: 500px) {
	.tipoRepsol {
	  font-size: 16px;
	}

	
	.topnav img {
	  height: 15px !important;
	  vertical-align: baseline;
	}

  }
