@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');



h1 {
  font-family: 'Manrope', sans-serif;
}





:root {
    --padding-container: 100px 0;
    --color-title: #001A49;
}

html {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif; /*declarada como fuente global */
    margin: 0;
    padding: 0;
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: var(--padding-container);
}

/* Tamaño de fondo pantalla con cambios para que ocupe toda la pantalla */
.hero {
  width: 100%;
  height: 100vh;
  /* min-height: 600px;  
  /* max-height: 800px;  <-- Se debe eliminar para adaptar a toda la pantalla */
  position: relative;
  display: grid;
  grid-template-rows: 100px 1fr;
  color: #fff;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(79, 209, 197, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(79, 209, 197, 0.05) 0%, transparent 50%);
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}



.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to bottom, 
            transparent 0%, 
            transparent 70%, 
            rgba(15, 27, 27, 0.3) 85%, 
            rgba(15, 27, 27, 0.8) 100%),
        url('../images/img1.jpg');
    background-size: cover;
    z-index: -1;
}


/* Nav */

.nav {
    --padding-container: 0;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

.nav__title {
    font-weight: 300;
    font-size: 4rem; /* 200% más grande que el tamaño normal */
}

.nav__link {
    margin-left: auto;
    padding: 0;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 2em;
}

.nav__items {
    list-style: none;
}

.nav__links {
    color: #14B8A6;
    text-decoration: none;
}

.nav__menu {
    margin-left: auto;
    cursor: pointer;
    display: none;
}

.nav__img {
    display: block;
    width: 30px;
}


.nav__close {
    display: var(--show, none);
}


/* Hero container */

.hero__container {
    max-width: 800px;
    --padding-container: 0;
    display: grid;
    grid-auto-rows: max-content;
    align-content: center;
    gap: 1em;
    padding-bottom: 100px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero__title {
    font-size: 3rem;
}

.hero__paragraph {
    margin-bottom: 20px;
    color: #14B8A6;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 1px;
    font-family: 'Segoe UI', system-ui, sans-serif;
    text-shadow: 
        0 0 15px rgba(20, 184, 166, 0.4),
        0 0 30px rgba(20, 184, 166, 0.2);
    position: relative;
    padding: 0 15px;
}

.cta {
    display: inline-block;
    background: #14B8A6;
    justify-self: center;
    color: #fff;
    text-decoration: none;
    padding: 13px 30px;
    border-radius: 32px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.2);
    border: 2px solid #14B8A6;
}

.cta:hover {
    background: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.3);
    color: #14B8A6;
    border: 2px solid #14B8A6;
}

/* About */

.about {
    text-align: center;
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

/* Excepción: páginas legales no deben estar centradas */
.about.fullwidth {
    text-align: left !important;
}

/* Centrar el título de servicios específicamente */
.about.fullwidth > .hero__title {
    text-align: center !important;
}

.subtitle {
    color: var(--color-title);
    font-size: 2rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.about > .subtitle {
    margin-bottom: 80px;
}

.about .hero__title {
    color: #4fd1c5; /* color turquesa */
    position: relative;
    z-index: 2;
}

/* Main element background - solo afecta el área después del hero */
main {
    background: linear-gradient(135deg, #0F1B1B 0%, #1C2121 100%) !important;
    position: relative;
    min-height: 100vh;
    margin: 0 !important;
    padding: 0 !important;
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
}

main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(79, 209, 197, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(79, 209, 197, 0.05) 0%, transparent 50%);
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}


.about__paragraph {
    line-height: 1.7;
}

.about__main {
    padding-top: 80px;
    display: grid;
    width: 90%;
    margin: 0 auto;
    gap: 1em;
    overflow: hidden;
    grid-template-columns: repeat(auto-fit, minmax(260px, auto));
}


.about__icons {
    display: grid;
    gap: 1em;
    justify-items: center;
    width: 260px;
    overflow: hidden;
    margin: 0 auto;
}

.about__icon {
    width: 40px;
}

/* Knowledge */

/* Contenedor de fondo negro unificado para toda la parte inferior */
.dark-background-container {
    background: linear-gradient(135deg, #0F1B1B 0%, #1C2121 100%);
    position: relative;
    min-height: 100vh;
}

.dark-background-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(79, 209, 197, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(79, 209, 197, 0.05) 0%, transparent 50%);
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

/* Todas las secciones dentro del contenedor oscuro tienen fondo transparente */
.dark-background-container .knowledge,
.dark-background-container .testimony,
.dark-background-container .questions,
.dark-background-container .footer {
    background: transparent !important;
    position: relative;
    z-index: 2;
}

.knowledge {
    overflow: hidden;
}

.knowledge__container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
    align-items: center;
}

.knowledge__title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: 'Manrope', sans-serif;
}

.knowledge__highlight {
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.knowledge__picture {
    overflow: hidden;        /* recorta lo que se sale del contenedor */
    position: relative;
    width: 100%;
    max-width: 600px;        /* ajusta según quieras */
    margin: auto;
  }
  
  .knowledge__img {
    width: 100%;
    transition: transform 0.8s ease;
  
    /* Máscara radial completa para difuminar los bordes por todos lados */
    -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: cover;
  
    mask-image: radial-gradient(circle, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: cover;
  }
  
  .knowledge__picture:hover .knowledge__img {
    transform: scale(1.1);   /* zoom más moderado */
  }
  


.knowledge__paragraph{
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: #e5e7eb;
}

.knowledge__img{
    width: 100%;
    display: block;
}

/* price */

.price{
    text-align: center;
}

.price__table{
    padding-top: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5em;
    justify-content: space-evenly;
    align-items: center;
}

.price__element{
    background-color: #e5e5f7;
    text-align: center;
    border-radius: 10px;
    width: 330px;
    padding: 40px;
    --color-plan: #696871;
    --color-price: #1D293F;
    --bg-cta: #fff;
    --color-cta: #5454D4;
    --color-items: #696871;
}

.price__element--best{
    width: 370px;
    padding: 60px 40px;
    background-color: #FF7143;
    --color-plan: rgb(255 255 255 / 75%);
    --color-price: #fff;
    --bg-cta: #9F3919;
    --color-cta: #FFF;
    --color-items: #fff;
}


.price__name{
    color: var(--color-plan);
    margin-bottom: 15px;
    font-weight: 300;
}

.price__price{
    font-size: 2.5rem;
    color: var(--color-price);
}

.price__items{
    margin-top: 35px;
    display: grid;
    gap: 1em;
    font-weight: 300;
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: var(--color-items);
}

.price__cta{
    display: block;
    padding: 20px 0;
    border-radius: 10px;
    text-decoration: none;
    background-color: var(--bg-cta);
    font-weight: 600;
    color: var(--color-cta);
    box-shadow: 0 0 1px rgba(0, 0, 0, .5);
}

/* Testimony */

.testimony {
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.testimony__container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    gap: 1em;
    align-items: center;
}

.testimony > .subtitle {
    margin-bottom: 60px;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4fd1c5 0%, #4fd1c5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.testimony__body{
    display: grid;
    grid-template-columns: 1fr max-content;
    justify-content: space-between;
    align-items: center;
    gap: 3em;
    grid-column: 2/3;
    grid-row: 1/2;
    opacity: 0;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(79, 209, 197, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}


.testimony__body--show{
    pointer-events: unset;
    opacity: 1;
    transition: opacity 1.5s ease-in-out;
}

.testimony__img{
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 50% 30%;
    border: 4px solid rgba(79, 209, 197, 0.3);
    box-shadow: 0 8px 30px rgba(79, 209, 197, 0.2);
    transition: all 0.3s ease;
}

.testimony__body:hover .testimony__img {
    transform: scale(1.05);
    border-color: rgba(79, 209, 197, 0.6);
    box-shadow: 0 12px 40px rgba(79, 209, 197, 0.4);
}

.testimony__texts{
    max-width: 600px;
    text-align: left;
}

.testimony__texts h2 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

.testimony__review {
    color: #d1d5db;
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 300;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid #4fd1c5;
}

.testimony__course{
    background: linear-gradient(135deg, #4fd1c5 0%, #38b2ac 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: 25px;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.2;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(79, 209, 197, 0.3);
    text-transform: uppercase;
    min-height: 36px;
}

.testimony__arrow{
    width: 90%;
    cursor: pointer;
    filter: invert(1) brightness(0.9);
    transition: all 0.3s ease;
}

.testimony__arrow:hover {
    filter: invert(1) brightness(1.2);
    transform: scale(1.1);
}

/* Questions */

.questions{
    text-align: center;
}

.questions .subtitle {
    color: #4fd1c5;
}

.questions__paragraph {
    color: #e5e7eb;
    font-size: 1.3rem; /* o el tamaño que prefieras */
    line-height: 1.6;  /* mejora la legibilidad */
}

.questions__container{
    display: grid;
    gap: 2em;
    padding-top: 50px;
    padding-bottom: 100px;
}

.questions__padding{
    padding: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.questions__padding:hover {
    transform: translateY(-3px);
    border-color: #4fd1c5;
    box-shadow: 0 10px 30px rgba(79, 209, 197, 0.2);
}

.questions__padding--add{
    padding-bottom: 30px;
}

.questions__answer{
    padding: 0 30px 0;
    overflow: hidden;
}

.questions__title{
    text-align: left;
    display: flex;
    font-size: 20px;
    padding: 30px 0 30px;
    cursor: pointer;
    color: #4fd1c5;
    justify-content: space-between;
}

.questions__arrow{
    border-radius: 8px;
    background-color: #4fd1c5;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: flex-end;
    margin-left: 10px;
    transition: all .3s;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(79, 209, 197, 0.3);
}

.questions__arrow:hover {
    background-color: #38b2ac;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(79, 209, 197, 0.5);
}

.questions__arrow--rotate{
    transform: rotate(180deg);
}

.questions__show{
    text-align: left;
    height: 0;
    transition: height .3s;
    color: #e5e7eb;
    font-size: 1.3rem; /* o el tamaño que prefieras */
    line-height: 1.6;  /* mejora la legibilidad */
}

.questions__img{
    display: block;
    filter: brightness(0) invert(1);
    width: 16px;
    height: 16px;
    transform: rotate(180deg);
}

.questions__copy{
    width: 60%;
    margin: 0 auto;
    margin-bottom: 30px;
}

.questions__offer {
    text-align: center;
    padding: 20px 0;
}

.questions__offer .cta {
    margin-top: 40px;
    display: inline-block;
}

/* Footer */

/* Footer - estilos antiguos comentados - ahora se usa el nuevo estilo de sobre-nosotros.css */
/*
.footer__title{
    font-weight: 300;
    font-size: 2rem;
    margin-bottom: 30px;
}

.footer__title, .footer__newsletter{
    color: #fff;
}


.footer__container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #fff;
    padding-bottom: 60px;
}

.nav--footer{
    padding-bottom: 20px;
    display: grid;
    gap: 1em;
    grid-auto-flow: row;
    height: 100%;
}

.nav__link--footer{
    display: flex;
    margin: 0;
    margin-right: 20px;
    flex-wrap: wrap;
}
*/

.footer__inputs{
    margin-top: 10px;
    display: flex;
    overflow: hidden;
}

.footer__input{
    background-color: #fff;
    height: 50px;
    display: block;
    padding-left: 10px;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    border: none;
    margin-right: 16px;
}

.footer__submit{
    margin-left: auto;
    display: inline-block;
    height: 50px;
    padding: 0 20px ;
    background-color: #2091F9;
    border: none;
    font-size: 1rem;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
}

.footer__copy{
    --padding-container: 30px 0;
    text-align: center;
    color: #fff;
}

.footer__copyright{
    font-weight: 300;
}

.footer__icons{
    margin-bottom: 10px;
}

.footer__img{
    width: 30px;
}

/* Estilos para páginas legales (Términos y Condiciones, Aviso de Privacidad) */
.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: left !important;
}

.privacy-content * {
    text-align: left !important;
}

.privacy-content .subtitle {
    color: #ffffff !important;
    margin-top: 60px;
    margin-bottom: 25px;
    font-size: 1.8rem;
    padding-top: 20px;
    text-align: left !important;
}

.privacy-content .about__paragraph {
    color: #e5e7eb;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: left !important;
}

.privacy-list {
    color: #e5e7eb;
    margin-left: 40px;
    margin-right: 0;
    padding-left: 0;
    margin-bottom: 25px;
    line-height: 1.8;
    list-style-position: outside;
    text-align: left !important;
}

.privacy-list li {
    margin-bottom: 12px;
    text-align: left !important;
}

.privacy-content > p:first-of-type {
    font-size: 1.15rem;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-content .subtitle:first-of-type {
    margin-top: 40px;
}

.privacy-content .about__paragraph strong {
    color: #4fd1c5;
    font-weight: 600;
}

.privacy-content .about__paragraph + .about__paragraph {
    margin-top: 15px;
}

/* Sobrescribir el text-align: center de la clase .about para páginas legales */
section.about.fullwidth {
    text-align: left !important;
}

.container.about.fullwidth {
    text-align: left !important;
}

/* Footer con el mismo estilo que "Sobre nosotros" */
.footer {
    background: #0a0f0f;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 2.5rem;
    color: #4fd1c5;
    margin-bottom: 2rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #4fd1c5;
}

.contact-section h3 {
    color: #4fd1c5;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0.5rem 0;
}

.footer-bottom .footer__legal-links {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-bottom .footer__legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom .footer__legal-links a:hover {
    color: #4fd1c5;
}

/* Responsive para footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

/* Media queries */

@media (max-width:800px){
    .nav__menu{
        display: block;
    }

    .nav__link--menu{
        position: fixed;
        background-color: #000;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        z-index: 100;
        opacity: 0;
        pointer-events: none;
        transition: .7s opacity;
    }

    .nav__link--show{
        --show: block;
        opacity:1 ;
        pointer-events: unset;
    }

    .nav__close{
        position: absolute;
        top: 30px;
        right: 30px;
        width: 30px;
        cursor: pointer;
    }

    .hero__title{
        font-size: 2.5rem;
    }


    .about__main{
        gap: 2em;
    }

    .about__icons:last-of-type{
        grid-column: 1/-1;
    }


    .knowledge__container{
        grid-template-columns: 1fr;
        grid-template-rows: max-content 1fr;
        gap: 3em;
        text-align: center;
    }

    .knowledge__picture{
        grid-row: 1/2;
        justify-self: center;
    }

    .testimony__container{
        grid-template-columns: 30px 1fr 30px;
    }

    .testimony__body{
        grid-template-columns: 1fr;
        grid-template-rows: max-content max-content;
        gap: 2em;
        justify-items:center ;
        padding: 30px 20px;
    }
    
    .testimony__texts{
        text-align: center;
    }
    
    .testimony__review {
        border-left: none;
        border-top: 3px solid #4fd1c5;
        padding-left: 0;
        padding-top: 15px;
    }


    .testimony__img{
        width: 200px;
        height: 200px;
        
    }

    .questions__copy{
        width: 100%;
    }

    /* Estilos antiguos del footer comentados
    .footer__container{
        flex-wrap: wrap;
    }

    .nav--footer{
        width: 100%;
        justify-items: center;
    }

    .nav__link--footer{
        width: 100%;
        justify-content: space-evenly;
        margin: 0;
    }

    .footer__form{
        width: 100%;
        justify-content: space-evenly;
    }

    .footer__input{
        flex: 1;
    }
    */

}

@media (max-width:600px){
    .hero__title{
        font-size: 2rem;
    }

    .hero__paragraph{
        font-size: 1rem;
    }

    .subtitle{
        font-size: 1.8rem;
    }

    .knowledge__title {
        font-size: 2.5rem;
    }

    .knowledge__container{
        grid-template-columns: 1fr;
        gap: 2em;
    }

    .price__element{
        width: 90%;
    }

    .price__element--best{
        width: 90%;
        /* padding: 40px; */
    }

    .price__price{
        font-size: 2rem;
    }

    .testimony{
        --padding-container: 60px 0;
        padding: 60px 0;
    }
    
    .testimony > .subtitle {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .testimony__container{
        grid-template-columns: 28px 1fr 28px;
        gap: .9em;
    }

    .testimony__arrow{
        width: 100%;
    }

    .testimony__course{
        margin-top: 15px;
    }

    .questions__title{
        font-size: 1rem;
    }

    /* Estilos antiguos del footer comentados
    .footer__title{
        justify-self: start;
        margin-bottom: 15px;
    }

    .nav--footer{
        padding-bottom: 60px;
    }

    .nav__link--footer{
        justify-content: space-between;
    }

    .footer__inputs{
        flex-wrap: wrap;
    }

    .footer__input{
        flex-basis: 100%;
        margin: 0;
        margin-bottom: 16px;
    }

    .footer__submit{
        margin-right: auto;
        margin-left: 0;
    }
    */





























    /* Responsive para páginas legales */
    @media (max-width: 768px) {
        .privacy-content {
            padding: 30px 15px;
        }

        .privacy-content .subtitle {
            font-size: 1.5rem;
            margin-top: 40px;
        }

        .privacy-content .about__paragraph {
            font-size: 1rem;
        }

        .privacy-list {
            margin-left: 25px;
        }
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: sans-serif;
    }

    /* esto hay que aislarlo*/
    /*
    body {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        background: #f3f1f5;
    }
    */

    .contenedor {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        background: #f3f1f5;
        gap: 20px; /* Opcional: separa las tarjetas */
    }



    .card {
        margin: 20px;
        width: 200px;
        height: 300px;
        border-radius: 5px;
        background: var(--i);
        background-size: cover;
        box-shadow: 3px 5px 5px rgba(3, 32, 51, .8);
        overflow: hidden;
    }

    .content {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, .4);
        opacity: 0;
        transition: .5s;
    }

    .content h2, a {
        color: rgba(255, 255, 255, .8);
        margin: 10px 0;
    }

    .card:hover .content {
        opacity: 1;
    }






    
}
