imagen-hover

/* Estilos generales */
body {
    font-family: Arial, sans-serif;
}

/* Estilos para el header */
#header-container {
    width: 100%;
}

.navbar {
    background: linear-gradient(135deg, #202020 0%, #272727 100%) !important;
    padding-top: 0;
    padding-bottom: 0;
    height: 160px;
    display: flex;
    align-items: center;
    border-bottom: 3px solid #e43b39;
    box-shadow: 0 4px 12px rgba(28, 52, 94, 0.5);
}

.navbar-brand {
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    max-height: 170px;
    object-fit: contain;
    padding: 10px 0;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.02);
}

.navbar-nav {
    gap: 20px;
    align-items: center;
}

.navbar-nav .nav-custom {
    font-size: 1.0rem;
    color: #faf3b4 !important;
    font-weight: 700 !important;
    padding: 12px 24px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.navbar-nav .nav-custom:hover {
    color: #fffefc !important;
    background-color: #e43b39;
    border: 2px solid #e43b39;
}

.navbar::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent);
}

@media (max-width: 768px) {
    .navbar {
        height: auto;
        padding: 10px 0;
        flex-direction: column;
        align-items: flex-start;
        background: linear-gradient(135deg, #141414 0%, #1b1b1b 100%) !important;
        /* mismo fondo que en desktop */
        border-bottom: 3px solid #e43b39;
    }

    .navbar-brand img {
        max-height: 100px;
        padding: 5px 0;
    }

    .navbar-nav {
        gap: 10px;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 15px;
        padding-right: 15px;
    }

    .navbar-nav .nav-custom {
        padding: 10px 15px;
        width: 100%;
        font-size: 1rem;
        color: #faf3b4 !important;
        /* color claro para fondo oscuro */
    }

    .navbar-nav .nav-custom:hover {
        background-color: #e43b39;
        color: #fffefc !important;
        border: 2px solid #e43b39;
    }
}

.navbar-toggler {
    border-color: #faf3b4;
    /* color del borde claro */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23faf3b4' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.hand-right {
  transform: rotate(90deg);
  display: inline-block;
  font-size: 1.5rem; 
  color: #ffc107;     
  margin-left: 5px;   
}

/* Estilos para el footer */
footer {
    background: linear-gradient(135deg,
            #141414 0%,
            #1b1b1b 50%,
            #141414 100%);
    border-top: 3px solid #e73a38;
    margin-top: 60px;
    box-shadow: 0 -5px 15px rgba(28, 52, 94, 0.5);
    position: relative;
}


.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    padding: 10px 0;
}

.footer-item {
    color: #faf3b4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}


.footer-item i {
    font-size: 1.9rem;
    background: linear-gradient(to right, #f5e618, #000000);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

}

.footer-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #f5e618, #565657);
    border-radius: 5px;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.footer-social-icons a {
    color: white;
    font-size: 1.9rem;
    transition: color 0.3s ease;
}

.footer-social-icons a:hover {
    color: #e72b27;
}

.footer-social-icons a:hover img {
    filter:
        brightness(0) saturate(100%) invert(16%) sepia(99%) saturate(4622%) hue-rotate(350deg);
}

.copyright {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #faf3b4;
}

.alinearText {
    text-align: justify;
    margin-bottom: 20px;
}

.negrita {
    font-weight: bold;
}

.tituloBlack {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #e72b27
}

.espacioTitulo {
    margin-top: 47px;
}

.center {
    text-align: center;
    margin-bottom: 70px
}

.centerHover {
    text-align: center;
    color: #e72b27
}

.efectSombra {
    text-shadow: 6px 6px 5px rgba(94, 28, 26, 0.8), 2px 2px 3px rgba(20, 20, 20, 0.6);
}

.textLlamativo {
    font-size: 1.5rem;
    font-weight: normal;
    text-align: center;
    margin: 20px 0;
    background: linear-gradient(90deg, #3f67a2, #3f67a2);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 2s ease-in-out, transform 2s ease-in-out;

}

.textLlamativo.visible {
    opacity: 1;
    transform: translateY(0);

}

.bg-light {
    background-color: #ffffff !important;
}

.imagen-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 40px;
}

.imagen-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 20px rgba(248, 83, 18, 0.5);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.decorative-line::before {
    content: "";
    display: block;
    width: 40%;
    height: 5px;
    background: linear-gradient(90deg,
            #e72b27,
            #ff6b35 30%,
            /* Naranja */
            #f7c59f 60%,
            /* Crema */
            transparent);
    border-radius: 10px 0;
    margin: 10px auto;
    filter: drop-shadow(0 2px 2px rgba(231, 43, 39, 0.4));
}

.swiper-container {
    width: 100%;
    margin: 60px auto;
    position: relative;
    overflow: hidden;
    padding-bottom: 60px;
    text-align: center;
}

.swiper-wrapper {
    display: flex;
    align-items: center;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.swiper-slide img {
    width: 12%;
    border-radius: 10px;
    margin: 0 50px;

}

.swiper-pagination {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(to right, white, #e9e8e4);
    color: #e72b27;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    border: 2px solid #e72b27;
}

.btn-contact .arrow {
    margin-left: 10px;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.btn-contact:hover {
    background: linear-gradient(to right, #e72b27, #e22d2a);
    color: white;
    border-color: white;
    transform: scale(1.05);
}

.btn-contact:hover .arrow {
    transform: translateX(5px);
}


.social-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 60px;
    position: absolute;
    left: 20px;
    z-index: 3;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #e72b27;
}

.social-icons a img {
    transition: filter 0.3s ease;
    width: 22px;
    height: 22px;
}

.social-icons a:hover img {
    filter: brightness(0) saturate(100%) invert(27%) sepia(82%) saturate(665%) hue-rotate(346deg) brightness(101%) contrast(102%);
}

@media (max-width: 768px) {
    .social-icons {
        position: static;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin: 20px 0;
        width: 100%;
    }

    .social-icons a {
        font-size: 1.3rem;
    }
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #02f75a;
    color: white;
    font-size: 24px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    text-decoration: none;
    transition: opacity 0.3s ease-in-out;
}

.whatsapp-btn i {
    font-size: 30px;
}

.whatsapp-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

.whatsapp-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(2, 247, 90, 255);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.8);
        opacity: 0.1;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 80px;
        height: 80px;
        font-size: 32px;
    }

    .whatsapp-btn i {
        font-size: 42px;
    }
}

.portada-container {
    width: 100%;
    /* Usa 100% en lugar de 100vw para evitar scroll */
    overflow: 240px;
    position: relative;
    aspect-ratio: 16/6;
    /* Relación personalizada (ajusta según necesidad) */
    max-height: 80vh;
    /* Limita el alto máximo */
}

.portadaImge {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 97%;
}

.original-img {
    width: 100%;
    height: 100%;

}

.portadaImge::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at center,
            transparent 0%,
            rgba(0, 0, 0, 0.7) 100%),
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.7) 0%,
            transparent 20%,
            transparent 80%,
            rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    pointer-events: none;

}

@media (max-width: 768px) {
    .portada-container {
        width: 100%;
        overflow: hidden;
        position: relative;
        aspect-ratio: 16/9;
        max-height: 60vh;
    }

    .portadaImge {
        width: 100%;
        height: 100%;
    }

    .original-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .portadaImge::after {
        background:
            radial-gradient(ellipse at center,
                transparent 10%,
                rgba(0, 0, 0, 0.8) 100%),
            linear-gradient(90deg,
                rgba(0, 0, 0, 0.8) 0%,
                transparent 15%,
                transparent 85%,
                rgba(0, 0, 0, 0.8) 100%);
    }
}


.about-logo {
    width: 200px;
    height: auto;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}


.logo-3d-container {
    display: block;
    width: 100%;
    perspective: 1000px;
}

.logo-3d {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
}

@media (max-width: 768px) {
    .about-logo {
        width: 250px;
        padding: 10px 0;
    }
}