/*head background con animación*/

.context-logo {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 20%;
}

.context-logo img {
    display: block;
    margin: 0px auto;
    width: 7%;
}

@media (max-width: 768px) {
    .context-logo img {
        min-width: 80px;
    }
}


.area {
    background: -webkit-linear-gradient(45deg, #034159 0%, #025951 33%, #02735E 67%, #038C3E 100%);
    background: -moz-linear-gradient(45deg, #034159 0%, #025951 33%, #02735E 67%, #038C3E 100%);
    background: -o-linear-gradient(45deg, #034159 0%, #025951 33%, #02735E 67%, #038C3E 100%);
    background: linear-gradient(45deg, #034159 0%, #025951 33%, #02735E 67%, #038C3E 100%);
    width: 100%;
}

.area1 {
    height: 100%;
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
}

.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}

/*buscador*/
.search {
    margin-bottom: auto;
    margin-top: auto;
    background: none;
    padding: 10px;
}

input.search_input {
    color: black;
    border: 0;
    outline: 0;
    background: white;
    line-height: 70px;
    transition: width 0.4s linear;
    width: 94%;
    position: absolute;
    margin: 0 auto;
    border-radius: 40px;
    font-size: x-large;
}

.search:hover>.search_icon {
    background: rgba (58, 161, 155, .5);
}

.search_icon {
    position: absolute;
    right: 1rem;
    top: 2rem;
    height: 70px;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: white;
    background-color: #3aa19b
}

a:link {
    text-decoration: none
}

/* navbar horizontal */
nav.abajo {
    background: #3aa19b;
    transition: all 1s ease;
}

/* imagen destacada index */
.card {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.card-image {
    height: 10rem;
    object-fit: none;
}

/* imagen destacada post */
.card-img {
    overflow: hidden;
    height: auto;
    vertical-align: middle;
}

.card-img-post {
    height: 15rem;
    object-fit: none;
}

/* menu vertical */
.sidebar-container {}

.sidebar-navigation {
    padding: 0;
    margin: 0;
    list-style-type: none;
    position: relative;
}

.sidebar-navigation li {
    background-color: transparent;
    position: relative;
    display: inline-block;
    width: 100%;
    line-height: 20px;
}

.sidebar-navigation li a {
    padding: 10px 15px 10px 30px;
    display: block;
    color: #000;
    margin: 1px;
    border-left: 3px solid #399E98;
    background-color: rgba(57, 158, 152, .3);
}

.sidebar-navigation li .fa {
    margin-right: 10px;
}

.sidebar-navigation li a:active,
.sidebar-navigation li a:hover,
.sidebar-navigation li a:focus {
    text-decoration: none;
    outline: none;
}

.sidebar-navigation li::before {
    background-color: rgba(57, 158, 152, 1);
    position: absolute;
    content: "";
    height: 100%;
    left: 0;
    top: 0;
    -webkit-transition: width 0.2s ease-in;
    transition: width 0.2s ease-in;
    width: 0px;
    z-index: -1;
}

.sidebar-navigation li:hover::before {
    width: 100%;
}

/* menu vertical 2 */
.sidebar-container-two {}

.sidebar-navigation-two {
    padding: 0;
    margin: 0;
    list-style-type: none;
    position: relative;
}

.sidebar-navigation-two li {
    background-color: transparent;
    position: relative;
    display: inline-block;
    width: 100%;
    line-height: 20px;
}

.sidebar-navigation-two li a {
    padding: 10px 15px 10px 30px;
    display: block;
    color: #000;
    margin: 1px;
    border-radius: 5px;
    background-color: rgba(57, 158, 152, 1);
}

.sidebar-navigation-two li .fa {
    margin-right: 10px;
}

.sidebar-navigation-two li a:active,
.sidebar-navigation-two li a:hover,
.sidebar-navigation-two li a:focus {
    color: #fff;
    background-color: #ac203f;
}


/*formulario de busqueda*/
input.wp-block-search__input {
    border: 0;
    outline: 0;
}

input.wp-block-search__input:hover {
    border: 2px solid #3aa19b;
}

.wp-block-search__button:hover {
    background: #111 !important;
}

.wp-block-search__button {
    background: #3aa19b !important;
    color: white !important;
    border: 0 !important;
}

/*entradas*/
.mdtitleinicial {
    padding: 5px;
    margin: 50px 0;
    border-bottom: 8px solid #16A085;
    color: #000;
    text-align: center;
}

.mdtitle {
    padding: 15px;
    margin: 30px 0 20px 0;
    border-left: 8px solid #16A085;
    color: #000;
    text-align: left;
    background: rgba(0, 0, 0, 0.1);
}

.mdtitle-pro {
    border-left: 8px solid #1BF857;
    display: block;
    width: 95%;
    margin: auto;
    padding: 10px;
}

.mdtitle-contra {
    border-left: 8px solid #F81B1B;
    display: block;
    width: 95%;
    margin: auto;
    padding: 10px;
}

.mdtitle-text-x:before {
    content: "\02716";
    margin-right: 5px;
    position: relative;
    top: -10px;
    right: 15px;
    border: 1px solid #DF0101;
    border-radius: 50%;
    padding: 3px;
    background: #DF0101;
    color: #fff;
}

.mdtitle-text-chulo:before {
    content: "\02714";
    margin-right: 5px;
    position: relative;
    top: -10px;
    right: 15px;
    border: 1px solid #04B431;
    border-radius: 50%;
    padding: 3px;
    background: #04B431;
    color: #fff;
}

.mdtitle-text {
    font-family: Raleway, Arial, sans-serif;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.44);
    text-align: left;
    padding: 5px;
    display: block;
    width: 90%;
    margin: 15px auto;
    font-size: 16px;
}

.md-text {
    font-family: Raleway, Arial, sans-serif;
    background: #fff;
    text-align: left;
    padding: 5px;
    display: block;
    width: 90%;
    font-size: 16px;
}

.md-text-title {
    font-family: Raleway, Arial, sans-serif;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.44);
    text-align: center;
    padding: 5px;
    width: 90%;
    margin: 15px auto;
    font-size: 16px;
}

.md-text-c:before {
    content: "\02713";
    position: relative;
    border: 1px solid #04B431;
    padding: 3px;
    background: #04B431;
    color: #fff;
    margin: 0 5px 0 0;
    font-size: 10px;
    top: -2px;
    font-weight: 900;
}

.md-text-x:before {
    content: "\02715";
    position: relative;
    border: 1px solid #DF0101;
    padding: 3px;
    background: #DF0101;
    color: #fff;
    margin: 0 5px 0 0;
    font-size: 10px;
    top: -2px;
    font-weight: 900;
}

.md-cuadro {
    margin: 30px 0;
}

#md-cuadro {
    border: solid 0px #ff0000;
    height: 330px;
    overflow: auto;
    padding: 4px;
    width: auto;
}

#md-cuadro::-webkit-scrollbar {
    width: 6px;
    height: 0px;
}

#md-cuadro::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

#md-cuadro::-webkit-scrollbar-thumb {
    background-color: #dfdfdf;
    border-radius: 10px;
}

.mdir {
    margin-top: 1.5rem;
}

.mdir a {
    display: block;
    margin: 0 auto;
    text-align: center;
    text-decoration: none;
    color: #fff;
    padding: .8rem 1.5rem;
    /* relleno */
    background-color: #16A085;
    /* color de fondo */
    font-size: 1em;
    /* tamaño del texto */
    font-weight: 500;
    /* densidad del texto */
    color: #fff;
    /* color del texto */
    border-radius: 4px;
    /* bordes redondeados */
}

.mdir a:hover {
    cursor: pointer;
    background: #86f0b4;
    color: #16A085;
}

.mdir a:active {
    border-bottom: 4px solid #16A085;
}


/*Boton*/
.snip1582 {
    background-color: #c47135;
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    line-height: 1em;
    margin: 15px 40px;
    outline: none;
    padding: 12px 40px 10px;
    position: relative;
    font-weight: 700;
    border-radius: 5px;
}

.snip1582:before,
.snip1582:after {
    border-color: transparent;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    border-style: solid;
    border-width: 0;
    content: "";
    height: 24px;
    position: absolute;
    width: 24px;
}

.snip1582:before {
    border-color: #c47135;
    border-top-width: 2px;
    left: 0px;
    top: -5px;
}

.snip1582:after {
    border-bottom-width: 2px;
    border-color: #c47135;
    bottom: -5px;
    right: 0px;
}

.snip1582:hover,
.snip1582.hover {
    background-color: #c47135;
    color: #fff;
    text-decoration: none;
}

.snip1582:hover:before,
.snip1582.hover:before,
.snip1582:hover:after,
.snip1582.hover:after {
    height: 100%;
    width: 100%;
}

/*recomendar*/
.panel {
    margin: 10px 0;
    width: auto;
    padding: 10px;
    text-align: center;
    background: #639DBC;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.panel span {
    color: #fff;
    display: block;
    padding-bottom: 10px;
    border-bottom: 3px double #fff;
    margin-bottom: 10px;
    text-align: center;
    font-size: 25px;
}

/*botones*/
.button {
    cursor: pointer;
    display: block;
    color: white;
    font-weight: 500;
    border-radius: 5px;
    text-align: center;
}

.button:hover {
    background: rgba(18, 15, 15, 1);
    color: #fff;
    box-shadow: 0 0px 1px rgba(0, 0, 0, 0.2);
}

.button--kit {
    background: rgba(18, 15, 15, .8);
    padding: 1rem;
}

.button--mostrar {
    background: black;
    background: rgba(18, 15, 15, .8);
    margin: 0 auto;
    padding: 10px;
    width: 40%;
    margin-top: 10px;
}

/*formulario reviews*/
.glsr-review-form {
    padding: 20px;
    margin: 0 auto;
    margin-top: 20px;
}

/*resumen reviews*/
.glsr-reviews {
    padding: 20px;
    margin: 30px auto;
}

.glsr-review {
    box-shadow: 0 0 11px 5px rgba(238, 238, 238, 0.9);
    padding: 20px;
}

.glsr-review-title {
    text-align: center;
}

.glsr-review-rating {}

.glsr-review-date {}

.glsr-review-assigned_links {
    text-align: center;
}

.glsr-review-content {
    text-align: center;
}

.glsr-review-author {}

/*text cantidad reseñas*/
.glsr-summary-text {
    font-size: 13px !important;
    margin-top: 0px;
}

/*extrellas post home*/
.love .glsr-summary .glsr-star {
    background-size: 20px !important;
    height: 20px !important;
    width: 20px !important;
    margin: 1px;
}

#glsr_4778a4e1 .glsr-summary {
    box-shadow: 0 0 11px 5px rgba(238, 238, 238, 0.7);
    padding: 5px;
}

/*
.glsr-summary-rating {
    border: 1px solid yellow;
    padding: 0.5rem 1rem;
    border-radius: 15%;
    background: #e2902b;
}
*/
.glsr-summary-rating {}


/*reseñas*/
.glsr-review .glsr-star {
    margin: 1px;
}

/*divisor*/
.linea-divisor::after,
.linea-divisor::before {
    content: "";
    border: 4px solid khaki;
    height: 7px;
    background-color: darkkhaki;
    width: 50px
}

.astrodivider {
    margin: 4px auto;
    width: 90%;
    max-width: 100%;
    position: relative;
}

.astrodividermask {
    overflow: hidden;
    height: 20px;
}

.astrodividermask:after {
    content: '';
    display: block;
    margin: -25px auto 0;
    width: 100%;
    height: 25px;
    border-radius: 125px / 12px;
    box-shadow: 0 0 8px #049372;
}

.astrodivider span {
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: 100%;
    margin-bottom: -25px;
    left: 50%;
    margin-left: -25px;
    border-radius: 100%;
    box-shadow: 0 2px 4px #4fb39c;
    background: #fff;
}

.astrodivider i {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 4px;
    right: 4px;
    border-radius: 100%;
    border: 1px dashed #68beaa;
    text-align: center;
    line-height: 40px;
    font-style: normal;
    color: #049372;
}

.relatedthumb {
    display: inline-flex;
}

/* Listas single: bloques solo móvil (resumen arriba + barra favoritos abajo). Alineado con breakpoint md de Bootstrap. */
@media (min-width: 768px) {
    .jb-listas-mobile-only {
        display: none !important;
    }
}

@media (max-width: 576px) {
    #mostrar-ordenador {
        display: none;
    }
}

/*
scroll to top - ir arriba*/
#topbutton {
    position: fixed;
    display: none;
    height: 40px;
    width: 40px;
    line-height: 40px;
    right: 15px;
    bottom: 15px;
    z-index: 1;
    background: #000000;
    border-radius: 2px;
    text-decoration: none;
    color: #ffffff;
    text-align: center;
    font-size: 24px;
}

/*contenedor reviews summary*/
.borde-contenedor {
    box-shadow: 0 1px 3px rgb(0 0 0 / 50%);
    padding: 4px;
    border-radius: 0.25rem;
}

/*imagenes destacados*/
.img-dest {
    width: 200px;
    height: 140px;
}

/*imagenes relacionados*/
.img_relacionados {
    width: 50px;
    height: 50px;
}

/*imagenes loop post*/
.img-post {
    width: 70px;
    height: 70px;
}

/*ocultar texto*/
.ocultotext {
    display: none;
}

.visibletext {
    display: inline;
}

.enlacetext {
    position: relative;
    top: -30px;
    width: 100%;
    border-top: solid 20px rgba(255, 255, 255, 0.5);
    text-align: center;
}

.enlacetext a {
    color: white;
    line-height: 20px;
    font-weight: 500;
}


/*tabs con scroll*/
.wrapper-nav {
    position: relative;
    margin: 0 auto;
    padding: 5px 0 5px 0;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    overflow-x: scroll;
    overflow-y: hidden;
    height: 57px;
    cursor: pointer;
    width: 99%;
}


.list-scroll {
    min-width: 960px;
}

.bi-dudas {
    padding: 5px 5px 0 0;
    text-align: right;
}


/* Scroll 2 */
#sc2::-webkit-scrollbar {
    height: 12px;
}

#sc2::-webkit-scrollbar-button:end {
    background-image: url("https://i.imgur.com/TZycy1P.png");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

#sc2::-webkit-scrollbar-button:start {
    background-image: url("https://i.imgur.com/B973wHS.png");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

#sc2::-webkit-scrollbar-button:end:hover {
    background-image: url("https://i.imgur.com/TZycy1P.png");
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: center;
}

#sc2::-webkit-scrollbar-button:start:hover {
    background-image: url("https://i.imgur.com/B973wHS.png");
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: center;
}

#sc2::-webkit-scrollbar-thumb {
    background: rgba(45, 147, 226, 0.8);
    border-radius: 10px;
}

#sc2::-webkit-scrollbar-thumb:hover {
    background: rgba(45, 147, 226, 1);
}

#sc2::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0);
}

#sc2::-webkit-scrollbar-track:hover {
    background-color: rgba(0, 0, 0, 1);
}

/* lista favoritos */
.favorito-item {}

.favorito-item:hover {}


/* Efectos */

.fade-in-image {
    opacity: 0;
    animation: fadeIn 2s ease-in;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.fade-out-image {
    opacity: 1;
    animation: fadeOut 2s ease-out;
    animation-fill-mode: forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
    }
}

.slide-in-left-image {
    transform: translateX(-100%);
    animation: slideInLeft 2s ease-out;
    animation-fill-mode: forwards;
}

@keyframes slideInLeft {
    to {
        transform: translateX(0);
    }
}

.slide-in-right-image {
    transform: translateX(100%);
    animation: slideInRight 2s ease-out;
    animation-fill-mode: forwards;
}

@keyframes slideInRight {
    to {
        transform: translateX(0);
    }
}

.slide-in-top-image {
    transform: translateY(-100%);
    animation: slideInTop 2s ease-out;
    animation-fill-mode: forwards;
}

@keyframes slideInTop {
    to {
        transform: translateY(0);
    }
}

.slide-in-bottom-image {
    transform: translateY(100%);
    animation: slideInBottom 2s ease-out;
    animation-fill-mode: forwards;
}

@keyframes slideInBottom {
    to {
        transform: translateY(0);
    }
}

.zoom-in-image {
    transform: scale(0);
    animation: zoomIn 2s ease-in;
    animation-fill-mode: forwards;
}

@keyframes zoomIn {
    to {
        transform: scale(1);
    }
}

.zoom-out-image {
    transform: scale(1);
    animation: zoomOut 2s ease-out;
    animation-fill-mode: forwards;
}

@keyframes zoomOut {
    to {
        transform: scale(0);
    }
}

.rotate-in-image {
    transform: rotate(-360deg);
    animation: rotateIn 2s ease-in;
    animation-fill-mode: forwards;
}

@keyframes rotateIn {
    to {
        transform: rotate(0deg);
    }
}

.rotate-out-image {
    transform: rotate(0deg);
    animation: rotateOut 2s ease-out;
    animation-fill-mode: forwards;
}

@keyframes rotateOut {
    to {
        transform: rotate(360deg);
    }
}

.bounce-image {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

.shake-image {
    animation: shake 0.5s infinite;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-10px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(10px);
    }
}

.flip-image {
    animation: flip 2s ease-in-out;
    animation-fill-mode: forwards;
}

@keyframes flip {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}


.pulse-image {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}



/* GALERÍA */
figure.snip0008 {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    /* Mantiene proporción */
    overflow: hidden;
    background: #000;
    cursor: pointer;
}

/* IMAGEN */
figure.snip0008 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.35s ease;
}

/* OVERLAY */
figure.snip0008>div {
    position: absolute;
    inset: 0;
}

figure.snip0008>div a {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
}

/* ICONO */
figure.snip0008>div a i::before {
    font-size: 56px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* EFECTO HOVER */
figure.snip0008:hover img {
    opacity: 0.5;
}

figure.snip0008:hover i::before {
    opacity: 1;
    transform: translateY(0);
}


/* =====================================================
   CONTENEDOR PRINCIPAL
   Organiza las tarjetas usando Flexbox
===================================================== */
.profile-container {
    display: flex;
    /* Activa Flexbox */
    flex-wrap: wrap;
    /* Permite que las tarjetas bajen a otra línea */
    gap: 20px;
    /* Espacio entre tarjetas */
    justify-content: center;
    /* Centra las tarjetas horizontalmente */
}


/* =====================================================
   TARJETA DE PERFIL
   Estructura visual de cada card
===================================================== */
.profile-card {
    width: 43%;
    /* En desktop muestra 2 tarjetas por fila */
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 8px;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;

    /* Organización interna en columna */
    display: flex;
    flex-direction: column;
}


/* -----------------------------------------------------
   Efecto Hover
   Agranda ligeramente la tarjeta al pasar el mouse
----------------------------------------------------- */
.profile-card:hover {
    transform: scale(1.05);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 6px 12px;
}


/* =====================================================
   IMAGEN DEL PERFIL
===================================================== */
.profile-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    /* Ajusta la imagen sin deformarla */
}


/* =====================================================
   INFORMACIÓN DEL PERFIL
===================================================== */
.profile-info {
    padding: 20px;
    background-color: #fff;
    position: relative;
    flex-grow: 1;
    /* Permite que ocupe el espacio disponible */
}

/* Nombre principal */
.profile-info h2 {
    margin: 0;
    font-size: 22px;
    font-weight: bold;
}

/* Subtítulo dentro del h2 */
.profile-info h2 span {
    font-weight: normal;
    color: #555;
}

/* Descripción */
.profile-info p {
    color: #666;
    font-size: 14px;
    margin: 10px 0 0;
}


/* =====================================================
   SECCIÓN DE ACCIONES (Botones inferiores)
===================================================== */
.profile-actions {
    display: flex;
    font-size: 14px;
    border-top: 1px solid #eee;
    margin-top: auto;
    /* Empuja esta sección hacia abajo */
}

/* Botones individuales */
.profile-actions .action {
    flex: 1;
    /* Ocupan el mismo ancho */
    padding: 15px;
    cursor: pointer;
    text-align: center;
    background-color: #f8f8f8;
    transition: background-color 0.3s;
    text-decoration: none;
    color: #333;
}

/* Hover en botones */
.profile-actions .action:hover {
    background-color: #e0e0e0;
}


/* =====================================================
   ÍCONOS PERSONALIZADOS (Font Awesome)
   Se usan pseudo-elementos ::before
===================================================== */

/* Ícono de información (fa-info-circle) */
.icon-details::before {
    content: "\f05a";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: block;
    font-size: 20px;
    margin-bottom: 5px;
}

/* Ícono de ver más (fa-chevron-right) */
.icon-more::before {
    content: "\f101";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: block;
    font-size: 20px;
    margin-bottom: 5px;
}


/* =====================================================
   MEDIA QUERY RESPONSIVE
   En pantallas menores a 768px se muestra
   una sola tarjeta por fila
===================================================== */
@media (max-width: 768px) {
    .profile-card {
        width: 97%;
    }
}



/* =====================================================
   IMAGEN DESTACADA (NORMAL)
===================================================== */

/* CONTENEDOR */
.post-hero {
    position: relative;
    overflow: hidden;
    width: 100vw;

    /* Rompe el container de Bootstrap */
    margin-left: calc(-50vw + 50%);
}

/* IMAGEN */
.post-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}


/* =====================================================
   CONTENIDO DEL POST
===================================================== */
/* =====================================================
   IMÁGENES DEL CONTENIDO (ALTURA FIJA + PARALLAX)
===================================================== */
.entry-content img {
    width: 100%;
    height: 260px;
    /* 🔥 Altura fija */
    object-fit: cover;
    /* Evita deformación */
    display: block;
    object-fit: cover;

    /* Suavidad del efecto */
    transition: transform 0.2s ease-out;
}

/* Contenedor del efecto */
.parallax-wrapper {
    height: 200px;
    overflow: hidden;
    position: relative;
    margin: 20px 0;
}


/* =====================================================
   TITULO BLOG
===================================================== */

/* 🔥 OVERLAY CON TU DEGRADADO */
.post-title-overlay {
    position: relative;
    z-index: 2;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 90px 20px 30px 20px;

    /* 🔥 TU DEGRADADO ORIGINAL */
    background: -webkit-linear-gradient(45deg, #03415999 0%, #02595199 33%, #02735E99 67%, #038C3E99 100%);
    background: -moz-linear-gradient(45deg, #03415999 0%, #02595199 33%, #02735E99 67%, #038C3E99 100%);
    background: -o-linear-gradient(45deg, #03415999 0%, #02595199 33%, #02735E99 67%, #038C3E99 100%);
    background: linear-gradient(45deg, #03415999 0%, #02595199 33%, #02735E99 67%, #038C3E99 100%);
}

/* TÍTULO */
.post-title {
    margin: 0;
    font-weight: 700;
    font-size: 2rem;
    color: #fff;
    max-width: 800px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    
}

/* LINK */
.post-title a {
    color: #ffffff;
    text-decoration: none;
}

/* HOVER */
.post-title a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {

    .post-title {
        font-size: 1.4rem;
    }

    .post-title-overlay {
        padding: 90px 20px 30px 20px;
    }

}

/* =====================================================
   LOOP DEL BLOG
===================================================== */

/*--loop del blog--*/
.img-small-home {
    max-width: 100%;
    /* Ajusta el ancho máximo */
    max-height: 300px;
    /* Establece la altura máxima */
    object-fit: cover;
    /* Asegura que la imagen mantenga su proporción */
}

/* Quitar el subrayado del enlace en los títulos */
.custom-title-home a {
    text-decoration: none;
    /* Quita el subrayado */
    color: inherit;
    /* Mantiene el color de la fuente por defecto */
    font-family: 'Roboto', sans-serif;
    /* Cambia la fuente a Roboto, puedes cambiarla a la que prefieras */
}

/* Efecto hover en los enlaces del título */
.custom-title-home a:hover {
    color: #007bff;
    /* Cambia el color del título al pasar el mouse */
    text-decoration: none;
    /* Añade un subrayado al pasar el mouse si lo prefieres */
}

/* Efecto hover en la imagen */
.img-hover-home {
    transition: transform 0.3s ease, opacity 0.3s ease;
    /* Animación suave */
}

.img-hover-home:hover {
    transform: scale(1.05);
    /* Aumenta el tamaño al 105% */
    opacity: 0.9;
    /* Disminuye ligeramente la opacidad */
}


.card-home {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    /* Asegura que la tarjeta ocupe toda la altura disponible */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.card-home img {
    max-height: 200px;
    /* Controla la altura máxima de la imagen */
    object-fit: cover;
}

.card-title-home {
    flex-grow: 1;
    /* Permite que el título ocupe el espacio disponible */
    display: flex;
    /* Para centrar el texto verticalmente */
    align-items: center;
    /* Centra el título verticalmente */
    justify-content: center;
    /* Centra el título horizontalmente */
    text-align: center;
    padding: 1rem;
    /* Añade un poco de espacio alrededor del título */
    transition: color 0.3s ease;
    /* Transición suave para el cambio de color */
}

.card-title-home a {
    text-decoration: none;
    /* Elimina el subrayado */
    color: #333;
    /* Color inicial del título */
    transition: color 0.3s ease;
    /* Transición suave para el cambio de color */
}

.card-title-home a:hover {
    color: #ff6347;
    /* Color del título al hacer hover (por ejemplo, un rojo tomate) */
}


/*--estilo categoria--*/
.post-category-home {
    display: inline-block;
    background-color: #f4a261;
    /* Fondo del contenedor de la categoría */
    color: white;
    padding: 5px 10px;
    border-radius: 5px 5px 0 0;
    font-size: 14px;
}

.post-category-home a {
    list-style: none;
    color: white;
    text-decoration: none;
}

.post-category-home a:hover {
    color: #264653;
    /* Cambia el color del texto al hacer hover */
}

/* =====================================================
   IMAGEN DE FONDO
===================================================== */


.fondo-responsive {
    background-image: url('../images/fondo-abstracto.svg');
    background-repeat: no-repeat;
    background-size: cover;
}

/* TABLET (medida intermedia) */
@media (max-width: 1024px) and (min-width: 769px) {
    .fondo-responsive {
        background-image: url('../images/fondo-tablet.svg');
        background-repeat: repeat-y;
        background-size: contain;
    }
}

/* MÓVIL */
@media (max-width: 768px) {
    .fondo-responsive {
        background-image: url('../images/fondo-movil.svg');
        background-repeat: repeat-y;
        background-size: contain;
    }
}