
    :root{
      --primary:#0E3A5D;
      --secondary:#13B5C8;
      --light:#F5F8FB;
      --text:#1E293B;
    }

    body{
      font-family: 'Inter', sans-serif;
      color: var(--text);
      overflow-x: hidden;
    }

    a{
      text-decoration:none;
    }

    .allcontent{
      margin-top:60px;
    }
    

@media(max-width:991px){
    .allcontent{
      margin-top:-10px !important;
    }
}

/* ======================================
SECTION
====================================== */

.specialties-home{
    padding:50px 0;
    background:#F8FAFC;
}

/* ======================================
HEADINGS
====================================== */

.section-label{
    color:#00B4A6;
    text-transform:uppercase;
    font-size:.85rem;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:18px;
    display:inline-block;
}

.section-title{
    color:#0F172A;
    font-size:clamp(2.5rem,4vw,4rem);
    font-weight:800;
    line-height:1.05;
    letter-spacing:-2px;
    margin-bottom:25px;
}

.section-text{
    color:#64748B;
    line-height:2;
    font-size:1.05rem;
}

/* ======================================
CARD
====================================== */

.specialties-home .specialty-card{
    background:#fff;
    border-radius:28px;
    padding:35px 28px;
    height:100%;
    border:1px solid #E2E8F0;
    transition:.35s;
    text-align:center;
    position:relative;
    overflow:hidden;
    display:flex;
    flex-direction:column;
}

.specialties-home .specialty-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#00B4A6;
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s;
}

.specialty-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(15,23,42,.08);
}

.specialties-home .specialty-card:hover::before{
    transform:scaleX(1);
}

.specialties-home .specialty-icon{
    width:30px;
    height:30px;
    border-radius:22px;
    background:#ECFEFF;
    color:#00B4A6;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin:0 auto 24px;
}

.specialties-home .specialty-card h5{
    color:#0F172A;
    font-size:1.25rem;
    font-weight:800;
    margin-bottom:15px;
}

.specialties-home .specialty-card p{
    color:#64748B;
    line-height:1.8;
    font-size:.96rem;
    margin-bottom:28px;
}

/* ======================================
BUTTON
====================================== */

.specialties-home .specialty-btn{
    margin-top:auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:5px 20px;
    border-radius:50px;
    background:#0F172A;
    color:#fff;
    font-weight:600;
    transition:.3s;
    border:1px solid #0F172A;
}

.specialties-home .specialty-btn i{
    font-size:.85rem;
    transition:.3s;
}

.specialties-home .specialty-btn:hover{
    background:#00B4A6;
    border-color:#00B4A6;
    color:#fff;
}

.specialties-home .specialty-btn:hover i{
    transform:translateX(4px);
}

/* ======================================
RESPONSIVE
====================================== */

@media(max-width:991px){

    .specialties-home{
        padding:90px 0;
    }

    .specialties-home .specialty-card{
        padding:32px 24px;
    }

    .specialties-home .section-title{
        font-size:2.5rem;
    }

}



/* ======================================
SECTION
====================================== */

.about-section{
    position:relative;
    padding:50px 0;
    background:#fff;
    overflow:hidden;
}

/* ======================================
IMAGE WRAPPER
====================================== */

.about-image-wrapper{
    position:relative;
    padding-right:60px;
    padding-bottom:120px;
}

.about-main-image{
    width:100%;
    height:720px;
    object-fit:cover;
    border-radius:40px;
    box-shadow:0 35px 80px rgba(15,23,42,.12);
}

/* ======================================
EXPERIENCE CARD
====================================== */

.experience-card{
    position:absolute;
    top:35px;
    left:-30px;
    width:220px;
    background:#0F172A;
    border-radius:30px;
    padding:35px 30px;
    box-shadow:0 20px 50px rgba(15,23,42,.20);
}

.experience-card h2{
    color:#00B4A6;
    font-size:4rem;
    font-weight:800;
    line-height:1;
    margin-bottom:12px;
}

.experience-card p{
    color:rgba(255,255,255,.72);
    line-height:1.8;
    margin:0;
    font-size:.95rem;
}

/* ======================================
FLOATING CARD
====================================== */

.about-floating-card{
    position:absolute;
    bottom:130px;
    right:0;
    background:#fff;
    border-radius:28px;
    padding:24px;
    max-width:360px;
    box-shadow:0 25px 60px rgba(15,23,42,.14);
}

.about-card-icon{
    width:70px;
    height:70px;
    border-radius:22px;
    background:#ECFEFF;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#00B4A6;
    font-size:30px;
}

.about-floating-card h5{
    font-size:19px;
    font-weight:800;
    color:#0F172A;
    margin-bottom:6px;
}

.about-floating-card p{
    margin:0;
    color:#64748B;
    line-height:1.8;
    font-size:14px;
}

/* ======================================
STATS
====================================== */

.about-stats{
    position:absolute;
    left:40px;
    bottom:0;
    background:#fff;
    border-radius:30px;
    padding:28px 35px;
    display:flex;
    gap:40px;
    box-shadow:0 25px 60px rgba(15,23,42,.10);
}

.about-stat-item h4{
    color:#0F172A;
    font-size:1.5rem;
    font-weight:800;
    margin-bottom:6px;
}

.about-stat-item span{
    color:#64748B;
    font-size:.9rem;
}

/* ======================================
SUBTITLE
====================================== */

.section-subtitle{
    display:flex;
    align-items:center;
    gap:14px;
    color:#00B4A6;
    font-size:14px;
    font-weight:700;
    margin-bottom:25px;
    letter-spacing:.8px;
}

.section-subtitle span{
    width:55px;
    height:2px;
    background:#00B4A6;
}

/* ======================================
TITLE
====================================== */

.section-title{
    font-size:58px;
    line-height:1.05;
    font-weight:800;
    color:#0F172A;
    margin-bottom:30px;
    letter-spacing:-2px;
}

/* ======================================
TEXT
====================================== */

.section-text{
    font-size:17px;
    line-height:2;
    color:#64748B;
    margin-bottom:22px;
}

/* ======================================
FEATURES
====================================== */

.about-features{
    margin-top:45px;
    display:flex;
    flex-direction:column;
    gap:25px;
}

.about-feature-item{
    display:flex;
    gap:18px;
    align-items:flex-start;
}

.feature-check{
    width:55px;
    min-width:55px;
    height:55px;
    border-radius:18px;
    background:#ECFEFF;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#00B4A6;
    font-size:20px;
}

.about-feature-item h5{
    font-size:20px;
    font-weight:800;
    color:#0F172A;
    margin-bottom:8px;
}

.about-feature-item p{
    margin:0;
    color:#64748B;
    line-height:1.8;
}

/* ======================================
BUTTONS
====================================== */

.btn-primary-custom{
    background:#00B4A6;
    color:#fff;
    padding:16px 34px;
    border-radius:60px;
    font-weight:600;
    transition:.3s;
    box-shadow:0 15px 35px rgba(0,180,166,.22);
}

.btn-primary-custom:hover{
    background:#00998d;
    color:#fff;
    transform:translateY(-3px);
}

.btn-outline-custom{
    border:1px solid #DCE5EC;
    color:#0F172A;
    padding:16px 34px;
    border-radius:60px;
    font-weight:600;
    transition:.3s;
}

.btn-outline-custom:hover{
    background:#0F172A;
    color:#fff;
    border-color:#0F172A;
}

/* ======================================
RESPONSIVE
====================================== */

@media(max-width:991px){

    .about-section{
        padding:90px 0;
    }

    .about-image-wrapper{
        padding-right:0;
        padding-bottom:0;
    }

    .about-main-image{
        height:520px;
    }

    .experience-card{
        left:20px;
        top:20px;
        width:200px;
        padding:28px;
    }

    .about-floating-card{
        position:relative;
        bottom:auto;
        right:auto;
        margin-top:-70px;
        margin-left:20px;
    }

    .about-stats{
        position:relative;
        left:auto;
        bottom:auto;
        margin-top:25px;
        flex-wrap:wrap;
        gap:25px;
    }

    .section-title{
        font-size:40px;
    }

}



/* ======================================
CTA SIMPLE
====================================== */

.cta-simple-section{
    padding:50px 0;
    background:
    linear-gradient(135deg,#0F172A 0%, #1E293B 100%);
    overflow:hidden;
}

.cta-simple-section::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(0,180,166,.08);
    top:-200px;
    right:-120px;
}

/* ======================================
TEXT
====================================== */

.cta-label{
    display:inline-block;
    color:#00B4A6;
    font-size:.85rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:18px;
}

.cta-title{
    color:#fff;
    font-size:clamp(2.2rem,4vw,4rem);
    font-weight:800;
    line-height:1.05;
    letter-spacing:-2px;
    margin-bottom:20px;
    max-width:700px;
}

.cta-text{
    color:rgba(255,255,255,.72);
    font-size:1.05rem;
    line-height:1.9;
    margin:0;
    max-width:650px;
}

/* ======================================
BUTTON
====================================== */

.cta-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#00B4A6;
    color:#fff;
    padding:18px 34px;
    border-radius:60px;
    font-weight:600;
    transition:.35s;
    box-shadow:0 15px 35px rgba(0,180,166,.22);
}

.cta-btn i{
    transition:.3s;
}

.cta-btn:hover{
    background:#00a194;
    color:#fff;
    transform:translateY(-3px);
}

.cta-btn:hover i{
    transform:translateX(4px);
}

/* ======================================
RESPONSIVE
====================================== */

@media(max-width:991px){

    .cta-simple-section{
        padding:70px 0;
        text-align:center;
    }

    .cta-title{
        font-size:2.3rem;
    }

    .cta-text{
        margin:auto;
    }

}


/* ======================================
WHY SECTION
====================================== */

.why-section{
    padding:50px 0;
    background:#F8FBFD;
}

.why-card{
    background:#fff;
    border-radius:30px;
    padding:40px 35px;
    height:100%;
    transition:.3s;
    box-shadow:0 15px 40px rgba(0,0,0,.04);
}

.why-card:hover{
    transform:translateY(-8px);
}

.why-icon{
    width:40px;
    height:40px;
    border-radius:22px;
    background:#13B5C8;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    margin-bottom:28px;
}

.why-card h4{
    font-size:24px;
    font-weight:700;
    color:#0E3A5D;
    margin-bottom:18px;
}

.why-card p{
    color:#64748B;
    line-height:1.9;
    margin-bottom:0;
}

/* ======================================
PROCESS
====================================== */

.process-section{
    padding:50px 0;
    background:#fff;
}

.process-card{
    position:relative;
    background:#F8FBFD;
    border-radius:30px;
    padding:40px 35px;
    height:100%;
}

.process-number{
    width:30px;
    height:30px;
    border-radius:20px;
    background:#13B5C8;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    font-weight:800;
    margin-bottom:28px;
}

.process-card h4{
    font-size:22px;
    font-weight:700;
    color:#0E3A5D;
    margin-bottom:18px;
}

.process-card p{
    color:#64748B;
    line-height:1.9;
    margin-bottom:0;
}


/* ======================================
RESPONSIVE
====================================== */

@media(max-width:991px){

    .why-section,
    .process-section{
        padding:90px 0;
    }

    .cta-wrapper{
        padding:50px 35px;
        text-align:center;
    }

    .cta-wrapper h2{
        font-size:36px;
    }

}



        /* ======================================
        HERO
        ====================================== */

        .hero-section{
            position:relative;
            min-height:720px;
            display:flex;
            align-items:center;
            overflow:hidden;
            background:
            linear-gradient(90deg, rgba(15,23,42,.92) 0%, rgba(15,23,42,.78) 45%, rgba(15,23,42,.55) 100%),
            url('https://images.unsplash.com/photo-1586773860418-d37222d8fce3?q=80&w=1800&auto=format&fit=crop') center center/cover no-repeat;
        }

        .hero-badge{
            display:inline-flex;
            align-items:center;
            gap:10px;
            padding:10px 18px;
            border-radius:50px;
            background:rgba(255,255,255,.08);
            backdrop-filter:blur(8px);
            color:#fff;
            font-size:.9rem;
            font-weight:600;
            border:1px solid rgba(255,255,255,.12);
            margin-bottom:25px;
        }



        .hero-title span{
            color:var(--accent);
        }

        .hero-text{
            color:rgba(255,255,255,.82);
            font-size:1.12rem;
            line-height:1.9;
            max-width:720px;
            margin-top:35px;
        }

        .hero-buttons{
            margin-top:45px;
            display:flex;
            gap:18px;
            flex-wrap:wrap;
        }

        /* ======================================
        SECTION
        ====================================== */

 
        .section-label{
            color:var(--accent);
            font-weight:700;
            letter-spacing:2px;
            text-transform:uppercase;
            font-size:.85rem;
            margin-bottom:18px;
            display:inline-block;
        }

        .section-title{
            color:var(--primary);
            font-size:clamp(2.2rem,4vw,3.5rem);
            font-weight:800;
            line-height:1.15;
            letter-spacing:-1.5px;
            margin-bottom:30px;
        }

        .section-text{
            font-size:1.05rem;
            line-height:2;
            color:#64748B;
            margin-bottom:25px;
        }

        /* ======================================
        IMAGE BLOCK
        ====================================== */

        .image-wrapper{
            position:relative;
            border-radius:35px;
            overflow:hidden;
        }

        .image-wrapper img{
            width:100%;
            height:700px;
            object-fit:cover;
        }

        .floating-card{
            position:absolute;
            bottom:40px;
            left:40px;
            background:#fff;
            border-radius:24px;
            padding:30px;
            max-width:320px;
            box-shadow:0 20px 50px rgba(0,0,0,.12);
        }

        .floating-card h4{
            color:var(--primary);
            font-size:2.5rem;
            font-weight:800;
            margin-bottom:10px;
        }

        .floating-card p{
            margin:0;
            color:#64748B;
            line-height:1.7;
        }

        /* ======================================
        FEATURE BOX
        ====================================== */

        .feature-box{
            background:#fff;
            border:1px solid var(--border);
            border-radius:28px;
            padding:40px;
            height:100%;
            transition:.35s;
        }

        .feature-box:hover{
            transform:translateY(-8px);
            box-shadow:0 20px 45px rgba(15,23,42,.08);
        }

        .feature-icon{
            width:75px;
            height:75px;
            border-radius:22px;
            background:#ECFEFF;
            display:flex;
            align-items:center;
            justify-content:center;
            margin-bottom:28px;
            font-size:28px;
            color:var(--accent);
        }

        .feature-box h4{
            color:var(--primary);
            font-weight:700;
            margin-bottom:18px;
        }

        .feature-box p{
            color:#64748B;
            line-height:1.9;
            margin:0;
        }

        /* ======================================
        STATS
        ====================================== */

        .stats-section{
            background:var(--light);
            border-radius:40px;
            padding:70px 50px;
        }

        .stat-item h3{
            color:var(--primary);
            font-size:3rem;
            font-weight:800;
            margin-bottom:10px;
        }

        .stat-item p{
            color:#64748B;
            margin:0;
        }

        /* ======================================
        CTA
        ====================================== */

        .cta-section{
            position:relative;
            background:
            linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
            border-radius:40px;
            padding:90px 70px;
            overflow:hidden;
        }

        .cta-section::before{
            content:'';
            position:absolute;
            width:500px;
            height:500px;
            background:rgba(0,180,166,.08);
            border-radius:50%;
            top:-250px;
            right:-150px;
        }

        .cta-title{
            color:#fff;
            font-size:3rem;
            font-weight:800;
            line-height:1.1;
            position:relative;
            z-index:2;
        }

        .cta-text{
            color:rgba(255,255,255,.75);
            line-height:1.9;
            margin-top:25px;
            position:relative;
            z-index:2;
        }

        /* ======================================
        RESPONSIVE
        ====================================== */

        @media(max-width:991px){

            .section-padding{
                padding:80px 0;
            }

            .hero-section{
                min-height:auto;
                padding:120px 0;
            }

            .image-wrapper img{
                height:500px;
            }

            .floating-card{
                position:relative;
                left:auto;
                bottom:auto;
                margin:20px;
            }

            .cta-section{
                padding:60px 35px;
            }

            .cta-title{
                font-size:2.2rem;
            }

        }


.hero-about{
    position:relative;
    min-height:420px;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:
    linear-gradient(to right,
    rgba(15,23,42,.88) 0%,
    rgba(15,23,42,.65) 45%,
    rgba(15,23,42,.30) 100%),
    url('/images/bg-nosotros.avif') center center/cover no-repeat;
}

.hero-about::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    linear-gradient(to bottom,
    rgba(0,0,0,.05),
    rgba(0,0,0,.15));
}

.hero-about .container{
    position:relative;
    z-index:2;
}

.hero-about-content{
    padding-top:90px;
}

.hero-about-subtitle{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:rgba(255,255,255,.78);
    font-size:.95rem;
    font-weight:500;
    letter-spacing:1px;
    margin-bottom:20px;
    text-transform:uppercase;
}

.hero-about-subtitle i{
    color:#00B4A6;
    font-size:.9rem;
}

.hero-about-title{
    color:#fff;
    font-size:clamp(3rem,6vw,4.3rem);
    font-weight:800;
    line-height:.95;
    letter-spacing:-3px;
    margin-bottom:25px;
    max-width:760px;
}

.hero-about-title span{
    color:#00B4A6;
}

.hero-about-text{
    color:rgba(255,255,255,.74);
    font-size:1.05rem;
    line-height:2;
    max-width:680px;
}




@media(max-width:991px){

    .hero-about{
        min-height:360px;
    }

    .hero-about-content{
        padding-top:70px;
    }

    .hero-about-title{
        font-size:clamp(2.6rem,10vw,4rem);
        line-height:1;
    }

    .hero-about-text{
        font-size:1rem;
    }

}

 /* ======================================
CTA FULL WIDTH
====================================== */

    .cta-fullwidth {
        position: relative;
        overflow: hidden;
    }

    .cta-wrapper {
        position: relative;
        width: 100%;
        padding: 50px 0;
        background:
            linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
        overflow: hidden;
    }

    /* BG EFFECT */



    .cta-wrapper::after {
        content: '';
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .03);
        bottom: -180px;
        left: -80px;
    }

    /* ======================================
TEXT
====================================== */

    .cta-label {
        display: inline-block;
        color: #00B4A6;
        text-transform: uppercase;
        font-size: .85rem;
        font-weight: 700;
        letter-spacing: 2px;
        margin-bottom: 18px;
    }

    .cta-title {
        color: #fff;
        font-size: clamp(2.5rem, 4vw, 4.5rem);
        font-weight: 800;
        line-height: 1.05;
        letter-spacing: -2px;
        margin-bottom: 24px;
        max-width: 700px;
    }

    .cta-text {
        color: rgba(255, 255, 255, .74);
        font-size: 1.08rem;
        line-height: 2;
        margin: 0;
        max-width: 700px;
    }

    /* ======================================
BUTTON
====================================== */

    .cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: #00B4A6;
        color: #fff;
        padding: 18px 36px;
        border-radius: 60px;
        font-weight: 600;
        transition: .35s;
        box-shadow: 0 15px 35px rgba(0, 180, 166, .22);
    }

    .cta-btn i {
        transition: .3s;
    }

    .cta-btn:hover {
        background: #00a194;
        color: #fff;
        transform: translateY(-3px);
    }

    .cta-btn:hover i {
        transform: translateX(4px);
    }

    /* ======================================
RESPONSIVE
====================================== */

    @media(max-width:991px) {

        .cta-wrapper {
            padding: 80px 0;
            text-align: center;
        }

        .cta-title {
            font-size: 2.4rem;
        }

        .cta-text {
            margin: auto;
        }

    }



.hero-blog{
    position:relative;
    min-height:420px;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:
    linear-gradient(to right,
    rgba(15,23,42,.88) 0%,
    rgba(15,23,42,.65) 45%,
    rgba(15,23,42,.30) 100%),
    url('https://images.unsplash.com/photo-1516549655669-df83a0774514?q=80&w=1800&auto=format&fit=crop') center center/cover no-repeat;
}

.hero-blog::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    linear-gradient(to bottom,
    rgba(0,0,0,.05),
    rgba(0,0,0,.15));
}

.hero-blog .container{
    position:relative;
    z-index:2;
}

.hero-blog-content{
    padding-top:90px;
}

.hero-blog-subtitle{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:rgba(255,255,255,.78);
    font-size:.95rem;
    font-weight:500;
    letter-spacing:1px;
    margin-bottom:20px;
    text-transform:uppercase;
}

.hero-blog-subtitle i{
    color:#00B4A6;
    font-size:.9rem;
}

.hero-blog-title{
    color:#fff;
    font-size:clamp(3rem,6vw,4.3rem);
    font-weight:800;
    line-height:.95;
    letter-spacing:-3px;
    margin-bottom:25px;
    max-width:850px;
}

.hero-blog-title span{
    color:#00B4A6;
}

.hero-blog-text{
    color:rgba(255,255,255,.74);
    font-size:1.05rem;
    line-height:2;
    max-width:720px;
}


@media(max-width:991px){

    .hero-blog{
        min-height:360px;
    }

    .hero-blog-content{
        padding-top:70px;
    }

    .hero-blog-title{
        font-size:clamp(2.6rem,10vw,4rem);
        line-height:1;
    }

    .hero-blog-text{
        font-size:1rem;
    }

}

.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }

  .hover-primary:hover {
    color: #0d6efd !important;
  }

  .hover-overlay {
    transition: opacity 0.3s ease;
  }

  .blog-card:hover .hover-overlay {
    opacity: 1 !important;
  }


/* ======================================
BLOG CTA
====================================== */

.blog-cta-section{
    position:relative;
    overflow:hidden;
}

.blog-cta-wrapper{
    position:relative;
    width:100%;
    padding:50px 0;
    background:
    linear-gradient(135deg,#0F172A 0%, #1E293B 100%);
    overflow:hidden;
}

/* BG EFFECTS */

.blog-cta-wrapper::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(0,180,166,.08);
    top:-220px;
    right:-120px;
}

.blog-cta-wrapper::after{
    content:'';
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(255,255,255,.03);
    bottom:-150px;
    left:-70px;
}

/* ======================================
TEXT
====================================== */

.blog-cta-label{
    display:inline-block;
    color:#00B4A6;
    text-transform:uppercase;
    font-size:.85rem;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:18px;
}

.blog-cta-title{
    color:#fff;
    font-size:clamp(2.5rem,4vw,4.2rem);
    font-weight:800;
    line-height:1.05;
    letter-spacing:-2px;
    margin-bottom:24px;
    max-width:760px;
}

.blog-cta-text{
    color:rgba(255,255,255,.74);
    font-size:1.08rem;
    line-height:2;
    margin:0;
    max-width:700px;
}

/* ======================================
BUTTONS
====================================== */

.blog-btn-primary{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:18px 34px;
    border-radius:60px;
    background:#00B4A6;
    color:#fff;
    font-weight:600;
    transition:.35s;
    box-shadow:0 15px 35px rgba(0,180,166,.22);
}

.blog-btn-primary i{
    transition:.3s;
}

.blog-btn-primary:hover{
    background:#00a194;
    color:#fff;
    transform:translateY(-3px);
}

.blog-btn-primary:hover i{
    transform:translateX(4px);
}

.blog-btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 34px;
    border-radius:60px;
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    font-weight:600;
    transition:.35s;
    backdrop-filter:blur(10px);
}

.blog-btn-outline:hover{
    background:#fff;
    color:#0F172A;
}

/* ======================================
RESPONSIVE
====================================== */

@media(max-width:991px){

    .blog-cta-wrapper{
        padding:80px 0;
        text-align:center;
    }

    .blog-cta-title{
        font-size:2.3rem;
    }

    .blog-cta-text{
        margin:auto;
    }

}



        /* ======================================
        HERO
        ====================================== */

        .hero-contact{
            position:relative;
            min-height:620px;
            display:flex;
            align-items:center;
            background:
            linear-gradient(90deg, rgba(15,23,42,.94) 0%, rgba(15,23,42,.78) 55%, rgba(15,23,42,.55) 100%),
            url('https://images.unsplash.com/photo-1584515933487-779824d29309?q=80&w=1800&auto=format&fit=crop') center center/cover no-repeat;
        }

        .hero-badge{
            display:inline-flex;
            align-items:center;
            gap:10px;
            padding:10px 18px;
            border-radius:50px;
            background:rgba(255,255,255,.08);
            border:1px solid rgba(255,255,255,.12);
            color:#fff;
            font-size:.9rem;
            font-weight:600;
            margin-bottom:25px;
            backdrop-filter:blur(8px);
        }



    

        .hero-text{
            color:rgba(255,255,255,.82);
            font-size:1.08rem;
            line-height:1.9;
            max-width:680px;
            margin-top:35px;
        }

        /* ======================================
        SECTION
        ====================================== */


        .section-label{
            color:var(--accent);
            text-transform:uppercase;
            font-size:.85rem;
            font-weight:700;
            letter-spacing:2px;
            margin-bottom:15px;
            display:inline-block;
        }

        .section-title{
            color:var(--primary);
            font-size:clamp(2.2rem,4vw,3.4rem);
            font-weight:800;
            line-height:1.1;
            letter-spacing:-1.5px;
            margin-bottom:25px;
        }

        .section-text{
            color:#64748B;
            line-height:2;
            font-size:1.05rem;
        }

        /* ======================================
        CONTACT BOX
        ====================================== */

        .contact-box{
            background:#fff;
            border:1px solid var(--border);
            border-radius:32px;
            padding:40px;
            height:100%;
            transition:.35s;
        }

        .contact-box:hover{
            transform:translateY(-6px);
            box-shadow:0 25px 50px rgba(15,23,42,.08);
        }

        .contact-icon{
            width:50px;
            height:50px;
            border-radius:22px;
            background:#13B5C8;
            display:flex;
            align-items:center;
            justify-content:center;
            color:#fff;
            font-size:20px;
            margin-bottom:25px;
        }

        .contact-box h4{
            color:var(--primary);
            font-weight:700;
            margin-bottom:15px;
        }

        .contact-box p,
        .contact-box a{
            color:#64748B;
            line-height:1.8;
            margin:0;
        }

        /* ======================================
        FORM
        ====================================== */

        .contact-form-wrapper{
            padding:60px;
        }

        .form-control{
            height:60px;
            border-radius:16px;
            border:1px solid var(--border);
            padding:15px 20px;
            font-size:1rem;
            box-shadow:none !important;
        }

        textarea.form-control{
            height:180px;
            resize:none;
            padding-top:18px;
        }

        .form-control:focus{
            border-color:var(--accent);
        }

        .btn-custom{
            background:var(--accent);
            color:#fff;
            border:none;
            padding:15px 38px;
            border-radius:60px;
            font-weight:600;
            transition:.3s;
        }

        .btn-custom:hover{
            background:#00998d;
            color:#fff;
            transform:translateY(-2px);
        }

        /* ======================================
        MAP
        ====================================== */

        .map-wrapper{
            overflow:hidden;
            border-radius:35px;
            height:550px;
            box-shadow:0 20px 45px rgba(0,0,0,.08);
        }

        .map-wrapper iframe{
            width:100%;
            height:100%;
            border:0;
        }

        /* ======================================
        CTA
        ====================================== */

        .cta-section{
            background:
            linear-gradient(135deg,#0F172A 0%, #1E293B 100%);
            border-radius:40px;
            padding:90px 70px;
            position:relative;
            overflow:hidden;
        }

        .cta-section::before{
            content:'';
            position:absolute;
            width:500px;
            height:500px;
            border-radius:50%;
            background:rgba(0,180,166,.08);
            top:-250px;
            right:-150px;
        }

        .cta-title{
            color:#fff;
            font-size:3rem;
            font-weight:800;
            line-height:1.1;
            position:relative;
            z-index:2;
        }

        .cta-text{
            color:rgba(255,255,255,.75);
            line-height:1.9;
            margin-top:25px;
            position:relative;
            z-index:2;
        }

        /* ======================================
        RESPONSIVE
        ====================================== */

        @media(max-width:991px){

            .section-padding{
                padding:80px 0;
            }

            .hero-contact{
                min-height:auto;
                padding:120px 0;
            }

            .contact-form-wrapper{
                padding:35px;
            }

            .cta-section{
                padding:60px 35px;
            }

            .cta-title{
                font-size:2.2rem;
            }

        }


/* ======================================
MINIMAL HERO
====================================== */

.hero-contact{
    position:relative;
    min-height:420px;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:
    linear-gradient(to right,
    rgba(15,23,42,.88) 0%,
    rgba(15,23,42,.65) 45%,
    rgba(15,23,42,.30) 100%),
    url('/images/bg-contacto.avif') center center/cover no-repeat;
}

.hero-contact::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    linear-gradient(to bottom,
    rgba(0,0,0,.05),
    rgba(0,0,0,.15));
}

.hero-contact .container{
    position:relative;
    z-index:2;
}

.hero-content{
    padding-top:0px;
}

.hero-subtitle{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:rgba(255,255,255,.78);
    font-size:.95rem;
    font-weight:500;
    letter-spacing:1px;
    margin-bottom:20px;
    text-transform:uppercase;
}

.hero-subtitle i{
    color:#00B4A6;
    font-size:.85rem;
}



.hero-title span{
    color:#00B4A6;
}

.hero-text{
    color:rgba(255,255,255,.74);
    font-size:1.05rem;
    line-height:2;
    max-width:620px;
}



@media(max-width:991px){

    .hero-contact{
        min-height:360px;
    }

    .hero-content{
        padding-top:0px;
    }

    .hero-title{
        font-size:clamp(2.7rem,10vw,4rem);
        line-height:1;
    }

    .hero-text{
        font-size:1rem;
    }

}


/* ======================================
CTA SECTION
====================================== */

.cta-medical-full{
    position:relative;
    overflow:hidden;
}

.cta-medical-wrapper{
    position:relative;
    width:100%;
    padding:50px 0;
    background:
    linear-gradient(135deg,#0F172A 0%, #1E293B 100%);
    overflow:hidden;
}

/* EFFECTS */

.cta-medical-wrapper::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(0,180,166,.08);
    top:-220px;
    right:-120px;
}

.cta-medical-wrapper::after{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(255,255,255,.03);
    bottom:-140px;
    left:-80px;
}

/* ======================================
TEXT
====================================== */

.cta-subtitle{
    display:inline-block;
    color:#00B4A6;
    text-transform:uppercase;
    font-size:.85rem;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:18px;
}

.cta-title{
    color:#fff;
    font-size:clamp(2.4rem,4vw,4.2rem);
    font-weight:800;
    line-height:1.05;
    letter-spacing:-2px;
    margin-bottom:24px;
    max-width:760px;
}

.cta-text{
    color:rgba(255,255,255,.74);
    font-size:1.08rem;
    line-height:2;
    margin:0;
    max-width:680px;
}

/* ======================================
BUTTON
====================================== */

.cta-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:18px 36px;
    border-radius:60px;
    background:#00B4A6;
    color:#fff;
    font-weight:600;
    transition:.35s;
    box-shadow:0 15px 35px rgba(0,180,166,.22);
}

.cta-btn i{
    transition:.3s;
}

.cta-btn:hover{
    background:#00a194;
    color:#fff;
    transform:translateY(-3px);
}

.cta-btn:hover i{
    transform:translateX(4px);
}

/* ======================================
RESPONSIVE
====================================== */

@media(max-width:991px){

    .cta-medical-wrapper{
        padding:80px 0;
        text-align:center;
    }

    .cta-title{
        font-size:2.3rem;
    }

    .cta-text{
        margin:auto;
    }

}


        /* ======================================
        HERO
        ====================================== */

        .hero-services{
            position:relative;
            min-height:650px;
            display:flex;
            align-items:center;
            background:
            linear-gradient(90deg, rgba(15,23,42,.92) 0%, rgba(15,23,42,.70) 55%, rgba(15,23,42,.45) 100%),
            url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?q=80&w=1800&auto=format&fit=crop') center center/cover no-repeat;
        }

        .hero-badge{
            display:inline-flex;
            align-items:center;
            gap:10px;
            padding:10px 20px;
            border-radius:50px;
            background:rgba(255,255,255,.08);
            border:1px solid rgba(255,255,255,.12);
            color:#fff;
            font-size:.9rem;
            font-weight:600;
            margin-bottom:25px;
            backdrop-filter:blur(10px);
        }

        .hero-title{
            color:#fff;
            font-size:clamp(3rem,6vw,4.1rem);
            font-weight:800;
            line-height:1.05;
            letter-spacing:-2px;
        }

    

        .hero-text{
            color:rgba(255,255,255,.82);
            font-size:1.08rem;
            line-height:1.9;
            max-width:700px;
            margin-top:35px;
        }

        /* ======================================
        SECTION
        ====================================== */

        .section-padding{
            padding:50px 0;
        }

        .section-label{
            color:var(--accent);
            font-size:.85rem;
            font-weight:700;
            text-transform:uppercase;
            letter-spacing:2px;
            margin-bottom:15px;
            display:inline-block;
        }

        .section-title{
            color:var(--primary);
            font-size:clamp(2.2rem,4vw,3.5rem);
            font-weight:800;
            line-height:1.1;
            letter-spacing:-1.5px;
            margin-bottom:25px;
        }

        .section-text{
            color:#64748B;
            line-height:2;
            font-size:1.05rem;
        }

        /* ======================================
        SERVICE CARD
        ====================================== */

        .service-card{
            background:#fff;
            border:1px solid var(--border);
            border-radius:32px;
            padding:45px;
            height:100%;
            transition:.35s;
            position:relative;
            overflow:hidden;
        }

        .service-card:hover{
            transform:translateY(-8px);
            box-shadow:0 25px 50px rgba(15,23,42,.08);
        }

        .service-icon{
            width:85px;
            height:85px;
            border-radius:24px;
            background:#ECFEFF;
            display:flex;
            align-items:center;
            justify-content:center;
            margin-bottom:30px;
            font-size:34px;
            color:var(--accent);
        }

        .service-card h3{
            color:var(--primary);
            font-weight:800;
            margin-bottom:25px;
            font-size:1.7rem;
        }

        .service-list{
            list-style:none;
            padding:0;
            margin:0;
        }

        .service-list li{
            display:flex;
            align-items:flex-start;
            gap:12px;
            margin-bottom:18px;
            color:#64748B;
            line-height:1.7;
        }

        .service-list li i{
            color:var(--accent);
            margin-top:5px;
            font-size:.85rem;
        }

        /* ======================================
        HIGHLIGHT
        ====================================== */

        .highlight-section{
            background:var(--light);
            border-radius:40px;
            padding:80px 60px;
        }

        .highlight-item{
            display:flex;
            gap:20px;
            margin-bottom:35px;
        }

        .highlight-item:last-child{
            margin-bottom:0;
        }

        .highlight-icon{
            min-width:70px;
            height:70px;
            border-radius:20px;
            background:#fff;
            display:flex;
            align-items:center;
            justify-content:center;
            color:var(--accent);
            font-size:28px;
            box-shadow:0 10px 25px rgba(0,0,0,.05);
        }

        .highlight-item h5{
            color:var(--primary);
            font-weight:700;
            margin-bottom:10px;
        }

        .highlight-item p{
            color:#64748B;
            line-height:1.8;
            margin:0;
        }

        /* ======================================
        CTA
        ====================================== */

        .cta-section{
            background:
            linear-gradient(135deg,#0F172A 0%, #1E293B 100%);
            border-radius:40px;
            padding:90px 70px;
            position:relative;
            overflow:hidden;
        }

        .cta-section::before{
            content:'';
            position:absolute;
            width:500px;
            height:500px;
            background:rgba(0,180,166,.08);
            border-radius:50%;
            right:-150px;
            top:-250px;
        }

        .cta-title{
            color:#fff;
            font-size:3rem;
            font-weight:800;
            line-height:1.1;
            position:relative;
            z-index:2;
        }

        .cta-text{
            color:rgba(255,255,255,.75);
            line-height:1.9;
            margin-top:25px;
            position:relative;
            z-index:2;
        }

        .btn-custom{
            background:#13B5C8;
            color:#fff;
            border:none;
            padding:15px 35px;
            border-radius:60px;
            font-weight:600;
            transition:.3s;
        }

        .btn-custom:hover{
            background:#00998d;
            color:#fff;
            transform:translateY(-2px);
        }

        /* ======================================
        RESPONSIVE
        ====================================== */

        @media(max-width:991px){

            .section-padding{
                padding:80px 0;
            }



            .service-card{
                padding:35px;
            }

            .highlight-section{
                padding:50px 30px;
            }

            .cta-section{
                padding:60px 35px;
            }

            .cta-title{
                font-size:2.2rem;
            }

        }



.hero-services{
    position:relative;
    min-height:420px;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:
    linear-gradient(to right,
    rgba(15,23,42,.88) 0%,
    rgba(15,23,42,.65) 45%,
    rgba(15,23,42,.30) 100%),
    url('/images/bg-especialidad.avif') center center/cover no-repeat;
}

.hero-services::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    linear-gradient(to bottom,
    rgba(0,0,0,.05),
    rgba(0,0,0,.15));
}

.hero-services .container{
    position:relative;
    z-index:2;
}

.hero-services-content{
    padding-top:90px;
}

.hero-services-subtitle{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:rgba(255,255,255,.78);
    font-size:.95rem;
    font-weight:500;
    letter-spacing:1px;
    margin-bottom:20px;
    text-transform:uppercase;
}

.hero-services-subtitle i{
    color:#00B4A6;
    font-size:.9rem;
}

.hero-services-title{
    color:#fff;
    font-size:clamp(3rem,6vw,4.3rem);
    font-weight:800;
    line-height:.95;
    letter-spacing:-3px;
    margin-bottom:25px;
    max-width:850px;
}

.hero-services-title span{
    color:#00B4A6;
}

.hero-services-text{
    color:rgba(255,255,255,.74);
    font-size:1.05rem;
    line-height:2;
    max-width:720px;
}


@media(max-width:991px){

    .hero-services{
        min-height:360px;
    }

    .hero-services-content{
        padding-top:70px;
    }

    .hero-services-title{
        font-size:clamp(2.6rem,10vw,4rem);
        line-height:1;
    }

    .hero-services-text{
        font-size:1rem;
    }

}


.services-section{
    position:relative;
    padding:110px 0;
    background:#fff;
}

.services-heading{
    margin-bottom:70px;
}

.services-label{
    color:#00B4A6;
    text-transform:uppercase;
    font-size:.82rem;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:18px;
    display:inline-block;
}

.services-title{
    color:#0F172A;
    font-size:clamp(2.3rem,4vw,3.8rem);
    font-weight:800;
    line-height:1.05;
    letter-spacing:-2px;
    margin-bottom:25px;
}

.services-title span{
    color:#00B4A6;
}

.services-text{
    color:#64748B;
    font-size:1.05rem;
    line-height:2;
    max-width:760px;
    margin:0 auto;
}

.services-section .specialty-card{
    position:relative;
    background:#fff;
    border:1px solid #E2E8F0;
    border-radius:34px;
    overflow:hidden;
    transition:.35s;
    height:100%;
}

.services-section .specialty-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(15,23,42,.08);
}

.services-section .specialty-image{
    position:relative;
    height:260px;
    overflow:hidden;
}

.services-section .specialty-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s;
}

.services-section .specialty-card:hover .specialty-image img{
    transform:scale(1.06);
}

.services-section .specialty-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(to top,
    rgba(15,23,42,.78),
    rgba(15,23,42,.10));
}

.services-section .specialty-icon{
    position:absolute;
    left:30px;
    bottom:25px;
    width:72px;
    height:72px;
    border-radius:22px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:1.7rem;
}

.services-section .specialty-content{
    padding:38px;
}

.services-section .specialty-content h3{
    color:#0F172A;
    font-size:1.55rem;
    font-weight:800;
    margin-bottom:25px;
    letter-spacing:-.5px;
}

.services-section .specialty-list{
    list-style:none;
    padding:0;
    margin:0;
}

.services-section .specialty-list li{
    display:flex;
    align-items:flex-start;
    gap:14px;
    color:#64748B;
    font-size:.98rem;
    line-height:1.8;
    margin-bottom:14px;
}

.services-section .specialty-list li i{
    color:#00B4A6;
    margin-top:7px;
    font-size:.8rem;
}

@media(max-width:991px){

    .services-section{
        padding:80px 0;
    }

    .services-heading{
        margin-bottom:50px;
    }

    .services-section .specialty-content{
        padding:30px;
    }

    .services-section .specialty-image{
        height:220px;
    }

}


  #back_to_top {
  position: fixed;
  bottom: 10px;
  right: 20px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.6);
  color: #000;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

#back_to_top:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
}
