.index-page.scrolled .header {
    --background-color: rgb(167 28 32 / 80%);
    }
    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: #f4e478;
      }
    .header .btn-getstarted,
    .header .btn-getstarted:focus {
      color: black;
      background: white;
    }
    .hero .btn-get-started {
      color: black;
      background: white;
    }
    .nav-link {
        color: #a41519;
    }
    .nav-pills {
        --bs-nav-pills-border-radius: var(--bs-border-radius);
        --bs-nav-pills-link-active-color: #fff;
        --bs-nav-pills-link-active-bg: #a41519;
    }
    .nav-link:focus, .nav-link:hover {
        color: #730003;
    }
    .hero .btn-get-started:hover {
      color: #a41519;
      background: #f4e478;
    }
    h2, h3, h4, h5, h6 {
        color: #a41519;
    }
    .header .btn-getstarted:hover,
    .header .btn-getstarted:focus:hover {
      color: #a41519;
      background: #f4e478;
    }
    .section-title h2::after {
        background: #ffb027;
    }
    .services .service-item:hover h4 a {
        color: #a41519;
    }
    .services .service-item h4 a {
        color: #000000;
    }
    #footer {
        background:  rgb(137 5 5 / 90%);
    }
    #footer .footer-top .footer-info {
        margin-bottom: 15px;
        background: #e5ad3e5e;
        color: #fff;
        border-top: 4px solid #ffb027;
        text-align: center;
        padding: 30px 20px;
    }
    #footer .footer-top .social-links a:hover {
      background: #890505;
    }
    #footer .copyright {
      border-top: 1px solid #ffb027;
    }
    #footer .footer-top .footer-links ul i {
      color: #ffb027;
    }
    #footer .footer-top .footer-links ul a:hover {
      color: #ffb027;
    }
    #footer .footer-top .footer-newsletter form input[type=submit] {
      background: #ffb027;
    }
    
    #footer .footer-top .footer-newsletter form input[type=submit]:hover {
      background: #ffb027;
    }
    .contact .info-item i {
      color: #a41519;
      background: color-mix(in srgb, #a41519, transparent 92%);
    }
    .contact .info-item:hover i {
      background: #a41519;
      color: white;
    }
    .contact .info-wrap {
        border-top: 3px solid #a41519;
        border-bottom: 3px solid #a41519;;
    }
    .contact .php-email-form {
        border-top: 3px solid #a41519;
        border-bottom: 3px solid #a41519;
    }
    .contact .php-email-form button[type=submit] {
      color: #fff;
      background: color-mix(in srgb, #ffb027, transparent 10%);
    }
    
    .contact .php-email-form button[type=submit]:hover {
      background: #a41519;
      color: white;
    }
    .scroll-top {
      background-color: #a41519;
    }
    .scroll-top:hover {
      background: #ffb027;
      color: #a41519;
    }
/*--------------------------------------------------------------
# Whats
--------------------------------------------------------------*/
/* Estilos para el botón de WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 4.5rem;
    height: 4.5rem;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn img {
    width: 60%;
    height: auto;
    max-width: 2.5rem;
    transition: transform 0.3s ease;
}

.close-btn {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #a41519;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
    z-index: 1001;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    animation: none;
}

.whatsapp-btn:hover img {
    transform: rotate(10deg);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Media queries para ajustes responsive */
@media (max-width: 768px) {
    .whatsapp-btn {
        width: 4rem;
        height: 4rem;
        bottom: 15px;
        left: 15px;
    }
    
    .close-btn {
        width: 1.3rem;
        height: 1.3rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-btn {
        width: 3.5rem;
        height: 3.5rem;
        bottom: 10px;
        left: 10px;
        animation: pulse-mobile 2s infinite;
    }
    
    .close-btn {
        width: 1.1rem;
        height: 1.1rem;
        font-size: 0.6rem;
        top: -0.3rem;
        right: -0.3rem;
    }
    
    @keyframes pulse-mobile {
        0% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        }
        70% {
            box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
    }
}