@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Dela+Gothic+One&family=Emblema+One&family=Jost:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Space+Grotesk:wght@300..700&display=swap');

body{
    font-family: 'Poppins';
}


.bg-morado{
    background-color: #724EEC;
}
.bg-verde{
    background-color: #40bf23;
}
.bg-rosa{
    background-color: #ff1493;
}
.bg-gris{
    background-color: #f1f5f9;
}
.barra{
    width: 100%;
    height: 1.3em;
    max-height: 3em;
}
.swiper-pagination-bullet {
    width: 1.2em;
    height: 1.2em;
    background-color: #ff1493;
    border: 3px solid #7e22ce;
}

.mySwiper-02 {
    height: 15em;
}

.fb-page {
    width: 500px !important;
    /* Ancho fijo */
    max-width: 100%;
    /* Asegura que sea responsivo */
}

@media (max-width: 768px) {
    .fb-page {
        margin: 0 auto;
        margin-top: 2em;
    }

    .mySwiper-02 {
        height: 25em;
    }
}
.grayscale {
    filter: grayscale(100%);
    transition: filter 0.5s ease; /* Suaviza la transición */
}
.revertScale {
    filter: invert(100%);
    transition: filter 0.5s ease; 
}

.swiper-slide {
    text-align: center;
    font-size: 20px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20em;
}
.swiper-slide img {
    display: block;
    width: 100%;
    height: 50%;
    object-fit: cover;
}   

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


.card {
    width: 100%;
    height: 22em;
    background: white;
    border-radius: 10px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
    overflow: hidden;
    text-align: center;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: center ;
    height: 6em;
    font-size: 24px;
    color: white;
    
}

.html {
    background: #724EEC;
}

.css {
    background: #77e459;
}

.js {
    background: #ff1493;
}

.card-content {
    padding: 20px;
}

.card-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.read-more {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    background-color: #ff8c00;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.html .read-more {
    background-color: #ff8c00;
}

.css .read-more {
    background-color: #2f2f72;
}

.js .read-more {
    background-color: #ff1493;
}

/* Estilos CSS */
::-webkit-scrollbar {
    width: .5em; /* Ancho del scrollbar */
}
::-webkit-scrollbar-thumb {
    background-color: #ff1493;
    border-radius: 10px; /* Bordes redondeados */
}
/* Estilos CSS */