
        /* ===== RESET Y BASE ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Playfair Display', sans-serif;
            background-color: #fefcf5;
            color: #1e2a2e;
            overflow-x: hidden;
        }

        /* ===== TOP BAR: COLOR #00674F ===== */
        .top-social-bar {
            background-color: #00674F;
            color: #FFFFFF;
            font-size: 0.85rem;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }
        .top-social-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }
        .social-icons-top a {
            color: #FFFFFF;
            font-size: 1rem;
            margin-left: 1.2rem;
            transition: all 0.3s ease;
            display: inline-block;
        }
        .social-icons-top a:hover {
            color: #d4d4d4;
            transform: translateY(-3px) scale(1.1);
        }
        .contact-info-top span {
            margin-right: 1.2rem;
            font-size: 0.8rem;
            transition: transform 0.2s;
            display: inline-block;
            color: #FFFFFF;
        }
        .contact-info-top span:hover {
            transform: translateX(3px);
            color: #f0f0f0;
        }
        .contact-info-top i {
            margin-right: 5px;
            color: #FFFFFF;
        }
        @media (max-width: 768px) {
            .top-social-bar .container {
                flex-direction: column;
                text-align: center;
                justify-content: center;
            }
            .social-icons-top a {
                margin: 0 0.6rem;
            }
            .contact-info-top span {
                margin: 0 0.6rem;
                display: inline-block;
            }
        }

        /* ===== NAVBAR: fondo #02142C, texto #FFFFFF ===== */
        .navbar {
            background-color: #02142C !important;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.7rem;
            letter-spacing: 1px;
            transition: transform 0.2s;
            color: #FFFFFF !important;
        }
        .navbar-brand:hover {
            transform: scale(1.02);
            color: #FFFFFF !important;
        }
        
        .brand-box {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }
        .brand-title {
            font-size: 1.7rem;
            font-weight: 900;
            margin: 0;
            letter-spacing: 1px;
            color: #FFFFFF;
            text-transform: uppercase;
        }
        .brand-gold {
            color: #c8a96b;
        }
        .brand-subtitle {
            font-size: .92rem;
            letter-spacing: 2px;
            color: rgba(255,255,255,0.85);
            margin-top: 3px;
            font-weight: 500;
        }
        
        .legal-badge {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(4px);
            color: #FFFFFF;
            border-radius: 40px;
            padding: 0.3rem 1.2rem;
            font-size: 0.8rem;
            font-weight: 600;
            transition: all 0.2s;
            border: 1px solid rgba(255,255,255,0.4);
            text-decoration: none;
        }
        .legal-badge:hover {
            background: #FFFFFF;
            color: #02142C;
            transform: translateY(-2px);
            border-color: #FFFFFF;
        }
        
        .navbar-nav .nav-link {
            color: #FFFFFF !important;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0.8rem;
        }
        .navbar-nav .nav-link:hover {
            color: #FFFFFF !important;
            transform: translateY(-2px);
            text-shadow: 0 0 5px rgba(255,255,255,0.6);
        }
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #FFFFFF;
            transition: width 0.3s ease;
        }
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        .navbar-nav .nav-link.active {
            font-weight: 700;
            text-shadow: 0 0 3px rgba(255,255,255,0.5);
        }
        
        .navbar-toggler {
            background-color: rgba(255,255,255,0.2);
            border: none;
        }
        .navbar-toggler-icon {
            filter: invert(1);
        }
        
        @media (max-width: 768px) {
            .brand-title {
                font-size: 1.2rem;
            }
            .brand-subtitle {
                font-size: 0.65rem;
                letter-spacing: 1px;
            }
        }

        /* ===== PORTADA DIVIDIDA EN 3 DIAGONALES ===== */
        .hero-diagonal {
            position: relative;
            width: 100%;
            min-height: 70vh;
            display: flex;
            flex-wrap: wrap;
            background: #f5f2eb;
        }
        .diagonal-block {
            flex: 1;
            min-width: 280px;
            position: relative;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            overflow: hidden;
            z-index: 1;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
        }
        .diagonal-block:hover {
            transform: scale(1.01);
            z-index: 3;
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
        }
        .diagonal-block:hover .overlay-grad {
            opacity: 0.85;
        }
        .diagonal-content {
            position: relative;
            z-index: 3;
            padding: 3rem 1.8rem;
            height: 100%;
            min-height: 500px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            background: rgba(0, 0, 0, 0.35);
            transition: all 0.3s;
        }
        .diagonal-block .overlay-grad {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 20%, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
            z-index: 2;
            transition: 0.3s;
        }
        .block-negocios {
            background-image: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=800&auto=format');
            background-size: cover;
            background-blend-mode: overlay;
        }
        .block-salud {
            background-image: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=800&auto=format');
            background-size: cover;
        }
        .block-financiero {
            background-image: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?w=800&auto=format');
            background-size: cover;
        }
        .diagonal-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            font-weight: 700;
            text-shadow: 2px 2px 12px rgba(0,0,0,0.4);
            margin-bottom: 1rem;
            transition: transform 0.2s;
        }
        .diagonal-block:hover .diagonal-content h2 {
            transform: scale(1.03);
        }
        .diagonal-content p {
            font-size: 1rem;
            max-width: 260px;
            margin: 0 auto;
            background: rgba(0,0,0,0.5);
            padding: 0.5rem 1rem;
            border-radius: 40px;
            backdrop-filter: blur(2px);
        }

        /* ===== NUEVOS ESTILOS PARA ICONOS Y BOTONES DE LA PORTADA ===== */
        /* Iconos de la portada con color blanco/dorado suave */
        .diagonal-content i {
            color: #FFD966;  /* Dorado cálido para los iconos */
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        .diagonal-block:hover .diagonal-content i {
            transform: scale(1.1) rotate(3deg);
            color: #FFEAA7;
        }
        
        /* Botones de la portada con nuevo color base #00674F y borde dorado */
        .btn-diagonal {
            margin-top: 1.8rem;
            background: #00674F;  /* Color principal del botón */
            border: 1.5px solid #FFD966;
            color: white;
            border-radius: 40px;
            padding: 0.6rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        .btn-diagonal i {
            color: white;
            font-size: 0.85rem;
            text-shadow: none;
        }
        .btn-diagonal:hover {
            background: #008B6B;
            border-color: #FFE087;
            transform: scale(1.05);
            color: white;
            box-shadow: 0 4px 14px rgba(0,103,79,0.4);
        }
        .btn-diagonal:hover i {
            color: white;
            transform: translateX(3px);
        }
        
        @media (max-width: 768px) {
            .hero-diagonal {
                flex-direction: column;
            }
            .diagonal-content h2 {
                font-size: 1.8rem;
            }
            .btn-diagonal {
                padding: 0.5rem 1.5rem;
                font-size: 0.85rem;
            }
        }

        /* Efecto hover adicional en los íconos */
        .fa-briefcase, .fa-notes-medical, .fa-chart-line {
            transition: transform 0.3s ease, color 0.2s;
        }
        .diagonal-block:hover .fa-briefcase,
        .diagonal-block:hover .fa-notes-medical,
        .diagonal-block:hover .fa-chart-line {
            transform: rotate(3deg) scale(1.12);
        }
/* =========================
   SUBMENU SERVICIOS
========================= */

.custom-dropdown{
    background: #02142C;

    border: none;

    border-radius: 20px;

    padding: 15px;

    min-width: 270px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.18);

    overflow: hidden;
}

/* ITEMS */
.custom-dropdown .dropdown-item{
    color: #FFFFFF;

    padding: 14px 18px;

    border-radius: 14px;

    font-weight: 500;

    display: flex;
    align-items: center;
    gap: 12px;

    transition: all 0.3s ease;
}

/* ICONOS */
.custom-dropdown .dropdown-item i{
    color: #00674F;

    font-size: 1rem;

    width: 20px;
}

/* HOVER */
.custom-dropdown .dropdown-item:hover{
    background: #00674F;

    color: #FFFFFF;

    transform: translateX(5px);
}

/* ICONOS HOVER */
.custom-dropdown .dropdown-item:hover i{
    color: #FFFFFF;
}

/* LINEA */
.custom-dropdown .dropdown-divider{
    border-color: rgba(255,255,255,0.12);
}

/* FLECHA NAV */
.navbar .dropdown-toggle::after{
    margin-left: 8px;
}



.hero-carousel{
    position: relative;
}

/* SLIDE */
.hero-slide{
    height: 100vh;
    min-height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* IMAGENES */
.slide-1{
    background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?q=80&w=1974&auto=format');
}

.slide-2{
    background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?q=80&w=1974&auto=format');
}

.slide-3{
    background-image: url('https://images.unsplash.com/photo-1555374018-13a8994ab246?q=80&w=1974&auto=format');
}

/* OVERLAY */
.hero-overlay{
    position: absolute;
    inset: 0;
    background:
    linear-gradient(
    135deg,
    rgba(2,20,44,0.92),
    rgba(0,103,79,0.70)
    );
}

/* CONTENIDO */
.hero-content{
    position: relative;
    z-index: 5;
    max-width: 760px;
    color: white;
}

/* BADGE */
.hero-badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    padding: 12px 22px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: .9rem;
}

/* TITULO */
.hero-content h1{
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-content h1 span{
    color: #FFD966;
    display: block;
}

/* TEXTO */
.hero-content p{
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.92);
    margin-bottom: 35px;
    max-width: 650px;
}

/* BOTONES */
.hero-buttons{
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* BOTON PRINCIPAL */
.btn-hero-primary{
    background: linear-gradient(135deg,#00674F,#00A884);
    color: white;
    padding: 16px 34px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: .3s;
    box-shadow: 0 10px 30px rgba(0,168,132,.35);
}

.btn-hero-primary:hover{
    transform: translateY(-4px) scale(1.03);
    color: white;
    box-shadow: 0 15px 35px rgba(0,168,132,.45);
}

/* BOTON SECUNDARIO */
.btn-hero-secondary{
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 16px 34px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.btn-hero-secondary:hover{
    background: white;
    color: #02142C;
    transform: translateY(-4px);
}

/* CONTROLES */
.carousel-control-prev,
.carousel-control-next{
    width: 7%;
}

/* INDICADORES */
.carousel-indicators button{
    width: 14px !important;
    height: 14px !important;
    border-radius: 50%;
    border: none;
    margin: 0 6px !important;
}

/* RESPONSIVE */
@media(max-width:991px){

    .hero-slide{
        height: 90vh;
        text-align: center;
    }

    .hero-content{
        margin: auto;
    }

    .hero-content h1{
        font-size: 3rem;
    }

    .hero-content p{
        font-size: 1rem;
    }

    .hero-buttons{
        justify-content: center;
    }

}

@media(max-width:768px){

    .hero-slide{
        min-height: 650px;
        padding: 80px 0;
    }

    .hero-content h1{
        font-size: 2.2rem;
    }

    .hero-content p{
        font-size: .95rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary{
        width: 100%;
        justify-content: center;
    }

}


/* =========================================
        ANIMACIONES GLOBALES
========================================= */

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

@keyframes floatImage{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes pulseGlow{

    0%{
        box-shadow:0 0 0 rgba(0,168,132,0.4);
    }

    50%{
        box-shadow:0 0 25px rgba(0,168,132,0.35);
    }

    100%{
        box-shadow:0 0 0 rgba(0,168,132,0.4);
    }

}

/* =========================================
        ABOUT PREMIUM
========================================= */

.about-modern-section{
    padding:120px 0;
    background:
    linear-gradient(
    to bottom,
    #fefcf5,
    #ffffff
    );

    overflow:hidden;
    position:relative;
}

/* EFECTO FONDO */
.about-modern-section::before{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    background:
    radial-gradient(
    rgba(0,168,132,0.08),
    transparent 70%
    );

    top:-120px;
    right:-120px;

    z-index:0;
}

/* CONTENIDO */
.about-modern-section .container{
    position:relative;
    z-index:2;
}

/* IMAGEN */

.about-image-wrapper{
    position:relative;

    animation:
    fadeUp 1s ease;
}

.about-modern-img{

    width:100%;
    border-radius:35px;

    box-shadow:
    0 25px 60px rgba(0,0,0,0.12);

    transition:.5s ease;

    animation:
    floatImage 5s ease-in-out infinite;
}

.about-modern-img:hover{

    transform:
    scale(1.03)
    rotate(-1deg);

}

/* EXPERIENCE BOX */

.experience-box{

    position:absolute;
    bottom:-25px;
    right:30px;

    background:
    linear-gradient(
    135deg,
    #00674F,
    #00A884
    );

    color:white;

    padding:25px 35px;

    border-radius:25px;

    box-shadow:
    0 15px 35px rgba(0,168,132,.35);

    animation:
    pulseGlow 3s infinite;
}

.experience-box h2{

    font-size:2.7rem;
    margin:0;
    font-weight:800;
}

.experience-box span{
    font-size:.95rem;
}

/* BADGE */

.section-badge{

    display:inline-block;

    background:
    rgba(0,103,79,0.1);

    color:#00674F;

    padding:10px 22px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:25px;

    animation:
    fadeUp .8s ease;
}

/* TITULO */

.about-modern-title{

    font-size:3.5rem;
    font-weight:800;
    line-height:1.1;

    color:#02142C;

    margin-bottom:25px;

    animation:
    fadeUp 1s ease;
}

.about-modern-title span{

    color:#00674F;
    display:block;
}

/* TEXTO */

.about-modern-text{

    font-size:1.05rem;
    line-height:2;

    color:#4b5b63;

    animation:
    fadeUp 1.2s ease;
}

/* FEATURES */

.about-features{
    margin-top:35px;
}

.feature-item{

    display:flex;
    align-items:center;
    gap:14px;

    margin-bottom:18px;

    font-weight:600;

    color:#02142C;

    padding:14px 18px;

    border-radius:18px;

    transition:.4s ease;

    background:white;

    box-shadow:
    0 10px 20px rgba(0,0,0,0.04);

    animation:
    fadeUp 1.3s ease;
}

.feature-item:hover{

    transform:translateX(8px);

    background:#ffffff;

    box-shadow:
    0 15px 30px rgba(0,0,0,0.08);
}

.feature-item i{

    color:#00A884;
    font-size:1.2rem;
}

/* =========================================
        CARDS
========================================= */

.modern-cards-section{

    padding:100px 0;
    background:white;
}

.modern-card{

    background:white;

    border-radius:30px;

    padding:45px 35px;

    text-align:center;

    transition:.5s ease;

    border:1px solid rgba(0,0,0,0.05);

    box-shadow:
    0 10px 30px rgba(0,0,0,0.05);

    height:100%;

    position:relative;

    overflow:hidden;
}

.modern-card::before{

    content:'';

    position:absolute;

    width:100%;
    height:5px;

    top:0;
    left:0;

    background:
    linear-gradient(
    90deg,
    #00674F,
    #00A884
    );

    transform:scaleX(0);

    transition:.5s ease;
}

.modern-card:hover::before{

    transform:scaleX(1);
}

.modern-card:hover{

    transform:
    translateY(-12px);

    box-shadow:
    0 25px 50px rgba(0,0,0,0.10);
}

.modern-icon{

    width:90px;
    height:90px;

    margin:auto auto 25px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
    135deg,
    #00674F,
    #00A884
    );

    transition:.4s ease;
}

.modern-card:hover .modern-icon{

    transform:
    rotate(8deg)
    scale(1.08);
}

.modern-icon i{

    color:white;
    font-size:2rem;
}

.modern-card h3{

    color:#02142C;
    margin-bottom:15px;
}

/* =========================================
        STATS
========================================= */

.stats-modern-section{

    padding:90px 0;

    background:
    linear-gradient(
    135deg,
    #02142C,
    #00674F
    );

    position:relative;
}

.stat-box{

    background:
    rgba(255,255,255,0.08);

    padding:35px 20px;

    border-radius:25px;

    backdrop-filter:blur(10px);

    transition:.4s ease;

    border:
    1px solid rgba(255,255,255,0.08);
}

.stat-box:hover{

    transform:
    translateY(-10px)
    scale(1.03);

    background:
    rgba(255,255,255,0.12);
}

.stat-box h2{

    font-size:3rem;

    color:#FFD966;

    font-weight:800;
}

.stat-box p{

    color:
    rgba(255,255,255,0.88);
}

/* =========================================
        VALORES PREMIUM
========================================= */

.value-item{

    position:relative;

    background:white;

    border-radius:30px;

    padding:35px 25px;

    text-align:center;

    overflow:hidden;

    transition:.5s ease;

    height:100%;

    border:
    1px solid rgba(0,0,0,0.04);

    box-shadow:
    0 15px 35px rgba(0,0,0,0.05);
}

.value-item::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:0;

    background:
    linear-gradient(
    180deg,
    rgba(0,168,132,0.08),
    transparent
    );

    transition:.5s ease;
}

.value-item:hover::before{

    height:100%;
}

.value-item:hover{

    transform:
    translateY(-12px);

    box-shadow:
    0 25px 50px rgba(0,0,0,0.10);
}

.value-icon{

    width:85px;
    height:85px;

    margin:auto auto 22px;

    border-radius:25px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
    135deg,
    #00674F,
    #00A884
    );

    position:relative;

    transition:.5s ease;
}

.value-item:hover .value-icon{

    transform:
    rotate(-8deg)
    scale(1.08);
}

.value-icon i{

    color:white;
    font-size:2rem;
}

.value-item h5{

    font-size:1.3rem;
    font-weight:700;

    color:#02142C;

    margin-bottom:12px;
}

.value-item p{

    font-size:.96rem;

    line-height:1.8;

    color:#6c757d;
}

/* =========================================
        RESPONSIVE
========================================= */

@media(max-width:991px){

    .about-modern-title{
        font-size:2.5rem;
    }

    .experience-box{

        right:20px;

        padding:20px 25px;
    }

}

@media(max-width:768px){

    .about-modern-section{
        padding:80px 0;
    }

    .about-modern-title{
        font-size:2rem;
        line-height:1.3;
    }

    .about-modern-text{
        font-size:.98rem;
        line-height:1.9;
    }

    .experience-box{

        bottom:-10px;
        right:10px;

        padding:18px 20px;

        border-radius:20px;
    }

    .experience-box h2{
        font-size:2rem;
    }

    .feature-item{
        padding:12px 15px;
    }

    .modern-card{
        padding:35px 25px;
    }

    .stat-box{
        padding:25px 15px;
    }

    .stat-box h2{
        font-size:2.2rem;
    }

    .value-item{
        padding:30px 20px;
    }

}

@media(max-width:576px){

    .about-modern-title{
        font-size:1.7rem;
    }

    .section-badge{

        font-size:.8rem;

        padding:8px 18px;
    }

    .experience-box{

        position:relative;

        right:auto;
        bottom:auto;

        margin-top:20px;

        width:fit-content;
    }

    .modern-icon,
    .value-icon{

        width:70px;
        height:70px;
    }

    .modern-icon i,
    .value-icon i{

        font-size:1.5rem;
    }

}

/* BOTÓN WHATSAPP */
.whatsapp-float{
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg,#00674F,#00A884);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    animation: pulseWhatsapp 2s infinite;
    transition: all .3s ease;
}

/* ICONO */
.whatsapp-float i{
    color: white;
    font-size: 2rem;
}

/* EFECTO HOVER */
.whatsapp-float:hover{
    transform: scale(1.12);
    box-shadow: 0 15px 35px rgba(0,103,79,0.45);
}

/* MENSAJE */
.whatsapp-tooltip{
    position: absolute;
    right: 85px;
    background: #02142C;
    color: white;
    padding: 10px 16px;
    border-radius: 14px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all .3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    opacity: 1;
}

/* FLECHITA */
.whatsapp-tooltip::after{
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #02142C;
    opacity: 1;
}

/* MOSTRAR MENSAJE */
.whatsapp-float:hover .whatsapp-tooltip{
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ANIMACIÓN */
@keyframes pulseWhatsapp{
    0%{
        box-shadow: 0 0 0 0 rgba(0,168,132,0.6);
    }
    70%{
        box-shadow: 0 0 0 18px rgba(0,168,132,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(0,168,132,0);
    }
}

/* RESPONSIVE */
@media(max-width:768px){

    .whatsapp-float{
        width: 60px;
        height: 60px;
        bottom: 18px;
        right: 18px;
    }

    .whatsapp-float i{
        font-size: 1.7rem;
    }

    .whatsapp-tooltip{
        display: none;
    }

}

footer {
            background: #02142C;
            color: white;
            padding: 2rem 0;
            text-align: center;
        }
        
        @media (max-width: 768px) {
            .about-title {
                font-size: 2.2rem;
            }
            .stat-number {
                font-size: 2rem;
            }
            .about-story-title {
                font-size: 1.8rem;
                margin-top: 1.5rem;
            }
        }


