/*GLOBALES*/
:root {
    --Color-1: #020608;
    --Color-2: #01588E;
    --Color-3: #2784BE;
    --Color-4: #E5EFF6;
    --Color-5: #47b3f7;
    --icono-flecha: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    --icono-flecha-active: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2347b3f7' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

body {
    background: var(--Color-1);
}



html,
body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Orbitron", sans-serif;
    font-weight: 700;
    color: white;
}



p,
a,
li {
    color: white;
    font-family: 'Poppins', sans-serif;
}

a:visited {
    color: white;
    /* Hereda el color del texto principal */
    text-decoration: none;
    /* Quita el subrayado si lo tiene */
}


/* Logo por defecto (desktop) */
.site-logo img {
    max-width: 300px;
    /* Ajusta según necesites */
    height: auto;
}

/* Logo en mobile */
@media (max-width: 768px) {
    .site-logo img {
        max-width: 120px;
        /* Tamaño reducido para móviles */
        height: auto;
    }
}

/* Ajustar el header para que ocupe todo el alto de la pantalla */
.hero {
    position: relative;
    height: 90vh;
    /* toda la altura visible */
    overflow: hidden;
}

a {
    text-decoration: none;
}

.row.row-cols-1.row-cols-md-2 {
    max-width: 100%;
}

.popover {
    background-color: #000;
    /* Verde WhatsApp */
    border: 0.5px solid white;
    border-radius: 25px;
    color: white;
    /* Texto en blanco */
}

.popover-body {
    color: white;
    /* Texto del contenido */
    font-weight: bold;
}

.popover .popover-arrow {
    display: none;
    /* Ocultar flecha si no la quieres */
}

.post,
.page {
    margin: 0;
}

nav#menu {
    max-width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 1rem 5rem;
    transition: 0.3s;
    margin-top: 0;
}

.scroll {
    background-color: #000000c2;
}

.scroll ul li a {
    color: #ffffff;
}



@media (max-width: 768px) {
    nav#menu {
        padding: 1rem 2rem;
    }
}

/*GLOBALES*/

/* Video de fondo responsivo que cubra todo el header */

.console-body p {
    color: rgb(6, 189, 6);
}

video.video-background {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* para que no se deforme */
    z-index: -2;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 0.11%,
            rgba(0, 1, 2, 0.24) 62.64%,
            var(--Color-1, #020608) 95.74%), rgba(0, 0, 0, 0.3);
    /* capa negra encima */
    z-index: -1;
    /* encima del video pero debajo del contenido */
}


/* Centrar el contenido del hero */
.contenido-hero {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    padding: 0 20px;
    /* para que no se pegue a los bordes en móvil */
}

.logo {
    width: 239px;
    height: 81px;
    flex-shrink: 0;
    aspect-ratio: 239/81;
}

/* Ajustes responsive para móviles */
@media (max-width: 768px) {
    .contenido-hero {
        width: 100%;
    }

    .contenido-hero h1 {
        font-size: 1.5rem;
    }

    .logo {
        width: 170px;
        height: auto;
        flex-shrink: 0;
        aspect-ratio: 239 / 81;
    }
}


.menu {
    margin-top: 1.5rem;
}

.menu-lista {
    gap: 2rem;
}


a.nav-link {
    font-size: 20px;
    color: white;
    font-weight: 500;
}

a.nav-link:hover {
    font-size: 20px;
    color: rgb(170, 228, 255);
    font-weight: 500;
}

a.nav-link:focus {
    font-size: 20px;
    color: rgb(160, 160, 160);
    font-weight: 500;
}

.contact {
    text-align: center;
    width: 170px;
    padding: 0rem;
    border: 0px;
    border-radius: 30px;
    background: #01588E;
}

.contact:hover {
    text-align: center;
    width: 170px;
    border-radius: 30px;
    background: var(--Color-5);
}

.contact:hover a.nav-link {
    color: white;
}

@media (max-width: 768px) {
    a.nav-link {
        color: black;
    }

    .contact {
        color: white;
    }
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.boton {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 20px;
    margin-top: 2rem;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 30px;
    background-color: var(--Color-2);
    transition: all 0.3s ease-out;
}

.boton:hover {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 20px;
    margin-top: 2rem;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    background: var(--Color-5);
}

img.gif-mouse {
    width: 30px;
    position: absolute;
    left: 49%;
    bottom: 10%;
}

@media (max-width: 768px) {
    img.gif-mouse {
        left: 47.5%;
    }
}

.card-servicio {
    background-color: #0E1315;
    border: 1px solid #434343;
    color: white;
    height: 100%;
    padding: 3rem 0rem;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}

/* Hover con animación estilo .box */
.card-servicio:hover {
    padding: 2rem 0rem;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    animation-name: borde-animado;
    animation-duration: 0.25s;
    border-left: 8px solid var(--Color-3);
    /* Puedes cambiar el color aquí */
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25),
        0 10px 10px rgba(0, 0, 0, 0.22);
}

/* Animación del borde izquierdo */
@keyframes borde-animado {
    0% {
        border-left: 2px solid transparent;
    }

    25% {
        border-left: 3px solid rgba(0, 255, 255, 0.2);
    }

    50% {
        border-left: 4px solid rgba(0, 255, 255, 0.5);
    }

    100% {
        border-left: 8px solid var(--Color-3)
    }
}

/* Icono centrado dentro del círculo */
i.icono {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: #383838;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    font-size: 30px;
    transition: background 0.3s ease;
}

/* Cambio de color del icono en hover */
.card-servicio:hover i.icono {
    background-color: var(--Color-3);
    color: #0E1315;
}

.card-title {
    font-size: 20px;
}

.icono {
    display: flex;
    justify-content: center;
}

.titulo-servicios {
    padding: 2rem 0;
}

.btn-servicios {
    display: flex;
    justify-content: center;
}

.card-text {
    font-size: 15px;
}

/* Ajustes responsive */
@media (max-width: 768px) {
    .col-12.col-md-3 {
        margin-bottom: 1rem;
    }

    .card-servicio {
        margin-bottom: 1rem;
        padding: 1rem 0.5rem;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .card-text {
        font-size: 0.9rem;
    }
}



section.contenedor-frase.container {
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding: 3rem 13rem;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
}

.logo-loki-slogan {
    width: 100px;
}

.frase {
    color: white;
    font-size: 35px;

}

.frase span {
    color: var(--Color-3);
    font-size: 35px;

}

/* Ajustes responsive para móviles */
@media (max-width: 768px) {
    section.contenedor-frase.container {
        margin-top: 2rem;
        margin-bottom: 2rem;
        padding: 1rem 1rem;
        border: 1px solid grey;
        border-top: none;
        border-left: none;
    }

    .frase {
        font-size: 20px;
    }

    .frase span {
        font-size: 20px;
    }
}

section.nosotros.home-nosotros {
    background-color: #EFEFEF;
    display: flex;
    justify-content: end;
    align-items: center;
}

.contenido-nosotros {
    width: 100%;
    margin-right: 8rem;
    background-color: #00000000;
}

.contenido-nosotros h2,
.contenido-nosotros p,
.contenido-nosotros li {
    color: black;
    background-color: #ffffff00;
}

.text-nosotros,
.lista-nosotros li {
    font-size: 18px;
}

.lista-nosotros li {
    font-weight: 700;
    margin-bottom: 1rem;
}

.text-nosotros span {
    color: #0067A5;
}

.lista-nosotros {
    margin-top: 3rem;
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.img-dec-1 {
    display: flex;
    justify-content: end;
    align-items: end;
    padding: 0 2rem;

}

.img-dec-1 img {
    border-radius: 25px;
    box-shadow: 24px 18px 41px -14px rgba(0, 0, 0, 0.59);
    -webkit-box-shadow: 24px 18px 41px -14px rgba(0, 0, 0, 0.59);
    -moz-box-shadow: 24px 18px 41px -14px rgba(0, 0, 0, 0.59);
}

.img-dec-2 img {
    border-radius: 25px;
    box-shadow: 24px 18px 41px -14px rgba(0, 0, 0, 0.59);
    -webkit-box-shadow: 24px 18px 41px -14px rgba(0, 0, 0, 0.59);
    -moz-box-shadow: 24px 18px 41px -14px rgba(0, 0, 0, 0.59);
}

.img-dec-3 img {
    border-radius: 25px;
    box-shadow: 24px 18px 41px -14px rgba(0, 0, 0, 0.59);
    -webkit-box-shadow: 24px 18px 41px -14px rgba(0, 0, 0, 0.59);
    -moz-box-shadow: 24px 18px 41px -14px rgba(0, 0, 0, 0.59);
}

.col.img-dec-2 {
    padding: 0;
    padding-right: 2rem;
}

.img-dec-3 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.row.row-cols-2.cont-decorativo-1 {
    margin-bottom: 2rem;
}



@media (max-width: 768px) {
    .cont-nosotros {
        justify-content: center;
        display: flex;
        padding: 3rem 0;
    }

    .contenido-nosotros {
        width: 100%;
        padding: 0 2rem;
        margin-right: 0rem;
    }

    img.img-fluid.imgdec-3 {
        width: 90%;
        margin-bottom: 3rem;
    }
}

img.icono-lista {
    width: 25px;
    margin: 0.4rem;
}

.fake-console {
    color: rgb(6, 189, 6);
    font-weight: 500;
    font-family: 'Courier New', monospace;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 3rem auto;
    width: 90%;
    max-width: 800px;
}

.console-header {
    background-color: var(--Color-3);
    padding: 0.75rem;
    font-weight: bold;
    color: #0d0d0d;
    text-align: center;
    border-radius: 10px 10px 0 0;
    font-size: 1.1rem;
    letter-spacing: 1px;
    display: flex;
    justify-content: space-between;
}

.console-body {
    white-space: pre-line;
    min-height: 220px;
    padding: 1.2rem;
    background-color: #181818;
    border-radius: 0 0 10px 10px;
}

#output .pregunta {
    cursor: pointer;
    margin-bottom: 10px;
    padding: 5px;
    border-left: 2px solid transparent;
    transition: all 0.2s ease-in-out;
}

#output .pregunta:hover {
    background-color: rgba(0, 255, 65, 0.1);
    border-left: 2px solid #00ff41;

}

/* Estilo para el título de la respuesta */
#output h4 {
    color: #ffffff;
    margin-top: 0;
    font-size: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

#output button {
    background-color: #00ff41;
    color: #0d0d0d;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    margin-top: 20px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

#output button:hover {
    background-color: #ffffff;
}

a.link-consola {
    color: #00ff41;
    transition: all 0.2s ease-in-out;
}

a.link-consola:hover {
    background-color: rgba(0, 255, 65, 0.1);
    border-left: 2px solid #00ff41;
}

.tecnologia {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    background-color: #0E1315;
    border-radius: 25px;
    gap: 1rem;
}

.iconos-console {
    display: flex;
    gap: 1rem;
}

i.bi.bi-dash {
    font-size: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
}

i.bi.bi-square {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

i.bi.bi-x {
    font-size: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contenedor-tecnologias {
    padding: 0 9rem;
}

section.tecnologias {
    padding: 4rem 0 2rem;
}

.cont-tecnologia {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-tec {
    height: 80px;
}

.wp {
    border-radius: 50px;
}

.titulo-tec {
    font-size: 23px;
    color: white;
    text-align: center;
}

.parent {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
}

@media (max-width: 1200px) {
    .parent {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 20px;
        grid-row-gap: 20px;
    }

    .contenedor-tecnologias {
        padding: 0 5rem;
    }

    .tecnologia {
        width: 100%;
        height: 100%;
        margin: 0 0.8rem;
    }
}

@media (max-width: 768px) {
    .parent {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 20px;
    }

    .contenedor-tecnologias {
        padding: 0 0;
    }

    .tecnologia {
        width: 100%;
        height: 100%;
        margin: 0 0.8rem;
    }
}


section.testimonios {
    margin: 3rem 0;
}

.testi {
    background-color: #0E1315;
    border: 1px solid #434343;
    width: 80%;
    border-radius: 25px;
    padding: 25px 35px;
    text-align: center;
    font-size: 1.2rem;
}

.owl-stage-outer {
    padding-left: 3rem;
}

.owl-carousel .testi {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.test-cabecera {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.test-datos {
    text-align: start;
    color: white;
}

h3.test-nombre {
    font-size: 20px;
}

.test-body {
    color: white;
}

p.test-cargo {
    font-size: 17px;
}

p.test-comentario {
    font-size: 16px;
    text-align: start;
}

.owl-carousel .owl-item img {
    display: block;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
}

.owl-nav {
    display: flex;
    justify-content: space-around;
}

.flecha {
    color: white;
    font-size: 30px;
}

.icono-test {
    background: var(--Color-3);
    border-radius: 25px;
    height: 3rem;
    width: 3rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .testi {
        width: 100%;
        padding: 20px;
    }

    .owl-stage-outer {
        padding-left: 0;
    }

    .owl-carousel .testi {
        flex-direction: column;
    }

    .test-cabecera {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    h3.test-nombre {
        font-size: 18px;
    }

    p.test-cargo {
        font-size: 16px;
    }

    p.test-comentario {
        font-size: 15px;
    }
}


.cont-clientes {
    background-color: white;
    padding: 2rem 0;
}

.row.row-cols-3.row-cols-md-4 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.col.cont-logo-footer {
    display: flex;
    justify-content: center;
    padding: 3rem 0;
}

h3.titulo-footer {
    color: var(--Color-5);
    font-size: 24px;
}

ul.lista-footer {
    list-style: none;
    color: white;
    padding-left: 0;
    font-size: 18px;
}

.lista-footer li {
    margin-bottom: 0.5rem;
}

.lista-footer li a {
    color: white;
    text-decoration: none;
}

li.redes-sociales {
    margin-top: 2rem;
    display: flex;
    justify-content: start;
    gap: 2rem;
}

li.redes-sociales i {
    font-size: 30px;
    color: var(--Color-5);
    transition: color 0.3s ease;
}

footer {
    padding-bottom: 2rem;
    position: relative;

}

a.nav-link.contacto-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2.5rem;
    width: 170px;
    border-radius: 30px;
    background: #01588E;
}

.logo-whatsapp {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 1;
    overflow: hidden;
}

/*Pagina Servicios*/

.desarrollo-web {
    margin: 3rem 0;
}


.cards-dw {
    max-width: 100%;
    padding: 0 4rem;
}

.text-servicios {
    padding: 0 10rem;
}

.titulo-dw {
    color: white;
    padding-bottom: 2rem;
    text-align: center;
}

.fila-dw {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding-top: 2rem;
}

.container-cards-dw {
    height: 40vh;
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: end;
}

@media (max-width: 768px) {
    .cards-dw {
        display: flex;
        justify-content: center;
    }

    .text-desarrollo-web {
        padding: 0 2rem;
    }

    .container-cards-dw {
        width: 100%;
    }

    .text-servicios {
        padding: 0 2rem;
    }
}

section.desarrollo-software {
    margin: 4rem 0;
}

.accordion-body {
    font-size: 17px;
}

.info-ds h3 {
    color: white;
    padding-bottom: 2rem;
}

.accordion-button {
    font-weight: 600;
}

.accordion {
    --bs-accordion-color: #ffffff;
    --bs-accordion-bg: #00000000;
    --bs-accordion-border-color: #ffffff;
    --bs-accordion-btn-color: #ffffff;
    --bs-accordion-active-color: #ffffff;
    --bs-accordion-active-bg: #ffffff00;
}

.accordion-button::after {
    background-image: var(--icono-flecha);
}

.accordion-button:not(.collapsed)::after {
    background-image: var(--icono-flecha-active);
}

.sop-tecnico {
    position: relative;
}

video.video-background.software-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* para que no se deforme */
    z-index: -2;
    opacity: 0.4;
}

.back-soft {
    padding: 3rem 10rem;
}

.back-soft::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

h3.subtitulo-soft {
    color: white;
    padding-top: 2rem;
}

@media (max-width: 768px) {
    .back-soft {
        padding: 3rem 2rem;
    }

    video.video-background.software-video {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
        opacity: 0.4;
    }
}

section.sop-ti {
    margin-top: 3rem;
}

.img-st {
    width: 80%;
}

.col.acor-ti {
    padding-top: 5rem;
    padding-right: 7rem;
}

.col.acor-ti h3 {
    color: white;
    padding-bottom: 2rem;
}

@media (max-width: 768px) {
    .col.acor-ti {
        padding-top: 2rem;
        padding-right: 0rem;
        padding: 0 2rem 18rem;
    }

    .cont-soporte-ti {
        position: relative;
    }

    .img-st {
        position: absolute;
        width: 50%;
        bottom: 0;
        left: 0;
    }
}

/*Pagina Servicios*/


/*Pagina Quienes somos*/
p.text-1-qs {
    color: white;
    font-size: 20px;
    text-align: center;
    margin: 3rem 7rem;
}

@media (max-width: 768px) {
    p.text-1-qs {
        color: white;
        font-size: 20px;
        text-align: center;
        margin: 3rem 1rem;
    }
}

/* Estilos existentes (sin cambios) */
/* Center the cards within the column and reserve space */
.col-qs {
    display: flex;
    justify-content: center;
    position: relative;
    /* Positioning context for absolute-positioned cards */
    height: 120px;
    /* Reserve space for the card's initial height plus padding/margins */
    margin-bottom: 1rem;
    /* Space between cards to prevent overlap */
}

/* Base styles for the card */
.card-qs {
    display: flex;
    flex-direction: column;
    /* Stack elements vertically */
    justify-content: center;
    /* Center content vertically */
    align-items: center;
    /* Center content horizontally */
    width: 80%;
    /* Card width relative to its container */
    background-color: #0E1315;
    /* Dark background for the card */
    border: 1px solid #434343;
    /* Subtle border */
    color: white;
    /* White text color */
    padding: 2.5rem 0.5rem;
    /* Padding for content */
    border-radius: 25px;
    /* Rounded corners */
    position: absolute;
    /* Always absolute to float within .col-qs */
    left: 10%;
    /* Center the card (80% width means 10% on each side) */
    top: 0;
    /* Align with the top of .col-qs */
    overflow: hidden;
    /* Hide content that overflows the card */
    transition: all 0.5s ease-in-out;
    /* Smooth transition for height, background, etc. */
    height: 100px;
    /* Fixed initial height to show only the title */
    z-index: 1;
    /* Default z-index for non-hovered state */
}

/* Style for the title section, always visible initially */
.qs {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: absolute;
    /* Keep title centered in the card */
    top: 50%;
    transform: translateY(-50%);
    /* Vertically center the title */
}

/* Style for the title text */
.titulo-qs {
    font-size: 1.5rem;
    /* Title font size */
    font-weight: bold;
    /* Bold title */
    margin: 0;
    /* Remove default margin */
}

/* Hidden content that appears on hover */
.card-hover-content {
    display: none;
    /* Initially hidden */
    width: 100%;
    /* Full width of the card */
    padding: 1rem;
    /* Padding for content */
    text-align: center;
    /* Center text */
    transform: scale(0.5);
    /* Initial scale for animation */
    transform-origin: 0% 0%;
    /* Animation starts from top-left */
}

/* Hover effect on the card */
.card-qs:hover {
    height: 250px;
    /* Expand card height to show content */
    background-color: #000000ed;
    z-index: 10;
    /* Higher z-index to appear above other content */
}

/* Hide the initial title on hover */
.card-qs:hover .qs {
    display: none;
    /* Hide the .qs div when card is hovered */
}

/* Show and animate content on hover */
.card-qs:hover .card-hover-content {
    display: block;
    /* Show the hidden content */
    animation: scale-up-tl-normal 0.5s ease-in 0s 1 normal both;
    /* Apply the scale-up animation once */
}

/* Keyframes for the scale-up animation */
@keyframes scale-up-tl-normal {
    0% {
        transform: scale(0.5);
        /* Start at half size */
        transform-origin: 0% 0%;
        /* Scale from top-left corner */
    }

    100% {
        transform: scale(1);
        /* Full size */
        transform-origin: 0% 0%;
        /* Maintain top-left origin */
    }
}

/* Style for the content inside card-hover-content */
.card-hover-content h5 {
    font-size: 1.5rem;
    /* Match title size */
    margin-bottom: 0.5rem;
    /* Space below heading */
}

.card-hover-content p {
    font-size: 1rem;
    /* Paragraph font size */
    line-height: 1.5;
    /* Improve readability */
    margin: 0;
    /* Remove default margin */
}

section.nosotros {
    padding: 5rem 0;
}

.fila-nosotros {
    gap: 2rem;
    display: flex;
    justify-content: center;
}

.card-nosotros {
    width: 400px;
    height: 400px;
    display: flex;
    border-radius: 50px;
    /* padding: 15rem 0 1rem; */
    flex-direction: column;
    justify-content: end;
    align-items: center;
    position: relative;
}

.card-nosotros h4 {
    font-size: 36px;
}

.card-nosotros p {
    font-size: 24px;
}

.icono-linkedin {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #2784BE;
    background-color: white;
    font-size: 40px;
    /* padding: 1rem; */
    height: 70px;
    width: 70px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-nosotros h3 {
    margin-left: 2rem;
    margin-top: 2rem;
}

h3.equipo {
    margin-top: 5rem;
}


@media (max-width: 768px) {
    .container-nosotros h3 {
        margin-left: 0;
        text-align: center;
    }

}


/*Pagina Quienes somos*/


/*Pagina contacto*/
div#post-65 {
    display: flex;
    justify-content: center;
}

.container.contacto-container {
    margin: 4rem 0px;
}

.datos-contacto p {
    font-size: 20px;
}

.datos-contacto svg {
    margin-left: 3rem;
}

/*Pagina contacto*/

.logo-footer {
    width: 300px;
}

li.horario {
    font-size: 15px;
}

/* Estilo del botón */
#btnSubir {
    display: none;
    /* Oculto por defecto */
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: var(--Color-2);
    color: white;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 50%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s;
}

#btnSubir:hover {
    background-color: #0056b3;
    transition: all 0.5s;
}

.logo-loki {
    position: absolute;
    top: 20px;
    left: 20px;
}

.logo-loki img {
    width: 100px;
}


@media (max-width: 768px) {
    .logo-loki {
        width: 50px;
    }

}

@media (min-width: 1024px) {
    .ti-widget.ti-goog .ti-reviews-container-wrapper {
        display: flex;
        justify-content: center;
    }
}