@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif !important;
    background: linear-gradient(#181818, #020202, #222222) !important;
}

.bg-navbar-maker {
    color: #ffffff;
    background: rgba(196, 11, 11, 0);
}

.logo-maker-header {
    width: 210px;
    padding-left: 32px;
}

/* estado inicial (oculto) */
.reveal-right {
    opacity: 0;
    transform: translateX(80px) rotate(16deg);
    transition: all 0.7s cubic-bezier(0.32, 1, 0.36, 1);
}

/* estado visible */
.reveal-right.active {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
}

::-webkit-scrollbar {
    width: 12px;
    /* Ancho de la barra de desplazamiento */
}

/* Fondo de la barra de desplazamiento */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Color de fondo */
    border-radius: 10px;
    /* Bordes redondeados */
}

/* Handle de la barra de desplazamiento */
::-webkit-scrollbar-thumb {
    background: #3d9733;
    /* Color del handle */
    border-radius: 0px;
    transition: all ease-in-out 320ms;
    /* Bordes redondeados */
}

/* Handle al pasar el mouse */
::-webkit-scrollbar-thumb:hover {
    background: #555;
    /* Color del handle al pasar el mouse */
}

.navbar-nav .nav-item .nav-link {
    font-weight: 700;
    position: relative;
    font-size: 18px;
    color: #8f8f8f;
    margin: 12px;
    transition: color 0.3s ease;
}

/* línea */
.navbar-nav .nav-item .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: 0%;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

/* hover */
.navbar-nav .nav-item .nav-link:hover {
    color: #ffffff;
    text-shadow: 0 0 28px rgba(255, 255, 255, 0.801);
}

.navbar-nav .nav-item .nav-link:hover::after {
    width: 100%;
}

/* Estado inicial (transparente) */
.navbar-custom {
    background-color: transparent;
    transition: all 0.4s ease;
}

/* Estado con scroll */
.navbar-scrolled {
    background-color: rgba(18, 18, 18, 0.774);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

#truckButton {
    position: fixed;
    bottom: 4px;
    right: 10px;
    width: 210px;
    height: 120px;
    cursor: pointer;
    z-index: 99;
}

/* Imagen del camión */
#truckButton img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

/* ===== CONTENEDOR LOTTIE (opcional) ===== */
#lottieTruck {
    width: 100%;
    height: 100%;
}

/* ===== ANIMACIÓN PRINCIPAL ===== */
.mover {
    animation: moverCamion 8s linear forwards;
}

/* Movimiento del camión */
@keyframes moverCamion {

    0% {
        right: 20px;
    }

    63% {
        right: 64%;
    }

    68% {
        right: 70%;
    }

    72% {
        right: 72%;
    }

    76% {
        right: 72%;
    }

    88% {
        right: 77%;
    }

    92% {
        right: 84%;
    }

    100% {
        right: 106%;
    }

}

/* ===== EFECTO ESTELA (velocidad) ===== */
#truckButton::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    width: 80px;
    height: 20px;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.25), transparent);
    filter: blur(5px);
    opacity: 0;
    transform: translateY(-50%);
}

/* Activar estela */
.mover::after {
    opacity: 1;
    animation: estela 0.3s infinite;
}

@keyframes estela {
    0% {
        transform: translateY(-50%) scaleX(1);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-50%) scaleX(1.6);
        opacity: 0.2;
    }

    100% {
        transform: translateY(-50%) scaleX(1);
        opacity: 0.5;
    }
}

/* ===== HUMO (opcional más pro) ===== */
.humo {
    position: absolute;
    bottom: 72px;
    left: 128px;
    width: 15px;
    height: 15px;
    background: rgba(224, 224, 224, 0.342);
    border-radius: 50%;
    opacity: 0;
    z-index: 1;
}

/* Activar humo */
.mover .humo {
    animation: humoAnim 0.6s infinite;
}

@keyframes humoAnim {
    0% {
        transform: translateX(0) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translateX(-40px) scale(2);
        opacity: 0;
    }
}

/* ===== ESTADO FINAL (rebote CTA) ===== */
.final {
    animation: bounce 1s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ===== MENSAJE TIPO BURBUJA ===== */
#mensajeTruck {
    position: fixed;
    bottom: 130px;
    right: 4px;
    background: #f1f1f1;
    color: #000000;
    padding: 10px 15px;
    border-radius: 32px;
    font-size: 18px;
    opacity: 0;
    box-shadow: 0 4px 24px rgba(0, 124, 7, 0.76);
    transform: translateY(20px);
    transition: all ease-in-out 320ms;
    z-index: 98;
}

/* Mostrar mensaje */
#mensajeTruck.show {
    opacity: 1;
    transform: translateY(0);
    transition: all ease-in-out 320ms;
}


.carousel-item img {
    height: 84.85vh;
}

.banner-product {
    background-image: url(img/Recurso\ 37.png) center/cover no-repeat;
    /* background-size: 100% 100%; */
    padding: 80px 0;
    overflow: hidden;
}

/* Estado inicial */
.title-anim,
.product-anim {
    font-size: 48px;
    opacity: 0;
    transform: translate3d(80px, 0, 0);
}

.text-anim {
    font-size: 26px;
    opacity: 0;
    transform: translate3d(-80px, 0, 0);
}

.btn-anim {
    opacity: 0;
    transform: translate3d(0, -40px, 0);
}

/* Activación */
.active-anim .title-anim,
.active-anim .product-anim {
    animation: slideRight 0.8s ease forwards;
}

.active-anim .text-anim {
    animation: slideLeft 0.8s ease forwards;
}

.active-anim .btn-anim {
    animation: slideUp 0.8s ease forwards;
}

/* Keyframes */
@keyframes slideRight {
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideLeft {
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.btn-maker-white {
    color: #ffffff;
    text-decoration: none;
    border: solid 1.5px white !important;
    border-radius: 0px !important;
    padding: 12px;
    font-size: 20px;
    font-weight: 300;
    background: linear-gradient(to right, #3d973300, #497d4500, #1d5d1800);
    transition: all ease-in-out 320ms;
}

.btn-maker-white:hover {
    background: #1d5d18;
    color: #fafafa;
    border: solid #1d5d18 1.5px !important;
}

.product-card {
    background: linear-gradient(180deg, #1a1a1a, #0d0d0d);
    border-radius: 25px;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;

    /* sombra base */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* 🔥 BORDE ILUMINADO (el truco real) */
.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 25px;
    padding: 1px;
    /* grosor del borde */

    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.25),
            rgba(0, 255, 100, 0.3),
            rgba(255, 255, 255, 0.05));

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.product-card:hover {

    box-shadow: 0px -4px 42px rgba(0, 129, 18, 0.521);
}

/* ✨ REFLEJO SUPERIOR (glass effect) */
.product-card::after {
    content: "";
    position: absolute;
    top: -40%;
    left: -20%;
    width: 140%;
    height: 100%;

    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.15),
            transparent 60%);

    transform: rotate(15deg);
    pointer-events: none;
}



/* 💡 GLOW INFERIOR REAL */
.product-card .glow-bottom {
    content: "";
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 150px;

    background: radial-gradient(circle,
            rgba(0, 255, 100, 0.5) 0%,
            rgba(0, 255, 100, 0.2) 40%,
            transparent 70%);

    filter: blur(40px);
    z-index: -1;
}

/* Badge */
.badge-mayorista {
    display: inline-block;
    background: #00c853;
    color: #fff;
    padding: 6px 18px;
    border-radius: 10px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Imagen */
.product-img {
    max-height: 180px;
    object-fit: contain;
    filter: drop-shadow(0px 25px 50px rgba(0, 0, 0, 0.8));
}

/* Título */
.title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Specs */
.specs {
    color: #ccc;
    font-size: 20px;
    margin-top: 5px;
}

/* Precio */
.price {
    font-weight: 900;
    font-size: 2rem;
    margin-top: 15px;

    background: linear-gradient(45deg, #ffffff, #efefef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* opcional para compatibilidad futura */
    background-clip: text;
    color: transparent;
}

.price span {
    font-size: 20px;
    color: #aaa;
}

/* Botón */
.btn-epa {
    font-size: 18px !important;
    background: linear-gradient(to right, #ffffff, #cfcfcf);
    border: none;
    padding: 12px;
    border-radius: 22px !important;
    font-weight: 600;
    color: #000000 !important;
    width: 85%;
    transition: all ease-in 320ms;
}

.btn-epa:hover {
    box-shadow: 2px 2px 20px rgba(0, 148, 62, 0.884);
}

.units-badge {
    position: absolute;
    top: 10px;
    left: 10px;

    width: 80px;
    height: 80px;

    border-radius: 50%;
    color: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    box-shadow: 8px 8px 18px rgba(2, 2, 2, 0.959);

}

.units-badge .number {
    font-size: 22px;
    font-weight: 700;
}

.units-badge .text {
    font-size: 12px;
    opacity: 0.8;
}

.testimonios-section {
    background: transparent;
    position: relative;
}

/* ICONO SUPERIOR */
.icon-top i {
    font-size: 28px;
    color: #3d9733;
}

/* TITULO */
.section-title {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
}

.section-sub {
    color: #777;
}

/* CARD BASE */
.testimonio-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    border: 1px solid rgba(61, 151, 51, 0.2);
    transition: 0.4s;
}

/* CARD CENTRO DESTACADA */
.swiper-slide-active .testimonio-card {
    border: 1px solid #3d9733;
    box-shadow: 0 0 25px rgba(61, 151, 51, 0.4);
    transform: scale(1.05);
}

/* HOVER */
.testimonio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(61, 151, 51, 0.3);
}

/* ESTRELLAS */
.stars {
    color: #3d9733;
    margin-bottom: 15px;
}

/* TEXTO */
.texto {
    color: #ddd;
    font-style: italic;
    margin-bottom: 25px;
}

/* CLIENTE */
.cliente {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #3d9733;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3d9733;
}

.cliente strong {
    color: #fff;
}

.cliente span {
    color: #777;
    font-size: 14px;
}

/* SWIPER */
.testimoniosSwiper {
    padding-bottom: 50px;
}

/* FLECHAS */
.swiper-button-next,
.swiper-button-prev {
    color: #3d9733;
    border: 1px solid rgba(61, 151, 51, 0.4);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(61, 151, 51, 0.2);
}

/* PAGINACIÓN */
.swiper-pagination-bullet {
    background: #555;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #3d9733;
}

.footer-custom {
    background: #ffffff;
    color: #000;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

.swiper-button-next,
.swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.1);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s;
}

/* Ícono flecha */
.swiper-button-next::before,
.swiper-button-prev::before {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid #00e676;
    border-right: 2px solid #00e676;
    transform: rotate(45deg);
}

/* Flecha izquierda */
.swiper-button-prev::before {
    transform: rotate(-135deg);
}

/* Hover */
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 200, 83, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 100, 0.4);
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #555;
    opacity: 1;
    transition: 0.3s;
}

.swiper-pagination-bullet-active {
    background: #ffffff !important;
    width: 25px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(226, 226, 226, 0.6);
}

/* Títulos grandes */

.swiper:hover .swiper-button-next,
.swiper:hover .swiper-button-prev {
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    opacity: 0.6;
}

.swiper-pagination {
    bottom: -5px !important;
}

.swiper-brands {
    padding: 40px 0;
    width: 100%;
}

.brand-logo {
    filter: grayscale(100%);
    /* Opcional: logos en gris */
    transition: filter 0.3s;
    max-height: 120px;
    /* Ajusta según tu diseño */
    object-fit: contain;
}

.brand-logo:hover {
    filter: grayscale(0%);
    /* Color al pasar el mouse */
}

.stats-section {
    background: #efefef;
    border-radius: 20px;
    box-shadow: 0px 0px 44px rgba(247, 247, 247, 0.562);
}

.stats-title {
    font-weight: 700;
    background: linear-gradient(to right, #3d9733, #497d45, #1d5d18);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card .icon {
    font-size: 60px;
    margin-bottom: 10px;
}

.stat-card h3 {
    font-size: 2.8rem;
    font-weight: 900;
    margin: 10px 0;
    background: linear-gradient(to right, #3d9733, #497d45, #1d5d18);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card p {
    color: #555;
}

/* Animación inicial */
.stat-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 104, 23, 0.363);
}

.stat-card::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    margin: 10px auto 0;

    background: linear-gradient(to right, #3d9733, #497d45, #1d5d18);
    border-radius: 10px;
}

/* Activación */
.stats-section.active .stat-card {
    animation: fadeUp 0.8s ease forwards;
}

.stats-section.active .stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stats-section.active .stat-card:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CONTENEDOR */
.tabs-wrapper {
    display: flex;
    justify-content: center;
}

/* BASE */
.tabs-container {
    max-width: 70%;
    position: relative;
    display: inline-flex;
    background: #3a3a3a8f;
    border-radius: 50px;
    padding: 6px;
    gap: 5px;
}

/* BOTONES */
.tab-btn {
    position: relative;
    z-index: 2;
    border: none;
    background: transparent;
    color: #aaa;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 500;
    transition: 0.3s;
    white-space: nowrap;
}

/* ACTIVO */
.tab-btn.active {
    color: #fff;
    font-weight: 600;
}

/* HOVER */
.tab-btn:hover {
    color: #fff;
}

/* INDICADOR */
.tab-indicator {
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    border-radius: 50px;
    background: linear-gradient(to right, #3d9733, #497d45, #1d5d18);
    transition: all 0.35s ease;
    z-index: 1;
}

/* SWIPER ANIMACIÓN */
.swiper-wrapper {
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.distribuidor-section {
    background: linear-gradient(to bottom, #ffffff, #f5f7f6);
}

/* TEXTO */
.titulo {
    font-size: 38px;
    font-weight: 700;
    color: #111;
}

.sub {
    color: #555;
    margin: 15px 0 25px;
}

/* BENEFICIOS */
.beneficios {
    list-style: none;
    padding: 0;
}

.beneficios li {
    margin-bottom: 10px;
    font-weight: 500;
    color: #222;
}

/* CARD */
.form-card {
    background: #fff;
    border-radius: 26px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* MAPA */
.mapa iframe {
    border-radius: 16px;
}

input {
    border-radius: 32px !important;
    box-shadow: 0 2px 16px rgba(80, 80, 80, 0.219);
}

/* INFO */
.info-empresa {
    margin: 15px 0;
}

.info-empresa h5 {
    margin: 0;
    font-weight: 600;
}

.info-empresa p {
    margin: 0;
    color: #666;
}

/* INPUTS */
.form-control {
    border-radius: 12px;
    padding: 12px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: #3d9733;
    box-shadow: 0 0 0 0.2rem rgba(61, 151, 51, 0.2);
}

/* BOTÓN */
.btn-distribuidor {
    background: linear-gradient(to right, #3d9733, #497d45, #1d5d18);
    color: #fff !important;
    border-radius: 32px !important;
    padding: 12px;
    font-weight: 600;
    border: none;
    transition: all ease-in-out 0.3s;
}

.btn-distribuidor:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(61, 151, 51, 0.4);
}

/* CONTENEDOR */
.video-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(61, 151, 51, 0.4);
    box-shadow: 0 0 32px 12px rgba(11, 105, 0, 0.685);
}

/* VIDEO */
.video-element {
    width: 100%;
    display: block;
}

/* OVERLAY */
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.4s;
}

/* BOTÓN PLAY */
.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #3d9733;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* ICONO */
.play-btn i {
    color: #3d9733;
    font-size: 35px;
    margin-left: 5px;
}

/* 🔥 GLOW ANIMADO */
.play-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(61, 151, 51, 0.4);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    70% {
        transform: scale(1.6);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* HOVER */
.video-overlay:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* CUANDO SE REPRODUCE */
.video-box.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

/* 🔥 STATS HOVER */
.stat-item {
    transition: 0.3s;
    flex: 1;
    text-align: center;
    color: #fff;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item:hover i {
    color: #6cff5a;
    text-shadow: 0 0 10px rgba(61, 151, 51, 0.7);
}

/* 🔥 STATS ESTILO PRO */
.stats-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0c0c0c;
    border-radius: 20px;
    padding: 30px 20px;
    border: 1px solid rgba(61, 151, 51, 0.2);
}

.stat-item i {
    font-size: 35px;
    color: #3d9733;
    margin-bottom: 10px;
}

.stat-item h5 {
    margin: 10px 0 5px;
}

.stat-item p {
    color: #b6b6b6;
    font-size: 14px;
}

/* DIVISORES */
.divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}

/* Títulos pequeños */
.footer-title-sm {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    background: linear-gradient(to right, #3d9733, #497d45, #1d5d18);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-title {
    font-weight: 700;
    background: linear-gradient(to right, #3d9733, #497d45, #1d5d18);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Links */
.footer-custom a {
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}

.footer-custom a:hover {
    color: #3d9733;
    padding-left: 5px;
}

/* Botón */
.btn-submit {
    background: linear-gradient(to right, #3d9733, #497d45, #1d5d18);
    color: #fff;
    border: none;
}

.btn-submit:hover {
    opacity: 0.9;
}

/* Input */
.form-control {
    border: 1px solid #ddd;
}

/* Contenedor */
.social-links li {
    margin-bottom: 10px;
}

/* Item base */
.social-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Icono */
.social-item i {
    font-size: 20px;
    transition: all 0.3s ease;
}

/* Hover general */
.social-item:hover {
    transform: translateX(8px);
}

/* 🔥 EFECTOS POR RED */

/* Instagram */
.social-item.instagram:hover {
    color: #E1306C;
    text-shadow: 0 0 10px rgba(225, 48, 108, 0.6);
}

/* Facebook */
.social-item.facebook:hover {
    color: #1877F2;
    text-shadow: 0 0 10px rgba(24, 119, 242, 0.6);
}

/* TikTok */
.social-item.tiktok:hover {
    color: #000;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* YouTube */
.social-item.youtube:hover {
    color: #FF0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}