.btn-phone a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

footer {
    background: radial-gradient(circle at 50% 30%, #6B0101 0%, #0D0000 100%);
    color: white;
    font-family: 'Roboto', sans-serif;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.top-footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 30px 0;
    background-color: #444444;
    margin-bottom: 50px;
    border-top: 8px solid #2B0102;
    border-bottom: 2px solid #0A10CB;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.contact-item {
    text-align: center;
    max-width: 200px;
    transition: transform 0.4s ease-in-out;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* Espacio entre los elementos */
}

.contact-item:hover {
    transform: translateY(-10px) scale(1.05);
}

.contact-item img {
    width: 32px;
    height: 32px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #FFD700;
}

.contact-item p {
    margin: 5px 0 0;
    font-size: 16px;
    color: #A9C0D9;
}

address {
    font-style: normal;
    line-height: 1.6;
    color: #A9C0D9;
    font-size: 16px;
    text-align: center;
}

.bottom-footer {
    display: flex;
    justify-content: space-around;
    padding-bottom: 50px;
    position: relative;
    z-index: 2;
}

.bottom-footer h3 {
    margin-bottom: 20px;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 3px solid white;
    padding-bottom: 10px;
}

.bottom-footer p {
    max-width: 350px;
    line-height: 1.8;
    font-size: 16px;
    color: #B2C7E1;
}

.social-media {
    margin-top: 20px;
}

.social-media a {
    margin-right: 20px;
}

.social-media img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s, filter 0.3s;
}

.social-media a:hover img {
    transform: rotate(15deg) scale(1.2);
    filter: brightness(1.5);
}

.links ul,
.services ul {
    list-style: none;
    padding: 0;
}

.links ul li,
.services ul li {
    margin-bottom: 15px;
}

.links ul li a,
.services ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
    font-size: 18px;
    font-weight: 500;
}

.links ul li a:hover,
.services ul li a:hover {
    color: #FFD700;
    transform: translateX(5px);
}

/* Pulses removed as they were blue and don't match the new burgundy theme */

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }
}


/* Ocultar el menú por defecto */
.mobile-navigation {
    display: none;
}

/* Mostrar el menú en tamaños móviles */
@media (max-width: 768px) {
    .mobile-navigation {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        z-index: 9999;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .mobile-navigation.active {
        transform: translateX(0);
    }

    .nav-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .nav-inner {
        text-align: center;
    }

    .nav-list-primary {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .nav-item-primary {
        margin-bottom: 20px;
    }

    .nav-link-primary {
        color: white;
        text-decoration: none;
        font-size: 24px;
        font-weight: bold;
        transition: color 0.3s ease;
    }

    .nav-link-primary:hover {
        color: #FFD700;
    }

    .mobile-nav-items {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }

    .mobile-nav-link {
        display: block;
        margin-bottom: 10px;
        color: white;
        font-size: 18px;
        text-decoration: none;
    }

    .menu-btn {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 18px;
        cursor: pointer;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 10000;
    }

    .nav-handle {
        display: inline-block;
        margin-left: 10px;
    }

    .nav-handle-inner {
        width: 30px;
        height: 3px;
        background-color: white;
        position: relative;
    }

    .nav-handle-inner::before,
    .nav-handle-inner::after {
        content: '';
        width: 30px;
        height: 3px;
        background-color: white;
        position: absolute;
        left: 0;
        transition: transform 0.3s ease;
    }

    .nav-handle-inner::before {
        top: -10px;
    }

    .nav-handle-inner::after {
        top: 10px;
    }

    .menu-btn.active .nav-handle-inner {
        background-color: transparent;
    }

    .menu-btn.active .nav-handle-inner::before {
        transform: translateY(10px) rotate(45deg);
    }

    .menu-btn.active .nav-handle-inner::after {
        transform: translateY(-10px) rotate(-45deg);
    }
}


@media (max-width: 768px) {
    .top-footer {
        flex-direction: column;
        padding: 20px 10px;
        text-align: center;
    }

    .bottom-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 20px;
    }

    .bottom-footer h3 {
        margin-bottom: 15px;
        font-size: 20px;
    }

    .bottom-footer p {
        max-width: 100%;
        font-size: 14px;
    }

    .social-media {
        margin-top: 10px;
    }

    .social-media a {
        margin-right: 10px;
        margin-bottom: 10px;
    }

    .social-media img {
        width: 30px;
        height: 30px;
    }

    .links ul,
    .services ul {
        padding: 0;
        text-align: center;
    }

    .links ul li,
    .services ul li {
        margin-bottom: 10px;
    }

    .links ul li a,
    .services ul li a {
        font-size: 16px;
    }
}

.menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    width: 50px;
    /* Asegura que el botón tenga suficiente área para hacer clic */
    height: 50px;
    /* Asegura que el botón tenga suficiente área para hacer clic */
}

.nav-handle {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: relative;
}

.nav-handle-inner {
    width: 30px;
    height: 3px;
    background-color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: background-color 0.3s ease;
}

.nav-handle-inner::before,
.nav-handle-inner::after {
    content: '';
    width: 30px;
    height: 3px;
    background-color: white;
    position: absolute;
    transition: transform 0.3s ease;
}

.nav-handle-inner::before {
    top: -10px;
    left: 0;
}

.nav-handle-inner::after {
    top: 10px;
    left: 0;
}

.menu-btn.active .nav-handle-inner {
    background-color: transparent;
}

.menu-btn.active .nav-handle-inner::before {
    transform: translateY(10px) rotate(45deg);
}

.menu-btn.active .nav-handle-inner::after {
    transform: translateY(-10px) rotate(-45deg);
}

/* Aseguramos que el ícono sea visible en dispositivos móviles */
@media (max-width: 768px) {
    .menu-btn {
        font-size: 24px;
        color: #FFD700;
    }

    .nav-handle-inner,
    .nav-handle-inner::before,
    .nav-handle-inner::after {
        background-color: #FFD700;
        /* Ajuste para mejor visibilidad en dispositivos móviles */
    }
}


.image-width {
    height: 350px;
    width: 100%;
}


/* @media screen and (max-width: 430px) {
    .dropright{
        visibility:visible;       

    }
}

.dropright{
 visibility: hi;       
} */

/* Estilos generales */
/* Contenedor del formulario */

/* Estilos para los botones flotantes */
#WAButton {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.btn-facebook {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    position: relative;
    border-radius: 50%;
    background: #1877F2;
    /* Azul Facebook */
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
    transition: all 0.3s ease;
}

.btn-facebook:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(24, 119, 242, 0.4);
    background: #166fe5;
}

.btn-facebook img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: contain;
}

/* Unificación y alineación de botones flotantes */
#WAButton {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    z-index: 9999;
}

.btn-whatsapp,
.btn-facebook,
.btn-tiktok,
.btn-instagram,
.btn-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    max-width: 56px;
    max-height: 56px;
    position: relative;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    background: #fff;
    margin: 0;
    padding: 0;
}

.btn-whatsapp {
    background: #25D366;
}

.btn-facebook {
    background: #1877f2;
}

.btn-tiktok {
    background: #000000;
}

.btn-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.btn-phone {
    background: #25D366;
}

.btn-whatsapp {
    background: #25D366;
}

.btn-facebook {
    background: #1877f2;
}

.btn-tiktok {
    background: #000000;
}

.btn-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.btn-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
    background: #1da851;
}

/* Unificación de tamaño de íconos internos */
.btn-whatsapp img,
.btn-facebook img,
.btn-tiktok svg,
.btn-instagram svg,
.btn-phone img {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
    display: block;
    margin: 0 auto !important;
    border-radius: 50%;
    object-fit: contain;
    box-sizing: border-box;
}

/* Efecto de pulso para llamar la atención */
@keyframes pulse-facebook {
    0% {
        box-shadow: 0 0 0 0 rgba(24, 119, 242, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(24, 119, 242, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(24, 119, 242, 0);
    }
}

@keyframes pulse-whatsapp {
    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);
    }
}

.btn-facebook {
    animation: pulse-facebook 2s infinite;
}

.btn-whatsapp {
    animation: pulse-whatsapp 2s infinite 1s;
}

/* Estilos para móviles */
@media (max-width: 768px) {
    #WAButton {
        right: 10px;
        bottom: 10px;
        gap: 10px;
    }

    .btn-facebook,
    .btn-whatsapp,
    .btn-tiktok,
    .btn-instagram,
    .btn-phone {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
        max-width: 48px;
        max-height: 48px;
    }

    .btn-facebook img,
    .btn-whatsapp img,
    .btn-tiktok svg,
    .btn-instagram svg,
    .btn-phone img {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        min-height: 28px !important;
        max-width: 28px !important;
        max-height: 28px !important;
    }
}

@media (max-width: 480px) {
    #WAButton {
        right: 6px;
        bottom: 6px;
        gap: 8px;
    }

    .btn-facebook,
    .btn-whatsapp,
    .btn-tiktok,
    .btn-instagram,
    .btn-phone {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        max-width: 40px;
        max-height: 40px;
    }

    .btn-facebook img,
    .btn-whatsapp img,
    .btn-tiktok svg,
    .btn-instagram svg,
    .btn-phone img {
        width: 22px !important;
        height: 22px !important;
        min-width: 22px !important;
        min-height: 22px !important;
        max-width: 22px !important;
        max-height: 22px !important;
    }
}

.btn-tiktok {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    position: relative;
    border-radius: 50%;
    background: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-tiktok:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.btn-tiktok svg {
    width: 35px;
    height: 35px;
    color: white;
}

.btn-instagram {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    position: relative;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 4px 12px rgba(214, 36, 159, 0.3);
    transition: all 0.3s ease;
}

.btn-instagram:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(214, 36, 159, 0.4);
}

.btn-instagram svg {
    width: 35px;
    height: 35px;
    color: white;
}

@keyframes pulse-tiktok {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

@keyframes pulse-instagram {
    0% {
        box-shadow: 0 0 0 0 rgba(214, 36, 159, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(214, 36, 159, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(214, 36, 159, 0);
    }
}

.btn-tiktok {
    animation: pulse-tiktok 2s infinite 1.5s;
}

.btn-instagram {
    animation: pulse-instagram 2s infinite 0.5s;
}

/* Tooltip para mostrar al pasar el mouse */
.btn-facebook::after,
.btn-whatsapp::after,
.btn-tiktok::after,
.btn-instagram::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
}

.btn-facebook::after {
    content: "Visítanos en Facebook";
}

.btn-whatsapp::after {
    content: "Escríbenos por WhatsApp";
}

.btn-tiktok::after {
    content: "Visítanos en TikTok";
}

.btn-instagram::after {
    content: "Visítanos en Instagram";
}

.btn-facebook:hover::after,
.btn-whatsapp:hover::after,
.btn-tiktok:hover::after,
.btn-instagram:hover::after {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

.btn-phone {
    display: none;
    width: 70px;
    height: 70px;
    color: #fff;
    position: fixed;
    right: 87%;
    bottom: 10px;
    border-radius: 50%;
    line-height: 80px;
    text-align: center;
    z-index: 999;
}

@media screen and (max-width: 430px) {
    .btn-phone {
        display: block;
    }


}


/* RATING - Form */
.well {
    background-color: #f7f8f7
}

.rating-form {
    margin-top: 40px;
}

/* RATING - Form - Group */
.rating-form .form-group {
    position: relative;
    border: 0;
}

/* RATING - Form - Legend */
.rating-form .form-legend {
    display: none;
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-size: 2rem;
}

/* RATING - Form - Item */
.rating-form .form-item {
    position: relative;
    margin: auto;
    text-align: center;
    direction: rtl;
}

.rating-form .form-legend+.form-item {
    padding-top: 10px;
}

.rating-form input[type='radio'] {
    position: absolute;
    left: -9999px;
}

/* RATING - Form - Label */
.rating-form label {
    display: inline-block;
    cursor: pointer;
}

.rating-form .rating-star {
    display: inline-block;
    position: relative;
}

.rating-form input[type='radio']+label:before {
    content: attr(data-value);
    position: absolute;
    right: 30px;
    top: 83px;
    font-size: 30px;
    font-size: 2.8rem;
    opacity: 0;
    direction: ltr;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: none;
}

.rating-form input[type='radio']:checked+label:before {
    right: 25px;
    opacity: 1;
}

.rating-form input[type='radio']+label:after {
    content: "/ 5";
    position: absolute;
    right: 5px;
    top: 96px;
    font-size: 16px;
    font-size: 1.6rem;
    opacity: 0;
    direction: ltr;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: none;
}

.rating-form input[type='radio']:checked+label:after {
    opacity: 1;
}

.rating-form label .fa {
    font-size: 2.8rem;
    line-height: 60px;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.rating-form label:hover .fa-star-o,
.rating-form label:focus .fa-star-o,
.rating-form label:hover~label .fa-star-o,
.rating-form label:focus~label .fa-star-o,
.rating-form input[type='radio']:checked~label .fa-star-o {
    opacity: 0;
}

.rating-form label .fa-star {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.rating-form label:hover .fa-star,
.rating-form label:focus .fa-star,
.rating-form label:hover~label .fa-star,
.rating-form label:focus~label .fa-star,
.rating-form input[type='radio']:checked~label .fa-star {
    opacity: 1;
}

.rating-form input[type='radio']:checked~label .fa-star {
    color: gold;
}

.rating-form .ir {
    position: absolute;
    left: -9999px;
}

/* RATING - Form - Action */
.rating-form .form-action {
    opacity: 0;
    position: absolute;
    left: 5px;
    bottom: -40px;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.rating-form input[type='radio']:checked~.form-action {
    cursor: pointer;
    opacity: 1;
}

.rating-form .btn-reset {
    display: inline-block;
    margin: 0;
    padding: 4px 10px;
    border: 0;
    font-size: 10px;
    font-size: 1.2rem;
    background: #fff;
    color: #333;
    cursor: auto;
    border-radius: 5px;
    outline: 0;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.rating-form .btn-reset:hover,
.rating-form .btn-reset:focus {
    background: gold;
}

.rating-form input[type='radio']:checked~.form-action .btn-reset {
    cursor: pointer;
}

/* RATING - Form - Output */
.rating-form .form-output {
    display: none;
    position: absolute;
    right: 30px;
    bottom: -45px;
    font-size: 15px;
    font-size: 2.8rem;
    opacity: 0;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.no-js .rating-form .form-output {
    right: 5px;
    opacity: 1;
}

.rating-form input[type='radio']:checked~.form-output {
    right: 5px;
    opacity: 1;
}