@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;700;900&display=swap');

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

/* -------------------- BODY -------------------- */
body{
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    overflow-x: clip;
}

/* -------------------- BANNER -------------------- */
.banner{
    background-color: springgreen;
    width: 100%;
    min-height: 100vh;
    position: relative;
}

/* H1 PRINCIPAL */
h1{
    font-weight: bold;
    font-size: 75px;
}

/* -------------------- NAVBAR -------------------- */
.navbar{
    width: 100%;
    height: 120px;
}

.navbar-nav{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.navbar-brand{
    color: #fff !important;
    font-weight: bold;
}

#redes{
    display: flex;
}
.redes-bar{
    font-family: fantasy;
    line-height: 40px;
    font-weight: bold;
}

.nav-link {
    position: relative;
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    transition: 0.3s ease;
}

/* línea base (invisible) */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: rgb(4,134,241);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    box-shadow: 0 0 10px rgb(4,134,241);
}

/* hover */
.nav-link:hover {
    color: rgb(4,134,241);
}

/* animación línea */
.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}



.nav-link span{
    color: #333;
}




/* Mobile → cuando aparece hamburguesa */
@media (max-width: 1200px) {

    .navbar-toggler:focus {
        box-shadow: none !important;
    }

    #collapsibleNavbar{
        background-color: #333;
        z-index: 99;
    }
}

/* -------------------- IDIOMAS -------------------- */
.idiomas{
    display: flex;
    align-items: center;
    gap: 10px;
}

.idiomas img{
    width: 28px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.idiomas img:hover{
    transform: scale(1.1);
}

/* -------------------- CALL SECTION -------------------- */
.call{
    width: 70%;
}

.call-left{
    display: grid;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.banner .call img{
    height: 500px;
}

.banner span{
    color: rgb(4, 134, 241);
}

.banner p{
    font-size: 25px;
}

.call-left a{
    background-color: rgb(4, 134, 241);
    padding: 12px 45px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 22px;
    display: inline-block;
    transition: all 0.3s ease;
    width: 200px;
    text-align: center;
}

.call-left a:hover{
    background: linear-gradient(135deg, rgb(4,134,241), #00c6ff);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(4,134,241,0.4);
}

/* -------------------- CANVAS -------------------- */
.canvasParticles-two {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
}

/* -------------------- ABOUT (REDISEÑADO) -------------------- */
.about{
    padding: 120px 20px;
    display: flex;
    justify-content: center;
    background-color: #111;
}
.about p{
    color: #fff;
}
.about-wrapper{
    max-width: 1100px;
    width: 100%;
    background: rgba(255,255,255,0.05);
    padding: 60px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.08);
}

/* HEADER */
.about-header{
    margin-bottom: 50px;
    text-align: center;
}

.about-header h3{
    color: #aaa;
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.about-header h2{
    font-size: 40px;
    font-weight: 700;
    color: #fff;
}

.about-header h2 span{
    color: rgb(4, 134, 241);
}

.about-header h4{
    color: springgreen;
    margin-top: 10px;
}

.about-header h4 span{
    color: rgb(255, 255, 255);

}

/* LÍNEA */
.about-header::after{
    content: "";
    width: 60px;
    height: 3px;
    background: rgb(4, 134, 241);
    display: block;
    margin: 15px auto 0 auto;
}

/* TIMELINE CONTAINER */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Línea vertical central */
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    background-color: rgb(4, 134, 241);
    border-radius: 2px;
}

/* TIMELINE ITEMS */
.timeline-item {
    padding: 20px 30px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

/* Contenido dentro de cada item */
.timeline-content {
    background: rgba(255,255,255,0.05);
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    color: #ccc;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.timeline-content p {
    margin: 0;
    font-size: 16px;
}

/* Hover efecto en el contenido */
.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(4,134,241,0.6);
}

/* Puntos de la timeline */
.timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: rgb(4, 134, 241);
    border: 4px solid #333;
    border-radius: 50%;
    top: 30px;
    z-index: 1;
    box-shadow: 0 0 10px rgb(4,134,241);
    transition: background-color 0.3s ease;
}

/* Alternado: Items a la izquierda */
.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.left::before {
    right: -12px;
}

/* Alternado: Items a la derecha */
.timeline-item.right {
    left: 50%;
    text-align: left;
}

.timeline-item.right::before {
    left: -12px;
}

/* Responsive */
@media (max-width: 992px){
    .banner .call img{
        height: 400px;
    }

    .about-wrapper{
        padding: 40px 20px;
    }
}

@media (max-width: 768px){
    h1{
        font-size: 55px;
    }

    .banner .call img{
        height: 300px;
    }

    /* Timeline items apilados para móviles */
    .timeline-item,
    .timeline-item.left,
    .timeline-item.right {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        margin-bottom: 30px;
    }

    .timeline-item::before {
        left: -12px !important;
    }
}

@media (max-width: 576px){
    h1{
        font-size: 45px;
    }

    .banner p{
        font-size: 20px;
    }

    .about-header h2{
        font-size: 30px;
    }

    .about-header h4{
        font-size: 18px;
    }

    .about-text p{
        font-size: 14px;
    }
}

/* -------------------- ABOUT FOOTER -------------------- */
.about-footer{
    margin-top: 40px;
    text-align: center;
}

.about-footer a{
    background: linear-gradient(135deg, rgb(4,134,241), #00c6ff);
    padding: 12px 35px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
    display: inline-block;
}

.about-footer a:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(4,134,241,0.4);
}

/* -------------------- TECH SECTION -------------------- */
.tech{
    padding: 120px 20px;
    background-color: #111; /* fondo negro, podés cambiar a white o springgreen */
    display: flex;
    justify-content: center;
}

.tech-wrapper{
    max-width: 1100px;
    width: 100%;
}

/* HEADER */
.tech-header{
    text-align: center;
    margin-bottom: 60px;
}

.tech-header h3{
    color: #aaa;
    letter-spacing: 3px;
    font-size: 14px;
    text-transform: uppercase;
}

.tech-header h2{
    font-size: 40px;
    color: #fff;
    font-weight: 700;
}

.tech-header h2 span{
    color: rgb(4,134,241);
}

.tech-header p{
    color: #ccc;
    margin-top: 10px;
    font-size: 16px;
}

/* GRID */
.tech-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 25px;
}

/* ITEM */
.tech-item{
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-item img{
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
}

.tech-item span{
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

/* HOVER PRO */
.tech-item:hover{
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 25px rgba(4,134,241,0.5);
    border: 1px solid rgb(4,134,241);
}

/* RESPONSIVE */
@media (max-width: 992px){
    .tech-header h2{
        font-size: 35px;
    }

    .tech-header p{
        font-size: 15px;
    }

    .tech-item img{
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px){
    .tech-header h2{
        font-size: 30px;
    }

    .tech-header p{
        font-size: 14px;
    }

    .tech-grid{
        gap: 20px;
    }
}

@media (max-width: 576px){
    .tech-header h2{
        font-size: 26px;
    }

    .tech-header h3{
        font-size: 12px;
    }

    .tech-header p{
        font-size: 13px;
    }

    .tech-item img{
        width: 40px;
        height: 40px;
    }

    .tech-item span{
        font-size: 12px;
    }
}

/* -------------------- PORTFOLIO -------------------- */
.portfolio{
    padding: 120px 20px;
    background-color: #111;
    display: flex;
    justify-content: center;
}

.portfolio-wrapper{
    max-width: 1200px;
    width: 100%;
}

.portfolio-header{
    text-align: center;
    margin-bottom: 60px;
}

.portfolio-header h3{
    color: #aaa;
    letter-spacing: 3px;
    font-size: 14px;
    text-transform: uppercase;
}

.portfolio-header h2{
    font-size: 40px;
    color: #fff;
    font-weight: 700;
}

.portfolio-header h2 span{
    color: rgb(4,134,241);
}

.portfolio-header p{
    color: #ccc;
    margin-top: 10px;
    font-size: 16px;
}

/* GRID */
.portfolio-slide{
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
}

.portfolio-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */
.portfolio-item{
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}

.portfolio-item img{
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.portfolio-item h4{
    color: #fff;
    margin-bottom: 10px;
}

.portfolio-item p{
    color: #ccc;
    font-size: 14px;
    margin-bottom: 15px;
}

.portfolio-item a{
    display: inline-block;
    padding: 10px 25px;
    border-radius: 8px;
    background: rgb(4,134,241);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.portfolio-item a:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(4,134,241,0.4);
}

/* HOVER CARD */
.portfolio-item:hover{
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(4,134,241,0.5);
    border: 1px solid rgb(4,134,241);
}

/* RESPONSIVE */
@media(max-width: 1200px){
    .portfolio-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px){
    .portfolio-grid{
        grid-template-columns: 1fr;
    }
    .portfolio-item img{
        height: 200px;
    }
}

/* -------------------- ABOUT ME -------------------- */
.about-me{
    padding: 120px 20px;
    background-color: #111;
    display: flex;
    justify-content: center;
}

.about-me-wrapper{
    max-width: 1100px;
    width: 100%;
}

/* HEADER */
.about-me-header{
    text-align: center;
    margin-bottom: 60px;
}

.about-me-header h3{
    color: #aaa;
    letter-spacing: 3px;
    font-size: 14px;
    text-transform: uppercase;
}

.about-me-header h2{
    font-size: 40px;
    color: #fff;
    font-weight: 700;
}

.about-me-header h2 span{
    color: rgb(4,134,241);
}

.about-me-header p{
    color: #ccc;
    margin-top: 10px;
}

/* CONTENIDO */
.about-me-content{
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

/* TEXTO */
.about-me-text h4{
    color: #fff;
    font-size: 22px;
    margin-bottom: 20px;
}

.about-me-text p{
    color: #ccc;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* BOTÓN */
.about-me-btn{
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: rgb(4,134,241);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: 0.3s;
}

.about-me-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(4,134,241,0.4);
}

/* STATS */
.about-me-stats{
    display: grid;
    gap: 20px;
}

.stat-box{
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.stat-box h3{
    color: #fff;
    font-size: 22px;
    margin-bottom: 5px;
}

.stat-box span{
    color: #ccc;
    font-size: 13px;
}

.stat-box:hover{
    transform: translateY(-6px);
    border: 1px solid rgb(4,134,241);
    box-shadow: 0 10px 25px rgba(4,134,241,0.4);
}

/* RESPONSIVE */
@media(max-width: 992px){
    .about-me-content{
        grid-template-columns: 1fr;
    }

    .about-me-text{
        text-align: center;
    }

    .about-me-stats{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 576px){
    .about-me-header h2{
        font-size: 28px;
    }

    .about-me-stats{
        grid-template-columns: 1fr;
    }
}

/* -------------------- TESTIMONIALS -------------------- */
.testimonials{
    padding: 120px 20px;
    background-color: #111;
    display: flex;
    justify-content: center;
}

.testimonials-wrapper{
    max-width: 900px;
    width: 100%;
}

/* HEADER */
.testimonials-header{
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header h3{
    color: #aaa;
    letter-spacing: 3px;
    font-size: 14px;
    text-transform: uppercase;
}

.testimonials-header h2{
    font-size: 40px;
    color: #fff;
    font-weight: 700;
}

.testimonials-header h2 span{
    color: rgb(4,134,241);
}

.testimonials-header p{
    color: #ccc;
    margin-top: 10px;
}

/* CARD */
.testimonial-card{
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.testimonial-card p{
    color: #ddd;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* USER */
.testimonial-user{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-user img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgb(4,134,241);
}

.testimonial-user h4{
    color: #fff;
    margin: 0;
    font-size: 16px;
}

.testimonial-user span{
    color: #aaa;
    font-size: 13px;
}

/* HOVER */
.testimonial-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(4,134,241,0.4);
    border: 1px solid rgb(4,134,241);
}

/* CONTROLES BOOTSTRAP */
.carousel-control-prev-icon,
.carousel-control-next-icon{
    filter: invert(1);
}

/* RESPONSIVE */
@media(max-width: 768px){
    .testimonial-card{
        padding: 25px;
    }

    .testimonials-header h2{
        font-size: 30px;
    }
}

/* -------------------- TIMELINE SECTION -------------------- */
.timeline-section{
    padding: 120px 20px;
    background-color: #111;
    display: flex;
    justify-content: center;
}

.timeline-wrapper{
    max-width: 1000px;
    width: 100%;
}

/* HEADER */
.timeline-header{
    text-align: center;
    margin-bottom: 60px;
}

.timeline-header h3{
    color: #aaa;
    letter-spacing: 3px;
    font-size: 14px;
    text-transform: uppercase;
}

.timeline-header h2{
    font-size: 40px;
    color: #fff;
    font-weight: 700;
}

.timeline-header h2 span{
    color: rgb(4,134,241);
}

.timeline-header p{
    color: #ccc;
    margin-top: 10px;
}

/* LINE */
.timeline{
    position: relative;
    padding: 40px 0;
}

.timeline::before{
    content:'';
    position:absolute;
    width:4px;
    height:100%;
    background: rgb(4,134,241);
    left:50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

/* ITEM */
.timeline-item{
    width:50%;
    padding:20px 40px;
    position:relative;
}

/* CONTENT */
.timeline-content{
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition:0.3s;
}

.timeline-content h4{
    color:#fff;
    margin-bottom:10px;
}

.timeline-content p{
    color:#ccc;
    font-size:14px;
    margin-bottom:10px;
}

.date{
    color:#aaa;
    font-size:12px;
}

/* TAGS */
.tag{
    display:inline-block;
    padding:5px 10px;
    font-size:11px;
    border-radius:5px;
    margin-bottom:10px;
    font-weight:bold;
}

.tag.exp{
    background: rgba(4,134,241,0.2);
    color: rgb(4,134,241);
}

.tag.edu{
    background: rgba(0,255,150,0.15);
    color: springgreen;
}

/* LEFT / RIGHT */
.left{
    left:0;
    text-align:right;
}

.right{
    left:50%;
}

.left::before,
.right::before{
    content:'';
    position:absolute;
    width:15px;
    height:15px;
    background: rgb(4,134,241);
    border-radius:50%;
    top:30px;
    box-shadow:0 0 10px rgb(4,134,241);
}

.left::before{
    right:-8px;
}

.right::before{
    left:-8px;
}

/* HOVER */
.timeline-content:hover{
    transform: translateY(-5px);
    border:1px solid rgb(4,134,241);
    box-shadow:0 10px 25px rgba(4,134,241,0.3);
}

/* RESPONSIVE */
@media(max-width: 768px){
    .timeline::before{
        left:10px;
    }

    .timeline-item{
        width:100%;
        padding-left:40px;
        text-align:left !important;
    }

    .left, .right{
        left:0;
    }

    .left::before,
    .right::before{
        left:0;
    }
}

/* -------------------- STATS SECTION -------------------- */
.stats{
    padding: 120px 20px;
    background-color: #111;
    display: flex;
    justify-content: center;
}

.stats-wrapper{
    max-width: 1100px;
    width: 100%;
}

/* HEADER */
.stats-header{
    text-align: center;
    margin-bottom: 60px;
}

.stats-header h3{
    color: #aaa;
    letter-spacing: 3px;
    font-size: 14px;
    text-transform: uppercase;
}

.stats-header h2{
    font-size: 40px;
    color: #fff;
    font-weight: 700;
}

.stats-header h2 span{
    color: rgb(4,134,241);
}

.stats-header p{
    color: #ccc;
    margin-top: 10px;
}

/* GRID */
.stats-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.stat-card{
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.stat-card h3{
    font-size: 40px;
    color: #fff;
    margin-bottom: 10px;
}

.stat-card h3::before{
    content: "+";
}

.stat-card span{
    color: #ccc;
    font-size: 14px;
}

/* HOVER */
.stat-card:hover{
    transform: translateY(-6px);
    border: 1px solid rgb(4,134,241);
    box-shadow: 0 10px 25px rgba(4,134,241,0.4);
}





/* RESPONSIVE */
@media(max-width: 992px){
    .stats-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 576px){
    .stats-grid{
        grid-template-columns: 1fr;
    }

    .stats-header h2{
        font-size: 30px;
    }
}

/* -------------------- FOOTER -------------------- */
.footer{
    padding: 100px 20px 40px;
    background-color: #0f0f0f;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-wrapper{
    max-width: 1200px;
    width: 100%;
}

/* GRID */
.footer-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

/* BOX */
.footer-box h3{
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-box p{
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

/* LINKS */
.footer-box a{
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: 0.3s;
}

.footer-box a:hover{
    color: rgb(4,134,241);
    transform: translateX(5px);
}

/* SOCIALS */
.socials{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.socials a{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.socials a img{
    width: 22px;
    height: 22px;
    filter: brightness(0.9);
    transition: 0.3s;
}

.socials a:hover{
    color: rgb(4,134,241);
    transform: translateX(5px);
}

.socials a:hover img{
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* BOTTOM CTA */
.footer-bottom{
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom h2{
    color: #fff;
    font-size: 28px;
    margin-bottom: 20px;
}

.footer-btn{
    display: inline-block;
    padding: 12px 30px;
    background: rgb(4,134,241);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    margin-bottom: 20px;
    transition: 0.3s;
}

.footer-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(4,134,241,0.4);
}

/* COPYRIGHT */
.footer-bottom p{
    color: #777;
    font-size: 13px;
}

/* RESPONSIVE */
@media(max-width: 992px){
    .footer-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 576px){
    .footer-grid{
        grid-template-columns: 1fr;
    }

    .footer-bottom h2{
        font-size: 22px;
    }

    .call img{
        order:1;
    }

    .call .call-left{
        order: 2;
        text-align: center;
    }
    .call .call-left a{
    display: block;
    margin: 0 auto;
    width: fit-content;
    }

    .call .col-sm-6:last-child {
    display: flex;
    justify-content: center;
}
}


    #text::after {
      content: "|";
      animation: blink 1s infinite;
    }

    @keyframes blink {
      0%, 50%, 100% { opacity: 1; }
      25%, 75% { opacity: 0; }
    }


/* boton subir inicia */
#subir {
    position: fixed;
    right: 40px;
    bottom: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #0A66C2;
    color: white;
    text-decoration: none;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
    z-index: 99999;
     pointer-events: auto;
}

[data-aos] {
    transform: none !important;
}

#subir:hover {
    background: #084a8f;
    transform: translateY(-2px);
}

#subir i{
    font-size: 18px;
}
/* boton subir fin */



