/*--------------------------------------------------------------------- File Name: style.css ---------------------------------------------------------------------*/


/*--------------------------------------------------------------------- import Fonts ---------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Rajdhani:300,400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');

/*********************************
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;
}
.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;
}
.recuadro {
  border-style: solid;
  border-width: 1px;
  border-color: #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;
}
.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;
}
.menu_lateral{
  margin: 0px;
  padding: 0px;
	justify-content: center;
}
.comment-info {
	font-size: 0.8em;
}
.comment-row {
	border-bottom: #e0dfdf 1px solid;
	margin-bottom: 15px;
	padding: 15px;
}
span.posted-by {
	color: #09F;
}
span.posted-at {
    color: #929292;
}
.introducc{
  margin-top: 20px;
  background-color: transparent !important;
  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: 200px;
  height: auto;
}
.vertical-line {
    border-left: solid 1px #DCDCDC;
    margin: 0px;
    padding: 20px;
		display: flex;
    flex-direction: column;
    gap: 25px; /* 🔥 separación entre banners */
}
.contenido_blog{
  margin: 0px;
  padding: 10px;
	justify-content: center;
}
.cont_blog_sec h3{
font-size: 15px;
}

/* 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---------------------------------------------------------------------*/
@keyframes desaparecer
{
0%		{bottom: 0px;}
80%		{bottom: 0px;}
100%		{bottom: -50px;}
}

@-webkit-keyframes desaparecer /* Safari and Chrome */
{
0%		{bottom: 0px;}
80%		{bottom: 0px;}
100%		{bottom: -50px;}
}

@keyframes aparecer
{
0%		{bottom: -38px;}
10%		{bottom: 0px;}
90%		{bottom: 0px;}
100%		{bottom: -38px;}
}

@-webkit-keyframes aparecer /* Safari and Chrome */
{
0%		{bottom: -38px;}
10%		{bottom: 0px;}
90%		{bottom: 0px;}
100%		{bottom: -38px;}

}
#cookiesms1:target {
    display: none;
}
.cookiesms{
	width:100%;
	height:43px;
	margin:0 auto;
	padding-left:1%;
  padding-top:5px;
  font-size:20px;
	clear:both;
  font-weight: strong;
color: #333;
bottom:-50px;
position:fixed;
left: 0px;
background-color: #FFF;
opacity:0.7;
filter:alpha(opacity=70); /* For IE8 and earlier */
transition: bottom 1s;
-webkit-transition:bottom 1s; /* Safari */
-webkit-box-shadow: 3px -3px 1px rgba(50, 50, 50, 0.56);
-moz-box-shadow:    3px -3px 1px rgba(50, 50, 50, 0.56);
box-shadow:         3px -3px 1px rgba(50, 50, 50, 0.56);
z-index:999999999;
}

.cookiesms:hover{
bottom:0px;
opacity:1;
}
.cookies2{
background-color: #FFF;
display:inline;
opacity:0.95;
filter:alpha(opacity=95);
position:absolute;
left:1%;
top:-30px;
font-size:15px;
height:30px;
padding-left:25px;
padding-right:25px;
-webkit-border-top-right-radius: 15px;
-webkit-border-top-left-radius: 15px;
-moz-border-radius-topright: 15px;
-moz-border-radius-topleft: 15px;
border-top-right-radius: 15px;
border-top-left-radius: 15px;
-webkit-box-shadow: 3px -3px 1px rgba(50, 50, 50, 0.56);
-moz-box-shadow:    3px -3px 1px rgba(50, 50, 50, 0.56);
box-shadow:         3px -3px 1px rgba(50, 50, 50, 0.56);
}
.button-14 {
  background-image: linear-gradient(#f7f8fa ,#e7e9ec);
  border-color: #adb1b8 #a2a6ac #8d9096;
  border-style: solid;
  border-width: 1px;
  border-radius: 3px;
  box-shadow: rgba(255,255,255,.6) 0 1px 0 inset;
  box-sizing: border-box;
  color: #0f1111;
  cursor: pointer;
  display: inline-block;
  font-family: "Amazon Ember",Arial,sans-serif;
  font-size: 14px;
  height: 29px;
  font-size: 13px;
  outline: 0;
  overflow: hidden;
  padding: 0 11px;
  text-align: center;
  text-decoration: none;
  text-overflow: ellipsis;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
}

.button-14:active {
  border-bottom-color: #a2a6ac;
}

.button-14:active:hover {
  border-bottom-color: #a2a6ac;
}

.button-14:hover {
  border-color: #a2a6ac #979aa1 #82858a;
}

.button-14:focus {
  border-color: #e77600;
  box-shadow: rgba(228, 121, 17, .5) 0 0 3px 2px;
  outline: 0;
}

/*--------------------------------------------------------------------- ---------------------------------------------------------------------*/
.btn {
     text-decoration: none !important;
     outline: none !important;
     -webkit-transition: all .3s ease-in-out;
     -moz-transition: all .3s ease-in-out;
     -ms-transition: all .3s ease-in-out;
     -o-transition: all .3s ease-in-out;
     transition: all .3s ease-in-out;
}

 :focus {
     outline: 0;
}

.btn-custom {
     margin-top: 20px;
     background-color: transparent !important;
     border: 2px solid #ddd;
     padding: 12px 40px;
     font-size: 16px;
}

.lead {
     font-size: 18px;
     line-height: 30px;
     color: #767676;
     margin: 0;
     padding: 0;
}

.form-control {
     border: #c2c4c4 solid 1px;
     padding: 7px 15px;
     border-radius: inherit;
     margin-bottom: 10px;
     color: #cfcece;
}
.form-control:hover {
     box-shadow: none;
}
.form-control:focus {
     border-color: #ffffff !important;
     box-shadow: 0 0 0 .2rem rgba(255, 255, 255, .25);
}

.navbar-form input {
     border: none !important;
}

.badge {
     font-weight: 500;
}

/**-- Cabecera --**/
.full {
     width: 100%;
     float: left;
     margin: 0;
     padding: 0;
}
/************************************************************************************************************************************
3. Header      CABECERA
************************************************************************************************************************************/
/* HEADER */
.header {
    position: relative;
    width: 100%;
    height: 150px;
    border-radius: 20px;
    background: linear-gradient(rgba(0,0,0,0.32), rgba(0,0,0,0.32)), url(../images/header-bg.jpg) no-repeat center/cover;
    box-shadow: 0 0 3px #060606;
    z-index: 999;
}

/* TOP BAR */
.header .header-information {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 900px;
    height: 50px;
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 15px;
    z-index: 1000;
}
.header .header-information::after {
    content: "";
    position: absolute;
    left: -41px;
    top: 0;
    width: 41px;
    height: 50px;
    background: url('../images/top_arrow.png') no-repeat center/contain;
    z-index: 1001;
}

.header .header-information ul {
    display: flex;
    gap: 40px;
    list-style: none;
}
.header .header-information ul li {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* MAIN HEADER */
.header .header-main {
    display: flex;
    align-items: center;        /* logo centrado verticalmente */
    justify-content: space-between;
    padding: 0 20px;
    height: 100%;
    position: relative;
}
/* LOGO + NOMBREWEB: contenedor izquierdo */
.header .logo-nombre {
    display: flex;
    align-items: center;
    gap: 15px;                  /* espacio entre logo y nombre */
}
/* LOGO */
.header .logo {
    display: flex;
    align-items: center;           /* centrado vertical */
    height: 100%;
}
/* LOGO */
.header .logo img {
    height: 100px;
    width: auto;
    display: block;
}

/* NOMBREWEB */
.header .nombreWeb img {
    max-height: 50px;
    width: auto;
}
.header .nombreWeb {
transform: translateY(25px);
}
/* RIGHT AREA: fila horizontal pero bajada un poco */
.header .right-area {
    display: flex;              /* fila horizontal */
    align-items: center;        /* centra verticalmente los elementos */
    gap: 15px;
    transform: translateY(25px); /* baja toda la fila ligeramente */
}


.header .main-menu {
    display: flex;
    gap: 20px;
}
.header .app-download {
    display: flex;
    gap: 8px;
}
.header .main-menu a {
    text-decoration: none;
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
}
.header .main-menu a:hover {
    color: #ffb606;
}
.header .app-download img {
    height: 30px;
}

/* HAMBURGER */
.header .hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
    background: none;
    border: none;
    color: #fff;
}

/* CONTENEDOR */
.menu-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 270px;
    height: 100%;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    transition: 0.4s ease;
    padding: 20px;
    z-index: 999;

    display: flex;
    flex-direction: column;
}

/* ACTIVO */
.menu-container.active {
    right: 0;
}

/* BOTÓN CERRAR */
.menu-container .menu-close {
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    color: #fff;
    align-self: flex-end;
}

/* LISTA */
.menu-container ul {
    list-style: none;
    margin-top: 40px;
    padding: 0;
}

/* ITEMS */
.menu-container li {
    margin-bottom: 12px;
    opacity: 0;
    transform: translateX(20px);
    animation: fadeSlide 0.4s forwards;
}

/* ANIMACIÓN ESCALONADA */
.menu-container.active li:nth-child(1) { animation-delay: 0.1s; }
.menu-container.active li:nth-child(2) { animation-delay: 0.2s; }
.menu-container.active li:nth-child(3) { animation-delay: 0.3s; }
.menu-container.active li:nth-child(4) { animation-delay: 0.4s; }

/* LINKS */
.menu-container a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    font-size: 17px;
    transition: all 0.3s ease;
}

/* ICONOS */
.menu-container i {
    width: 22px;
    text-align: center;
    font-size: 18px;
}

/* HOVER */
.menu-container a:hover {
    background: rgba(255,255,255,0.08);
    transform: translateX(6px);
}

/* LINK ACTIVO */
.menu-container a.active {
    background: linear-gradient(90deg, #ff4d6d, #ff7a18);
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 77, 109, 0.5);
}

/* REDES */
.menu-container .social-links {
    margin-top: auto;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
}

.menu-container .social-links ul {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-container .social-links a {
    font-size: 20px;
    color: #fff;
    transition: 0.3s;
}

/* HOVER REDES */
.menu-container .social-links a:hover {
    color: #ff4d6d;
    transform: scale(1.25);
}

/* KEYFRAMES */
@keyframes fadeSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* RESPONSIVE */
@media (max-width: 992px) {
    .header .main-menu { display: none; }
    .header .hamburger { display: block; }
    .header .header-information { display: none; }
    .header .header-main { padding: 15px; }
    .header .logo img { height: 80px; }
    .header .nombreWeb img { max-height: 40px; }
}
/* ------------------------------------------------------------------- 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;
}
/*--------------------------------------------------------------------- layout new css ---------------------------------------------------------------------*/
.super_container
{
	width: 100%;
	overflow: hidden;
}
.blog {
  background-color: #19354a;
  padding-top: 0px;
  color: #FFF;
  border-radius: 20px;
}
.blog-box {
  padding: 15px 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;
  border-radius: 25px;
  background-color: #375563;
  margin-bottom: 10px;
}

.blog-box h2 a{
  font-size: 20px;
  line-height: 10px;
  color: #000;
  text-decoration:none;
}
.blog .blog-box h4 {
     font-size: 15px;
     line-height: 30px;
}
.blog .blog-box figure {
     margin: 0px;

}
.blog .blog-box  img {

  width: 100%;
  height: auto;
}
.blog .blog-box  figure img {

  width: 100%;
  height: auto;
}
.blog .blog-box  figure video {

  width: 100%;
  height: auto;
}
.blog .blog-box figure span {
     top: 0;
     left: 0px;
     position: relative;
     margin-left: 15px;
     background: #022739;
     padding: 10px 30px;
     color: #fff;
}
.blog .blog-box h3 {
     font-size: 20px;
     line-height: 30px;
}
.blog .blog-box p {
     font-size: 16px;
     line-height: 30px;
}

.blog .blog-box .travel_podcast p.autor {
     font-size: 15px;

     color:#000;
}
.blog .blog-box .travel_podcast p.titulo {
     font-size: 20px;
     margin: 0;
}
.blog .blog-box .travel_podcast {
     display: flex;
     flex-direction: column; /* Apilar el título y el autor en columna */
     align-items: flex-start; /* Alinear al inicio (izquierda) */
     gap: 15px;
     padding: 20px 20px;
     background-color: rgba(243, 243, 243, 0.9);
     color:#000;
     border-radius: 10px;
     margin-bottom: 10px;
}
.blog .blog-box .travel_podcast span {
     color: #13aba6;
     display: inline-block;
}
.blog .blog-box .travel_podcast p {
  font-size: 15px;
  padding: 0;
  margin: 0;
  line-height: 0px;
  color:#000
}
.sobrenos {
  background-color: #375563;
  text-align: left;
  padding: 15px 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;
}
#podcast {
  display: none;
}
.contenedorPolitica {
  padding: 10px 10px;
}
.titlepage h2::before,
.titlepage h2::after {
     content: "";
     position: absolute;
     height: 5px;

     top: 27px;
     width: 149px;
}
.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: #0d1d29;
}
.titlepage h2 {
     padding: 0px 0px 20px 0px;
     font-size: 16px;
     font-weight: bold;
     color: #FFF;
     position: relative;
     display: inline-block;
     cursor: pointer;
}
.titlepage span {
     text-align: left;
     color: #defcf3;
     font-size: 17px;
     line-height: 32px;
     display: block;
}
.titlepage h2::before {
     right: 100%;
     margin-right: 15px;
}
.titlepage h2::after {
     left: 100%;
     margin-left: 15px;
}
.titlepage img{
     width: 100%;
     height: auto;
}
.titlepage video{
     width: 100%;
     height: auto;
}
.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: #375563;
}
.banner-main .descriccionBanner{
  text-align: left;
  padding: 0px 10px;
  color: : #FFF;
}
.banner-main .descriccionBanner p{
  font-size: 15px;
  font-weight: normal;
  color: #FFF;
}
.banner-main h2 {
     font-size: 20px;
     font-weight: bold;
     padding-bottom: 25px;
     padding-top: 15px;
     padding-left: 10px;
     padding-right: 10px;
     color:#FFF;
}
.banner-main video {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;

}
.banner-main audio {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 95%;

}
.banner-main img {
  width: 100%;
  height: auto;

}
.banner-main p {
  font-size: 15px;
  font-weight: bold;
  padding-bottom: 25px;
  padding-top: 15px;
  color: #defcf3;
}

/************************************************************************************************************************************
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: #375563;
    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.cardblog-autor {
    margin-top: 0;
    font-size: 15px;
    line-height: 30px;
    color: #000;
}

.blog-tarjeta h2.cardblog-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;
    }

}
/********************* 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 */
.programas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  align-items: stretch;
}

/* CARD */
.programas-grid .card {
  width: 100%;
  height:100%; /* esto hace que todas tengan la misma altura */
  background: #fff;
  border-radius: 8px;
  border: 1px solid #ddd;
  overflow: hidden; /* importante para el zoom */
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* HOVER CARD */
.programas-grid .card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  border: 1px solid rgba(255, 102, 0, 0.4);
}

/* IMAGEN */
.programas-grid .card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.programas-grid .card:hover img {
  transform: scale(1.1);
}

/* OVERLAY */
.programas-grid .card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: 0.3s;
}

.programas-grid .card:hover::after {
  background: rgba(0,0,0,0.2);
}

/* BODY */
.programas-grid .card-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #fff;

}

/* TITULO */
.programas-grid .card-titulo {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
  margin-top: auto; /* fuerza que se empuje hacia abajo */
}

.programas-grid .card-titulo a {
  text-decoration: none;
  color: #333;
}

/* FOOTER */
.programas-grid .card-footer {
  margin-top: auto;
  background-color: #d9d9d9;
  border-radius: 15px;
}

/* AUTOR */
.programas-grid .card-autor {
  font-size: 13px;
  color: #3d3d3d;
  margin-left: 20px;
}

/* ANIMACIÓN */
.programas-grid .card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.5s ease forwards;
}

.programas-grid .card:nth-child(2) { animation-delay: 0.1s; }
.programas-grid .card:nth-child(3) { animation-delay: 0.2s; }
.programas-grid .card:nth-child(4) { animation-delay: 0.3s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Contenedor del botón */
.programas-grid .overlay-btn {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s;
  z-index: 2;
}

/* Mostrar al hover */
.programas-grid .card:hover .overlay-btn {
  opacity: 1;
}

/* Botón */
.programas-grid .btn-ver {
  background: rgba(255, 102, 0, 0.95);
  color: #fff;
  padding: 10px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transform: translateY(20px);
  transition: 0.3s;
}

/* Animación del botón */
.programas-grid .card:hover .btn-ver {
  transform: translateY(0);
}

/* Hover botón */
.programas-grid .btn-ver:hover {
  background: #e65c00;
}
/************************************************************************************************************************
       Modal Sin Bootstrap
*************************************************************************************************************************/
/* fondo modal */
/* CONTENEDOR MODAL */
.modal {
  position: fixed;
  inset: 0;                /* top:0; right:0; bottom:0; left:0; */
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s;
  z-index: 1000;           /* asegúrate que esté por encima */
}

/* MODAL ACTIVO */
.modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* CAJA MODAL */
.modal-box {
  position: absolute;           /* Fijo para centrado absoluto */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  opacity: 0;
  transition: all .3s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  z-index: 1001;
}

/* CAJA MODAL ACTIVA */
.modal.show .modal-box {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* HEADER */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  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;
}

.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);
}

/* FOOTER / ACCIONES */
.modal-footer,
.modal .actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* BOTONES */
.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;
}
@media (min-width: 992px) and (max-width: 1199px) {

    .banner-main .text-bg h1 {
        padding-bottom: 6px;
        padding-top: 25px;
        margin-top: 38px;
        font-size: 71px;
        line-height: 76px;
    }
    ul.location_icon li {
        padding-right: 20px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {


    .banner-main .text-bg h1 {
        font-size: 49px;
        padding-bottom: 6px;
        line-height: 60px;
        margin-top: 115px;
    }



    .blog .blog-box p {
        font-size: 14px;
    }

    ul.location_icon li {
        padding-right: 12px;
    }
}

@media (min-width: 599px) and (max-width: 767px) {

    .vertical-line{
      border-left:none ;
      margin: 0px;
      padding: 20px;
    }
    .banner-main .text-bg h1 {
        font-size: 33px;
        line-height: 39px;
    }

    .blog {
        padding-bottom: 0px;
    }
    .blog-box {
        margin-bottom: 20px;
    }
    ul.location_icon {
        margin-bottom: 25px;
    }


}
/*------------------------------------------------------------------- 599px x 280px ---------------------------------------------------------------------*/

@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: 150px;
    height: auto;
  }
  .vertical-line{
    border-left:none ;
    margin: 0px;
    padding: 20px;
  }



  .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;
  }
  .blog-box {
      margin-bottom: 20px;
  }

    .menu-area-main {
        height: 290px;
        overflow-y: auto;
    }
}
/************************************************************************************************************************************
15.2 Footer Content
************************************************************************************************************************************/
.footer {
     background-color: #022739;
     margin-top: 20px;
     color:#fff;
     font-family:'Roboto', sans-serif;
     font-size: 18px;
     line-height: 1.6;
     border-radius: 20px;
}
.footer .footer-box {
     margin-bottom: 10px;

}
.footer .footer-box h3 {
     color: #fff;
     font-size: 20px;
     line-height: 30px;
     font-weight: 600;
     text-transform: uppercase;
     border-width: 1px;
     display: inline-block;
     padding-bottom: 15px;
}
.footer .footer-box a {
  color: #fff;
  text-decoration: none;
}
.footer .footer-box a:hover {
  color: #ffb606;
}
.footer span {
     font-size: 17px;
     display: block;
     color: #fff;
}
.footer .container {
  max-width: 1200px;
  margin: auto;
}

.footer .social {
  text-align: center;
  margin-bottom: 20px;
  padding-top: 20px;
}

.footer .social a {
  color: #fff;
  margin: 0 10px;
  font-size: 25px;
}
.footer .social a:hover {
  color: #ffb606;
}
.footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}
/* Base común */
.footer .footer-box input,
.footer .footer-box textarea,
.footer .footer-box button {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  border-radius: 4px;
  box-sizing: border-box;
}

/* Inputs y textarea iguales */
.footer .footer-box input,
.footer .footer-box textarea {
  border: 1px solid #b1b0b0;
  margin-bottom: 10px;
  outline: none;
}

/* Focus consistente */
.footer .footer-box input:focus,
.footer .footer-box textarea:focus {
  border-color: #ff6600;
  box-shadow: 0 0 5px rgba(255, 102, 0, 0.3);
}

/* Textarea igual pero con altura controlada */
.footer .footer-box textarea {
  height: 65px;
  resize: none; /* opcional */
}

/* Botón alineado visualmente */
.footer .footer-box button {
  background: #ff6600;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

/* Hover */
.footer .footer-box button:hover {
  background: #e65c00;
}

/* Fila de inputs */
.footer .form-row {
  display: flex;
  gap: 10px;
}

.footer .form-row input {
  flex: 1;
}

.footer .copyright {
  text-align: center;
  margin-top: 1px;
  font-size: 14px;
  padding: 10px 0px 30px 0;
}
.footer .copyright p {
     color: #fff;
     font-size: 16px;
     text-align: center;
     max-width: 594px;
     text-align: center;
     margin: 0 auto;
     width: 100%;
     padding-top: 10px;
     border-top: #807d7d solid 1px;
}
.footer .copyright a {
     color: #fff;
}
.footer .copyright a:hover {
     color: #15cfe5;
}
