:root {
    --primary-red: #C82333;
    --dark-black: #1a1a1a;
    --light-gray: #f8f9fa;
    --text-dark: #333333;
    --overlay-dark: rgba(0, 0, 0, 0.7);
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    background-color: white;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Montserrat', sans-serif;
}

/* Barra progreso scroll */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg,
            var(--primary-red),
            #ff4757,
            var(--primary-red));
    width: 0;
    z-index: 10000;
    transition: width 0.1s ease;
    box-shadow: 0 2px 10px rgba(200, 35, 51, 0.5);
}

/* Navbar */
.navbar {
    background-color: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(10px) saturate(180%);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--primary-red) !important;
    letter-spacing: -0.5px;
}

.navbar-brand img {
    border-radius: 15px;
    height: 3.5rem;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

/* Hero section */
.hero {
    position: relative;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("../img/camion-bomba-bombetec.webp");
    color: white;
    overflow: hidden;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    /* Overlay oscuro con 60% de opacidad */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
    padding: 40px;
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow:
            1px 1px 4px rgba(0, 0, 0, 0.8),
            0 0 15px rgba(0, 0, 0, 0.5);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2.5rem;
    z-index: 3;
    animation: bounce 2s infinite;
    opacity: 0.8;
    transition: opacity 0.3s, color 0.3s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-7px);
    }
}

.btn-hero {
    background-color: white;
    color: var(--primary-red);
    padding: 15px 40px;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Secciones */
section {
    padding: 100px 0;
    position: relative;
}

section:nth-child(even) {
    background-color: var(--light-gray);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-black);
    position: relative;
    display: inline-block;
}

@media (max-width: 576px) {
    #faq .section-title {
        width: min-content;
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), transparent);
    animation: lineGrow 1.5s ease-out;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    font-weight: 300;
}

/* Sobre nosotros */
.about-image {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(200, 35, 51, 0.3), transparent);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: left 0.8s;
    z-index: 2;
}

.about-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

.about-text {
    padding: 40px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-red);
    display: block;
    position: relative;
    text-shadow: 0 0 20px rgba(200, 35, 51, 0.3);

    /* Nuevas propiedades para la animación */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out; /* Transición suave */
}

/* Estado activo: Se activa cuando el JS agrega la clase 'counted' al contenedor padre (.stats) */
.stats.counted .stat-number {
    opacity: 1;
    transform: translateY(0);
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Galería de trabajos - Carrusel */
.carousel-custom {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.carousel-custom .carousel-inner {
    border-radius: 20px;
}

.carousel-custom .carousel-item {
    height: 600px;
    position: relative;
}

.carousel-custom .carousel-item img,
.carousel-custom .carousel-item video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: transform 8s ease-out;
}

.carousel-custom .carousel-item.active img {
    transform: scale(1.08);
}

.carousel-custom .carousel-caption {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 20px;
    text-align: center;
}

.carousel-custom .carousel-caption h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-custom .carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.carousel-custom .carousel-control-prev,
.carousel-custom .carousel-control-next {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), #8B1825);
    border-radius: 50%;
    opacity: 0.9;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.carousel-custom .carousel-control-prev {
    left: 20px;
}

.carousel-custom .carousel-control-next {
    right: 20px;
}

.carousel-custom .carousel-control-prev-icon,
.carousel-custom .carousel-control-next-icon {
    width: 25px;
    height: 25px;
}

/* Indicadores del carrusel */
.carousel-custom .carousel-indicators {
    margin-bottom: 20px;
}

.carousel-custom .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: transparent;
    margin: 0 5px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.carousel-custom .carousel-indicators button.active {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    transform: scale(1.3);
}

/* Cards de servicios */
.service-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 35, 51, 0.1) !important;
    box-shadow:
        0 20px 60px rgba(200, 35, 51, 0.12),
        0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

.service-card .card-img-top {
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card .card-body {
    padding: 30px;
}

.service-card .card-title {
    color: var(--dark-black);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card .card-text {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), #8B1825);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(200, 35, 51, 0.3);
}

/* FaQ */
.accordion-item {
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden; /* Necesario para que el border-radius funcione */
    background: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03); /* Borde muy sutil */
}

.accordion-button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-black);
    background-color: white;
    padding: 25px 30px;
    box-shadow: none !important; /* Elimina el anillo azul por defecto */
    transition: all 0.3s ease;
}

/* Estado cuando está abierto (Desplegado) */
.accordion-button:not(.collapsed) {
    color: var(--primary-red);
    background-color: rgba(200, 35, 51, 0.04); /* Fondo rojo muy claro */
    box-shadow: none;
}

.accordion-body {
    padding: 10px 30px 30px 30px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    background-color: white;
    border-top: 1px solid rgba(0,0,0,0.03);
}

/* Personalización de la flecha (Chevron) */
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease, background-image 0.3s ease;
    transform: scale(1.2); /* Flecha un poco más grande */
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C82333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg) scale(1.2);
}

/* Formulario */
.contact-form {
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 35, 51, 0.08);
}

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-red);
    box-shadow:
        0 0 0 0.25rem rgba(200, 35, 51, 0.15),
        0 5px 20px rgba(200, 35, 51, 0.2);
    transform: translateY(-2px);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-red), #8B1825);
    color: white;
    padding: 15px 50px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(200, 35, 51, 0.3);
}

.contact-info {
    padding: 40px;
}

.contact-item {
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), #8B1825);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-text strong {
    display: block;
    color: var(--dark-black);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-text span {
    color: #666;
}

.contact-text p {
    color: var(--primary-red);
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-black), #2a2a2a);
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 0 30px;
}

/* Estilos para los modales */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: linear-gradient(135deg, var(--light-gray), #ffffff);
    border-bottom: 2px solid #e0e0e0;
    border-radius: 20px 20px 0 0;
    padding: 25px 30px;
}

.modal-title {
    color: var(--dark-black);
    font-weight: 700;
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.modal-title i {
    font-size: 1.8rem;
    vertical-align: middle;
}

.modal-body {
    padding: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.modal-body p {
    margin-bottom: 15px;
}

.modal-a {
    text-decoration: none;
    color: var(--primary-red);
}

.modal-footer {
    border-top: 2px solid #e0e0e0;
    padding: 20px 30px;
    border-radius: 0 0 20px 20px;
}

.btn-modal-close {
    background: linear-gradient(135deg, var(--primary-red), #8B1825);
    color: white;
    padding: 12px 35px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(200, 35, 51, 0.3);
}

/* ESTILOS DEL CHATBOT */
.chat-widget {
    position: fixed;
    bottom: 90px; /* Encima del WhatsApp */
    right: 20px;
    z-index: 9999;
}

.chat-toggle-btn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), #8B1825);
    color: white;
    border: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 450px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.chat-box.active {
    transform: scale(1);
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-red), #8B1825);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-bot-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid white;
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message {
    padding: 10px 15px;
    border-radius: 15px;
    max-width: 80%;
    font-size: 0.95rem;
    line-height: 1.4;
}

.bot-message {
    background-color: white;
    color: var(--text-dark);
    border-bottom-left-radius: 5px;
    border: 1px solid #e0e0e0;
    align-self: flex-start;
}

.user-message {
    background-color: var(--primary-red);
    color: white;
    border-bottom-right-radius: 5px;
    align-self: flex-end;
}

.bot-message ul {
    margin: 5px 0 0 20px;
    padding: 0;
}

.chat-input-area {
    padding: 15px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
    background: white;
}

.chat-input-area input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 15px;
    outline: none;
    transition: border-color 0.2s;
}

.chat-input-area input:focus {
    border-color: var(--primary-red);
}

.chat-input-area button {
    background: var(--primary-red);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive del chat */
@media (max-width: 480px) {
    .chat-box {
        width: 300px;
        right: -10px; /* Ajuste para que no se salga en móviles muy pequeños */
    }
}

/* Botón WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    /* Verde WhatsApp */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
    /* Encima de todo */
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Animación línea de título de sección */
@keyframes lineGrow {
    0% {
        width: 0;
        opacity: 0;
    }

    100% {
        width: 80px;
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-content {
        background: none;
        backdrop-filter: none;
        border: none;
    }

    .btn-hero:active {
        transform: scale(0.95);
    }

    .section-title {
        font-size: 2rem;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }

    .service-card:active {
        transform: scale(0.98);
    }

    .service-card .card-img-top {
        height: 250px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .carousel-custom .carousel-item {
        height: 400px;
    }

    .carousel-custom .carousel-caption h5 {
        font-size: 1.5rem;
    }

    .carousel-custom .carousel-caption p {
        font-size: 1rem;
    }

    .carousel-custom .carousel-control-prev,
    .carousel-custom .carousel-control-next {
        width: 45px;
        height: 45px;
    }

    .carousel-custom .carousel-control-prev {
        left: 10px;
    }

    .carousel-custom .carousel-control-next {
        right: 10px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .contact-info {
        padding: 0;
    }

    .contact-text span {
        word-break: auto-phrase;
    }

    .chat-widget {
        bottom: 65px; /* Encima del WhatsApp */
        right: 15px;
    }

    .chat-toggle-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 80px;
        right: 15px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 15px;
        right: 15px;
    }
}

/* Para móvil en horizontal */
@media (max-height: 600px) {
    .chat-box {
        position: fixed;
        bottom: 10px;
        right: 100px;
        width: 300px;
        height: 85vh;
        max-height: 400px;
        transform-origin: bottom right;
        z-index: 10001;
    }

    /* Más compacto */
    .chat-messages {
        flex: 1;
        padding: 10px;
    }
    .chat-header {
        padding: 8px 15px;
    }
    .chat-input-area {
        padding: 8px;
    }
}

@media (hover: hover) {

    /* Navbar */
    .nav-link:hover::after {
        width: 100%;
    }

    .nav-link:hover {
        color: var(--primary-red);
    }

    /* Hero */
    .btn-hero:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        background-color: var(--dark-black);
        color: white;
    }

    .btn-hero:hover::before {
        left: 150%;
    }

    .scroll-down:hover {
        color: var(--primary-red);
        opacity: 1;
    }

    /* Sobre nosotros */
    .about-image:hover img {
        transform: scale(1.05);
    }

    .about-image:hover::before {
        left: 100%;
    }

    .stat-item:hover .stat-number {
        transform: scale(1.15);
        text-shadow: 0 0 30px rgba(200, 35, 51, 0.6);
    }

    /* Carrusel trabajos */
    .carousel-custom .carousel-control-prev:hover,
    .carousel-custom .carousel-control-next:hover {
        opacity: 1;
        transform: translateY(-50%) scale(1.1);
    }

    .carousel-custom .carousel-indicators button:hover {
        transform: scale(1.5) !important;
        background-color: rgba(200, 35, 51, 0.5) !important;
    }

    /* Servicios */
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow:
            0 30px 80px rgba(200, 35, 51, 0.2),
            0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .service-card:hover .card-img-top {
        transform: scale(1.1);
    }

    /* FaQ */
    .accordion-item:hover {
        box-shadow: 0 10px 30px rgba(200, 35, 51, 0.1);
        transform: translateY(-3px);
    }

    /* Formulario */
    .btn-submit:hover {
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(200, 35, 51, 0.4);
    }

    .contact-item:hover {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        transform: translateX(15px) scale(1.02);
        background: linear-gradient(135deg,
                white 0%,
                rgba(200, 35, 51, 0.05) 100%);
    }

    /* Modales */
    .btn-modal-close:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(200, 35, 51, 0.4);
        color: white;
    }

    /* ChatBot */
    .chat-toggle-btn:hover {
        transform: scale(1.1);
    }

    .chat-input-area button:hover {
        background: #a31c2a;
    }

    /* Botón WhatsApp */
    .whatsapp-btn:hover {
        background: #128C7E;
        /* Verde más oscuro en hover */
        transform: scale(1.1);
    }
}