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

@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800|Roboto:400,500,700');
/*********************************
2. Body and some general stuff
*********************************/

*,
*::before,
*::after {
	margin:0;
	padding:0;
	box-sizing:border-box;
}
body
{
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 400;
  background: #000;
	color: #575757;
}
div
{
	position: relative;
  box-sizing: border-box;
}
ul
{
	list-style: none;
	margin-bottom: 0px;
}
p
{
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	line-height: 2.29;
	font-weight: 400;
	color: #a5a5a5;
	-webkit-font-smoothing: antialiased;
}
p a
{
	display: inline;
	position: relative;
	color: inherit;
	border-bottom: solid 1px #ffa07f;
	transition: all 200ms ease;
}
a
{
	text-decoration: none;
}
p a:active
{
	position: relative;
	color: #FF6347;
}
p a:hover
{
	color: #FFFFFF;
	background: #ffa07f;
}
p a:hover::after
{
	opacity: 0.2;
}
::selection
{
	background: #FFD266;
	color: #C88E00;
}
p::selection
{
	background: #FFD266;
	color: #C88E00;
}
h1{font-size: 36px;}
h2{font-size: 22px;}
h3{font-size: 18px;}
h4{font-size: 14px;}
h5{font-size: 11px;}
h1, h2, h3, h4, h5, h6
{
	font-family: 'Roboto', sans-serif;
	-webkit-font-smoothing: antialiased;
}
h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
h6::selection
{

}
::placeholder {
	font-size:14px;
	font-weight:500;
	color:#a5a5a5;
}

.form-control
{
	color: #db5246;
}
section
{
	display: block;
	position: relative;
	box-sizing: border-box;
}
.clear
{
	clear: both;
}
.clearfix::after {
	content:"";
	display:block;
	clear:both;
}
.float_left
{
	float: left;
}
.float_right
{
	float: right;
}
.trans_200
{
	transition: all 200ms ease;
}
.trans_300
{
	transition: all 300ms ease;
}
.trans_400
{
	transition: all 400ms ease;
}
.trans_500
{
	transition: all 500ms ease;
}
.fill_height
{
	height: 100%;
}
.super_container
{
	width: 100%;
	overflow: hidden;
}
.prlx_parent
{
	overflow: hidden;
}
.prlx
{
	height: 130% !important;
}
.nopadding
{
	padding: 0px !important;
}
.seccion {
  padding: 10px;
	margin-bottom: 30px;
}
.seccion iframe {
  border-radius: 20px;
}
/* Grid principal: contenido + sidebar */
.grid-principal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Contenido principal (similar a col-9) */
.contenido-main {
    flex: 1 1 70%; /* 70% ancho en desktop */
    min-width: 300px; /* para responsive */
}

/* Sidebar lateral (similar a col-3) */
.sidebar-lateral {
    flex: 1 1 25%; /* 25% ancho en desktop */
    min-width: 200px;
}


/* Responsive: apilar contenido y sidebar en móvil */
@media (max-width: 992px) {
    .grid-principal {
        flex-direction: column;
    }
    .contenido-main, .sidebar-lateral {
        flex: 1 1 100%;
    }
}
/*--------------------------------------------------------------------- cookies---------------------------------------------------------------------*/
.cookie-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 20px;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.3);
  z-index: 99999;
  font-family: sans-serif;
  box-sizing: border-box;
  display: none; /* Se controla con JavaScript */
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

/* En pantallas grandes ponemos el texto a un lado y botones al otro */
@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-content a {
  color: #3498db;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  white-space: nowrap;
}

.btn-cookie {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}

/* Mismo peso visual para ambos botones, solo cambia el color base para identificar la acción */
.btn-cookie.accept {
  background-color: #2ecc71;
  color: #fff;
}
.btn-cookie.accept:hover { background-color: #27ae60; }

.btn-cookie.reject {
  background-color: #e74c3c;
  color: #fff;
}
.btn-cookie.reject:hover { background-color: #c0392b; }

/***************************************************************************************************
3. Header
***************************************************************************************************/
/* Header principal */
.header {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1318px;
    height: 80px;
    display: flex;
    justify-content: center;
    padding: 0 30px;
    background: rgba(255,255,255,0.9);
    border-radius: 12px;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Sombras completas con pseudo-elemento */
.header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15), 0 0 20px rgba(0,0,0,0.1) inset;
    pointer-events: none; /* que no bloquee clicks */
    z-index: -1;
}

.header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
		width: calc(100% - 279px);
		height: 100%;
}
.header_content::before
{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	box-shadow: 0px 20px 49px rgba(0,0,0,0.67);
	z-index: -1;
}
.header.scrolled
{
	top: 10px;
	height: 65px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.header.scrolled .header_content::before
{
	box-shadow: 0px 20px 49px rgba(0,0,0,0.17);
}
/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo img {
    display: block;
    max-height: 55px;
}
.logo_container
{
	display: inline-block;
	padding-left: 20px;
}
.logo span
{
	font-family:'Arial Black',sans-serif;
	font-size:22px;
	color:#000000;
	font-weight: 700; /* 🔥 negrita */
}
/* Navegación principal */
.main_nav_list {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main_nav_item a {
	font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #3a3a3a;
  transition: all 0.3s ease;
}
.main_nav_item a:hover {
    color: #ff4d6d;
}
.main_nav_item
{
	display: inline-block;
	margin-right: 0;
}
.main_nav_item:last-child
{
	margin-right: 0px;
}
/*********************************
3.4 Hamburger
*********************************/
/* Botón Hamburguesa Móvil */
.hamburger {
    background: transparent;
    border: none;
    color: #3a3a3a;
    font-size: 28px;
    cursor: pointer;
    display: none; /* Oculto en escritorio */
    padding: 4px 8px;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.hamburger:hover {
    background-color: rgba(255, 255, 255, 0.05);
}
/* Responsive: mostrar hamburger en móvil */
@media (max-width: 992px) {
    .main_nav_list {
        display: none;
    }
    .hamburger {
        display: block;
    }
		@media (max-width: 992px) {

		    .header {
		        height: 70px;
		        padding: 0 15px;
		    }

		    .header_content {
		        height: 100%;
		        display: flex;
		        align-items: center;
		    }

		    .logo_container {
		        padding-left: 0;
		        display: flex;
		        align-items: center;
		        height: 90%;
		    }

		    .logo img {
		        height: 80%;     /* 🔥 clave: ya no se desborda */
		        width: auto;
		        max-height: 55px; /* límite de seguridad */
		    }
				.logo span {
					font-size: clamp(18px, 4vw, 22px);
          font-weight: 700; /* 🔥 negrita */
		    }
		}
}

/*********************************
4. Menu
*********************************/
.menu_container {
    display: none;
    position: fixed;
    top: 0;
    right:-100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: #1a1a1a;
    color: #fff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.5);
    z-index: 200;
    padding:100px 40px;
    flex-direction: column;
}

.menu_container.active
{
	right:0;
}

.menu
{
	position: absolute;
	top:150px;
	left: 0;
	padding-left: 15%;
}
.menu_list
{
	transform: translateY(3.5rem);
	transition: all 1000ms 600ms ease;
	opacity: 0;
}
.menu_container.active .menu_list
{
	transform: translateY(0px);
	opacity: 1;
}
.menu_item
{
	margin-bottom:25px;
}

.menu_item a
{
	font-size:26px;
	font-weight:700;
	color:#333;
}
.menu_item a:hover
{
	color: #ffb606;
}
.menu_close_container
{
	position: absolute;
	top: 86px;
	right: 79px;
	width: 21px;
	height: 21px;
	cursor: pointer;
	text-align: right;
	transform: rotate(45deg);
}
.menu_close
{
	top: 9px;
	width: 21px;
	height: 3px;
	background: #3a3a3a;
	transition: all 200ms ease;
	font-size: 28px;
}
.menu_close::after
{
	display: block;
	position: absolute;
	top: -9px;
	left: 9px;
	content: '';
	width: 3px;
	height: 21px;
	background: #3a3a3a;
	transition: all 200ms ease;
}
.menu_close_container:hover .menu_close,
.menu_close_container:hover .menu_close::after
{
	background: #ffb606;
}

.menu_items {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.menu_items a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}
.menu_items a:hover {
    color: #ff4d6d;
}
/* Iconos SVG del menú móvil */
.menu_items li a svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    transition: transform 0.2s ease;
}
/* Redes sociales */
.menu_social {
    display: flex;
    gap: 15px;
    margin-top: auto;
}
.menu_social a {
    color: #fff;
    font-size: 20px;
}
.menu_social a:hover {
    color: #ff4d6d;
}
.menu_social svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}
/*********************************
3.2 Main Nav
*********************************/

.main_nav_container
{
	display: inline-block;
	margin-left: auto;
	padding-right: 93px;
}
.main_nav
{
	display:flex;
	gap:20px;
}
.main_nav a
{
	font-family:'Open Sans',sans-serif;
	font-size:14px;
	font-weight:700;
	text-transform:uppercase;
	color:#3a3a3a;
	position:relative;
	transition:.3s;
}
.main_nav a::after
{
	content:"";
	position:absolute;
	left:0;
	bottom:-5px;
	width:0;
	height:2px;
	background:#ffb606;
	transition:.3s;
}
.main_nav a:hover::after
{
	width:100%;
}
/*********************************
4.1 Menu Social
*********************************/


.menu_container.active .menu_social_container
{
	transform: translateY(0px);
	opacity: 1;
}

/*********************************
8. Buttons
*********************************/

.button
{
	cursor: pointer;
}
.button:hover
{
	box-shadow: 0px 10px 20px rgba(0,0,0,0.2);
}
.button a
{
	font-size: 14px;
	line-height: 48px;
	font-weight: 700;
	text-transform: uppercase;
}
.button_1
{
	width: 202px;
	height: 48px;
}

/************************************************************************************************************************************
9.Blog
************************************************************************************************************************************/
/********************* Leer Tarjetas blogs *********************/
.blog_contenedor {
    margin-top: 20px;
}

.blog-tarjeta {
    padding: 15px 15px 30px;
    width: 100%;
    position: relative;
    box-shadow: rgba(0,0,0,0.15) 0px 7px 14px,
                rgba(0,0,0,0.12) 0px 5px 5px;
    border-radius: 25px;
    background-color: #532127;
    margin-bottom: 10px;
}

.blog-tarjeta h2 a {
    font-size: 20px;
    line-height: 10px;
    color: #FFF;
    text-decoration: none;
}

.blog-tarjeta h3 {
    font-size: 20px;
    line-height: 30px;
}

.blog-tarjeta h4 {
    font-size: 15px;
    line-height: 30px;
}

.blog-tarjeta figure {
    margin: 0;
}

/* eliminamos duplicado img */
.blog-tarjeta img,
.blog-tarjeta figure video {
    width: 100%;
    height: auto;
}

.blog-tarjeta figure span {
    position: relative;
    margin-left: 15px;
    background: #022739;
    padding: 10px 30px;
    color: #fff;
}

.blog-tarjeta .travel {
    padding: 6px 14px;
    background-color: rgba(243,243,243,0.9);
    color: #000;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: block;
    width: 100%;
    transition: all 0.3s ease;
}

.blog-tarjeta .travel:hover {
    background-color: #000;
    color: #fff;
}

.blog-tarjeta .travel span {
    color: #13aba6;
    display: inline-block;
}

.blog-tarjeta .travel p {
    float: right;
    padding-left: 15px;
}

.blog-tarjeta .travel h2.autor {
    margin-top: 0;
    font-size: 15px;
    line-height: 30px;
    color: #000;
}

.blog-tarjeta h2.titulo {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    margin: 10px 0;
		color: white;
}

/* responsive */
@media (max-width: 599px) {

    .blog-tarjeta {
        margin-bottom: 20px;
    }

    .blog-tarjeta .travel p {
        padding-left: 8px;
        font-size: 12px;
    }

    .blog-tarjeta .travel span {
        font-size: 13px;
    }

}
/***************************************************************/

.contenido_blog {
    margin: 0px;
    padding: 10px;
    justify-content: center;
}

.cont_blog_sec h3 {
    font-size: 15px;
}

.introducc {
    margin-top: 20px;
    background: linear-gradient(90deg, rgba(15,1,255,1) 0%, rgba(6,0,163,1) 0%, rgba(3,118,130,1) 100%);
    border: 2px solid #ddd;
    padding: 12px 40px;
    font-size: 16px;
    color: white;
    min-height: 200px;
}

.introducc img {
    float: left;
    padding: 10px 40px 15px 0px;
    width: 150px;
    height: auto;
}

.vertical-line {
    border-left: solid 1px #DCDCDC;
    margin: 0px;
    padding: 20px;
		display: flex;
    flex-direction: column;
    gap: 25px; /* 🔥 separación entre banners */
}

.compartir-like {
    padding: 15px 20px;
}

.compartir-like span {
    color: #13aba6;
    display: inline-block;
}

.compartir-like strong {
    font-size: 0.8em;
}

.compartir-like p {
    float: right;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 0.8em;
    border-left: 1px solid #C4C4C4;
    cursor: pointer;
}

.compartir-like img {
    width: 22px;
    padding-right: 5px;
}

.modal-title h5 {
    padding: 0px;
    color: #000;
    font-size: 18px;
    text-align: center;
}

.recuadro {
    border: 1px solid #E8E8E7;
    font-size: 8px;
    padding: 10px;
}

.recuadro h1 {
    font-size: 18px;
}

.recuadro input {
    width: 100%;
    font-size: 15px;
    background-color: #E8E8E7;
    border-color: #B9B9B9;
}

.recuadro-img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.recuadro-img img {
    width: 80px;
    height: auto;
    padding-left: 10px;
    padding-right: 10px;
}

.contenidoCosas {
    padding: 10px;
    background-color: white;
}

/*------------------ Responsive 280px - 599px ------------------*/
@media only screen and (min-width: 280px) and (max-width: 599px) {
    .cookiesms {
        font-size:16px;
        height:58px;
    }
    .compartir-like p {
        float: right;
        padding-left: 5px;
        padding-right: 5px;
        font-size: 0.8em;
        border-left: 1px solid #C4C4C4;
        cursor: pointer;
    }
    .compartir-like img {
        width: 25px;
        padding-right: 5px;
    }
    .introducc img {
        width: 120px;
        height: auto;
    }
    .vertical-line {
        border-left:none;
        margin: 0px;
        padding: 20px;
    }
    .header_information {
        display: none;
    }
    .header {
        padding-bottom: 0px;
    }
    .banner-main img {
        width: 100%;
        height: auto;
    }
    .banner-main .text-bg h1 {
        font-size: 35px;
        line-height: 42px;
        margin-top: 97px;
    }
    .blog {
        padding-bottom: 0px;
    }

}

/*------------------- Contenido Blog -------------------*/
.blog {
    background-color: #70222b;
    padding-top: 0px;
    color: #FFF;
    border-radius: 20px;
}

.sobrenos {
    background-color: #375563;
    text-align: left;
    padding: 15px;
    padding-bottom: 30px;
    width: 100%;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 7px 14px, rgba(0, 0, 0, 0.12) 0px 5px 5px;
    display: none;
}

.contenedorPolitica {
    padding: 10px;
}

.titlepage {
    text-align: left;
    padding: 20px;
    width: 100%;
    margin-bottom: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 7px 14px, rgba(0, 0, 0, 0.12) 0px 5px 5px;
    border-radius: 10px 100px / 120px;
    background-color: #532127;
}

.titlepage h2 {
    padding: 0px 0px 20px 0px;
    font-size: 16px;
    font-weight: bold;
    color: #FFF;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.titlepage h2::before,
.titlepage h2::after {
    content: "";
    position: absolute;
    height: 5px;
    top: 27px;
    width: 149px;
}

.titlepage span {
    text-align: left;
    color: #defcf3;
    font-size: 17px;
    line-height: 32px;
    display: block;
}

.titlepage img,
.titlepage video {
    width: 100%;
    height: auto;
}

.blogs figure span {
    top: 0;
    left: 0px;
    position: relative;
    margin-left: 15px;
    background: #022739;
    padding: 10px 30px;
    color: #fff;
    display: inline;
}

.blogs h2 {
    padding: 0px;
    font-size: 12px;
    font-weight: bold;
    color: #FFF;
    position: relative;
    display: block;
    cursor: default;
}

.blogs h2.autor {
    margin-top:0px;
    font-size: 15px;
    line-height: 30px;
    color:#000;
}



.blogs {
    display: block;
    width: 100%;
}
/************************************************************************************************************************************
9.Banners
************************************************************************************************************************************/
.banner-main {
  position: relative;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
              rgba(0, 0, 0, 0.22) 0px 10px 10px;
  border-radius: 25px;
  background-color: #532127;
  overflow: hidden; /* 🔥 evita que sobresalgan bordes */

}

/* descripción */
.banner-main .descriccionBanner {
  text-align: left;
  padding: 10px;
  color: #FFF;
}

/* párrafos dentro de descripción */
.banner-main .descriccionBanner p {
  font-size: 15px;
  font-weight: normal;
  color: #FFF;
}

/* título */
.banner-main h2 {
  font-size: 20px;
  font-weight: bold;
  padding: 15px 10px 25px;
  color: #FFF;
}

/* media (video, audio, img) */
.banner-main video,
.banner-main audio,
.banner-main img {
  display: block;
  margin: 0 auto;
  width: 100%;
  border-radius: 15px; /* 🔥 más visual */
}

/* audio más estrecho */
.banner-main audio {
  width: 95%;
}

/* texto general */
.banner-main p {
  font-size: 15px;
  font-weight: bold;
  padding: 15px 10px 25px;
  color: #defcf3;
}


/* ------------------------------------------------------------------- Boton busqueda -----------------------------------------------------------------*/
.search__input {
  font-family: inherit;
  font-size: inherit;
  background-color: #f4f2f2;
  border: none;
  color: #303030;
  padding: 0.7rem 1rem;
  border-radius: 30px;
  width: 12em;
  transition: all ease-in-out .5s;
  margin-right: -2rem;
  margin-bottom: 20px;
}

.search__input:hover, .search__input:focus {
  box-shadow: 0 0 1em #00000013;
}

.search__input:focus {
  outline: none;
  background-color: #f0eeee;
}

.search__input::-webkit-input-placeholder {
  font-weight: 100;
  color: #303030;
}

.search__input:focus + .search__button {
  background-color: #f0eeee;
}

.search__button {
  border: none;
  background-color: #f4f2f2;
  margin-top: .1em;
}

.search__button:hover {
  cursor: pointer;
}

.search__icon {
  height: 1.3em;
  width: 1.3em;
  fill: #303030;
}
/************************************************************************************************************************************
15. Footer
************************************************************************************************************************************/
.footer {
    background:#111;
    color:#fff;
    padding:60px 0;
}

.container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.footer_grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

/*********************************
15.2 Footer Content
*********************************/

.footer_content .logo_container
{
	padding-left: 0px;
}
.footer_content .logo span
{
	color: #FFFFFF;
	font-size: 18px;
}
.footer_content .logo img
{
	width: 54px;
	height: 54px;
}
.footer_about_text
{
	margin-top: 24px;
	margin-bottom: 0px;
	padding-right: 20px;
}

.footer_column_title{
    font-weight:700;
    margin-bottom:15px;
}
.footer_column_content
{
	margin-top: 32px;
}
.footer_column_content ul{
    list-style:none;
    padding:0;
}

.footer_column_content a{
    color:#ccc;
    text-decoration:none;
}

.footer_column_content a:hover{
    color:#fff;
}
.footer_list_item
{
	margin-bottom: 11px;
}
.footer_list_item a
{
	font-size: 14px;
	color: #a5a5a5;
	transition: all 200ms ease;
}
.footer_list_item a:hover
{
	color: #ffb606;
}
.footer_contact_item
{
	font-size: 14px;
	font-weight: 400;
	color: #a5a5a5;
	margin-bottom: 22px;
}
.footer_contact_item:last-child
{
	margin-bottom: 0px;
}
.footer_contact_icon
{
	display: inline-block;
	width: 24px;
	height: 24px;
	vertical-align: middle;
	margin-right: 10px;
}
.footer_contact_icon img
{
	width: 100%;
}
@media (max-width:900px){

.footer_grid{
    grid-template-columns:repeat(2,1fr);
}
}

@media (max-width:600px){

.footer_grid{
    grid-template-columns:1fr;
}
.footer_bar{
    flex-direction:column;
    gap:15px;
}
}
/*********************************
15.3 Footer Copyright
*********************************/

.footer_bar{
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,0.1);
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.menu_social_item
{
	display: inline-block;
	margin-right: 30px;
	width: 30px;
	height: auto;
}

.footer_social .menu_social_item a i
{
	color: #FFFFFF;
}
.footer_social .menu_social_item a i:hover
{
	color: #ffb606;
}
.footer_social .menu_social_item:last-child
{
	margin-right: 0px;
}
.footer_social ul{
    display:flex;
    gap:15px;
    list-style:none;
}

@media only screen and (max-width: 1380px)
{
	.header
	{
		width: 1200px;
	}
	.header_content
	{
		width: calc(100% - 219px);
	}
	.main_nav_container
	{
		padding-right: 63px;
	}
	.header_side
	{
		width: 219px;
	}
	.header_side span
	{
		font-size: 14px;
	}
	.header_side img
	{
		width: 20px;
		height: 20px;
	}

}

/************
3. 1280px
************/

@media only screen and (max-width: 1280px)
{
	.header
	{
		width: 90%;
	}
	.header_content
	{
		width: 100%;
	}
	.header_side
	{
		display: none !important;
	}
	.main_nav_container
	{
		padding-right: 53px;
	}



}


/************
6. 991px
************/

@media only screen and (max-width: 991px)
{
	.main_nav_container
	{
		display: none;
	}


	.search_section
	{
		padding-top: 156px;
		padding-bottom: 161px;
	}

	.event_content p
	{
		margin-bottom: 0px;
	}

	.footer_col
	{
		margin-bottom: 30px;
	}
	.footer_col:last-child
	{
		margin-bottom: 0px;
	}

}
/************
10. 767px
************/

@media only screen and (max-width: 767px)
{

	.newsletter_email
	{
		width: 100%;
	}
	.newsletter_submit_btn
	{
		margin-top: 15px;
	}


}

/************
11. 575px
************/

@media only screen and (max-width: 575px)
{
	h1{font-size: 24px;}
	p{font-size:13px;}
	.header
	{
		height: 60px;

	}

	.hamburger
	{
		right: 5px;
	}
	.menu
	{
		top: 70px;
	}
	.menu_item
	{
		margin-bottom: 0px;
	}
	.menu_item a
	{
		font-size: 24px;
	}

	.menu_copyright
	{
		display: none;
	}
	.menu_social_container
	{
		margin-top: 50px;
	}
	.menu_close_container
	{
		right: 30px;
		top: 34px;
	}

	.footer_bar
	{
		padding-top: 49px;
		padding-bottom: 52px;
	}
	.footer_social
	{
		margin-top: 20px;
	}
	.footer_copyright span
	{
		font-size: 13px;
	}
}

/************
13. 479px
************/

@media only screen and (max-width: 479px)
{
	.header
	{
		height: 60px;
		top: 15px;
	}
}
/********************* Formulario blogs *********************/
/* SECCIÓN */
.comments-section {
  max-width: 700px;
  margin: 60px auto;
  padding: 20px;
}

/* TÍTULO */
.comments-section h3 {
  margin-bottom: 20px;
  font-size: 22px;
}

/* FORMULARIO */
.comment-form {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #eee;
}

/* GRUPOS */
.form-group {
  margin-bottom: 15px;
}

/* LABEL */
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

/* INPUTS */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.2s;
}

/* FOCUS */
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0,123,255,0.15);
}

/* BOTÓN */
.btn-send {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}

.btn-send:hover {
  background: #0056b3;
}

/* MENSAJE */
.msg {
  margin-top: 15px;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .comments-section {
    padding: 15px;
  }
}
/************************************************************************************************************************
       Tarjetas
*************************************************************************************************************************/

/* Grid principal */
.grid-novedades {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: stretch;
    margin-top: 20px;
}

/* Cada tarjeta */
.tarjeta-novedad {
    flex: 1 0 calc(33.333% - 15px);
    display: flex;
    flex-direction: column;
}

@media (max-width: 992px) {
    .tarjeta-novedad {
        flex: 1 0 calc(50% - 15px);
    }
}

@media (max-width: 600px) {
    .tarjeta-novedad {
        flex: 1 0 100%;
    }
}

/* Tarjeta podcast */
.cardnov-podcast {
    width: 100%;
		height:100%; /* esto hace que todas tengan la misma altura */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(26,26,26); /* fondo oscuro seguro */
    border-radius: 20px;
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s, box-shadow 0.3s, border 0.3s;
    cursor: pointer;
}

.cardnov-podcast:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.3);
}

/* hover normal */
.cardnov-podcast:hover .cardnov-img:not(.active) img{
    transform:scale(1.07);
		filter:brightness(1.05);
}
/* Imagen */
.cardnov-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    aspect-ratio: 1/1;
}

.cardnov-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Botón play */
.play-btn {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.7);
    color: #222;
    font-size: 24px;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
		backdrop-filter: blur(6px);
}

.play-btn:hover {
    background: #ff4d6d;
    color: #fff;
    transform: scale(1.25);
}
/* Contenido de la tarjeta */
.cardnov-body {
    padding: 18px 20px;
    color: #f0f0f0;
    text-align: left;
    flex-grow: 1; /* Ocupa todo el espacio disponible */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.cardnov-body h3 a {
    font-size: 1.15rem;
    margin-bottom: 10px;
    text-transform: capitalize;
    color: #ffffff;
		text-align: center;
}
.cardnov-body h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    text-transform: capitalize;
    color: #ffffff;
		text-align: center;
}

.cardnov-body .meta span {
    font-size: 0.85rem;
		line-height: 1.2; /* menos espacio entre líneas */
}
/* Meta información */
.cardnov-body .meta {
    font-size: 0.55rem;
    color: #d0d0d0;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1.2;
		margin-top: auto; /* fuerza que se empuje hacia abajo */
}
/* Info inferior */
.recuadro_inf {
    background: rgba(255,255,255,0.08);
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.88rem;
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: auto;
}

.recuadro_inf p {
    margin: 0;
    line-height: 1.1;
}

.recuadro_inf p:first-child {
    font-weight: 600;
}

.recuadro_inf p:last-child {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Botón de iVoox */
.ivoox-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.7);
    padding: 6px;
    border-radius: 50%;
    transition: all 0.3s;
}

.ivoox-btn:hover {
    background: #ff4d6d;
}

.ivoox-btn img {
    width: 24px;
    height: 24px;
}


.player-bar{
    margin-top:10px;
    opacity:0;
    max-height:0;
    overflow:hidden;
    transition:all 0.3s ease;
}

.player-bar.active{
    opacity:1;
    max-height:40px;
}

.progress{
    width:100%;
    height:6px;
    background:#ddd;
    border-radius:5px;
    overflow:hidden;
    cursor:pointer;
    position:relative;
}

.progress-inner{
    width:0%;
    height:100%;
    background:#fc0505;
    transition:width 0.2s;
}

.time{
    display:flex;
    justify-content:space-between;
    margin-top:4px;
    color:#bbb;
}
.time span {
	font-size:11px;
}

/* estado reproduciendo */
.cardnov-img.active{
    overflow:visible;
    transform:scale(0.9) translateY(10px);

}

/* vinilo */
.cardnov-img.active img{
    border-radius:50%;
		animation:vinylSpin 3s linear infinite;
		transform-origin:center;
}

/* surcos del vinilo */
.cardnov-img.active::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:50%;
    background:
        repeating-radial-gradient(
            circle,
            rgba(0,0,0,0.15) 0px,
            rgba(0,0,0,0.15) 1px,
            transparent 1px,
            transparent 4px
        ),
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25), transparent 60%);
    pointer-events:none;
}

/* agujero central */
.cardnov-img.active::after{
    content:"";
    position:absolute;
    width:16px;
    height:16px;
    background:#ddd;
    border-radius:50%;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    box-shadow: inset 0 0 0 3px white;
    z-index:3;
}
.cardnov-podcast,
.cardnov-img img{
    will-change: transform;
}
/* rotación */
@keyframes vinylSpin{
    from{transform:rotate(0deg);}
    to{transform:rotate(360deg);}
}

/* brazo del tocadiscos */
.tonearm{
    display:none;
}

.cardnov-img.active .tonearm{
    display:block;
    position:absolute;
    width:120px;
    height:4px;
    background:#ddd;
    top:-10px;
    right:-30px;
    transform-origin:left center;
    transform:rotate(25deg);
    border-radius:4px;
    animation:tonearmMove 0.8s ease forwards;
}

.cardnov-img.active .tonearm::after{
    content:"";
    position:absolute;
    left:-6px; /* cambia de right a left */
    top:-4px;
    width:10px;
    height:10px;
    background:#ff4d6d;
    border-radius:2px;
}
@keyframes tonearmMoveLeft{
    from{ transform:rotate(-5deg);}
    to{ transform:rotate(-45deg);}
}
@keyframes tonearmMove{
    from{ transform:rotate(5deg);}
    to{ transform:rotate(55deg);}
}
/************************************************************************************************************************
       Modal Sin Bootstrap
*************************************************************************************************************************/
/* fondo modal */
/* FONDO MODAL */
.modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.55);
  backdrop-filter: blur(4px); /* 🔥 efecto moderno */
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .3s ease, visibility .3s;
}

/* ACTIVO */
.modal.show{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

/* CAJA MODAL */
.modal-box{
  background:#fff;
  padding:25px;
  border-radius:12px;
  width:90%;
  max-width:600px;
  position:relative;

  /* 🔥 animación PRO */
  transform:translateY(-30px) scale(0.95);
  opacity:0;
  transition:all .3s ease;

  max-height:90vh;
  overflow-y:auto;

  /* 🔥 sombra premium */
  box-shadow:0 20px 50px rgba(0,0,0,0.25);
}

/* ACTIVO */
.modal.show .modal-box{
  transform:translateY(0) scale(1);
  opacity:1;
}

/* HEADER */
.modal-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:10px;
}

.modal-header h3,
.modal-header h5{
  margin:0;
  font-size:18px;
}

/* BOTÓN CERRAR */
.modal_close{
  background:none;
  border:none;
  font-size:22px;
  cursor:pointer;
  padding:6px 10px;
  border-radius:6px;
  transition:all .2s ease;
}

/* 🔥 hover PRO */
.modal_close:hover{
  background:#f1f1f1;
  color:#ff4d4d;
  transform:rotate(90deg);
}

/* BODY */
.modal-body{
  margin:15px 0;
}

/* INPUTS */
.modal input,
.modal textarea{
  width:100%;
  padding:10px;
  margin:8px 0 15px;
  border:1px solid #ddd;
  border-radius:6px;
  transition:.2s;
}

.modal input:focus,
.modal textarea:focus{
  outline:none;
  border-color:#007bff;
  box-shadow:0 0 0 2px rgba(0,123,255,0.2);
}

/* BOTONES */
.modal-footer,
.modal .actions{
  display:flex;
  justify-content:flex-end;
  gap:10px;
}

.modal .send{
  background:#007bff;
  color:#fff;
  border:none;
  padding:8px 15px;
  border-radius:6px;
  cursor:pointer;
  transition:.2s;
}

.modal .send:hover{
  background:#0056b3;
}

.modal .cancel{
  background:#e0e0e0;
  border:none;
  padding:8px 15px;
  border-radius:6px;
  cursor:pointer;
}

.modal .cancel:hover{
  background:#c7c7c7;
}
/************************************************************************************************************************
       Mostrar programa en modal
*************************************************************************************************************************/
.card-podcast {
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 6px 20px rgba(0,0,0,0.08);
    transition:all .25s ease;
    position: relative;
}

.card-podcast:hover {
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

/* Imagen */
.card-img {
    position: relative;
    overflow: hidden;
}

.card-img img {
    width:100%;
    height:auto;
    object-fit:cover;
    transition:transform .4s;
}

.card-podcast:hover img {
    transform:scale(1.08);
}

/* Gradiente oscuro */
.card-img::after {
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,.6), transparent);
}
/* Botón iVoox */
.ivoox-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ivoox-btn img {
    width: 100%;
    height: 100%;
}

/* contenido */
.card-body{
    padding:18px;
}

.card-body h3{
    font-size:18px;
    margin-bottom:6px;
}

.card-podcast .meta{
    font-size:13px;
    color:#777;
    margin-bottom:10px;
}

.card-podcast .descripcion{
    font-size:14px;
    color:#444;
    line-height:1.5;
}
