/* Estilos generales del footer */
.footer-section {
    background: #000000;
    position: relative;
    width: 100%;
}

.footer-content {
    position: relative;
    z-index: 2;
    background: #000000;
    width: 100%;
}

/* Logo y texto del footer */
.footer-logo h1 {
    color: #fff;
    font-size: 24px;
    margin: 0;
}

.footer-logo span {
    color: #cc0000;
}

.footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
    color: #7e7e7e;
    line-height: 28px;
}

/* Iconos sociales */
.footer-social-icon {
    margin-top: 20px;
}

.footer-social-icon span {
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-social-icon a {
    color: #fff;
    font-size: 16px;
    margin-right: 15px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.facebook-bg {
    background: #3B5998;
}

.instagram-bg {
    background: #E1306C;
}

.youtube-bg {
    background: #FF0000;
}

/* Widget del footer */
.footer-widget-heading h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

.footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: #cc0000;
}

.footer-widget ul {
    padding-left: 0;
}

.footer-widget ul li {
    display: block;
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: #878787;
    text-transform: capitalize;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-widget ul li a:hover {
    color: #ff0000;
    padding-left: 10px;
}

/* Área de copyright */
.copyright-area {
    background: #000000;
    padding: 15px 0;
    width: 100%;
}

.copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #878787;
}

.copyright-text p span {
    color: #ff0000;
}

/* Menú vertical en el footer - Ajustes para reducir espaciado */
.vertical-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;  /* Elimina el espacio entre elementos */
    margin: 0;
    padding: 0;
    list-style: none;
}

.vertical-menu li {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0; /* Reduce el padding vertical */
}

.vertical-menu li a {
    color: #878787;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 13px;
    line-height: 1;
    display: block;
    padding: 1px 0; /* Reduce el padding vertical del enlace */
}

.vertical-menu li a:hover {
    color: #ff0000;
}

/* Ajuste adicional para el contenedor del menú */
.footer-menu {
    margin-top: 15px; /* Añadir espacio después de la línea */
}

/* Ajuste para el espaciado del contenedor principal */
.col-12.text-center.mb-4 {
    margin-bottom: 2px !important; /* Reduce el margen inferior */
}

/* Logo en el footer */
.footer-logo-img {
    max-height: 60px;
    margin-bottom: 0; /* Reducir el margen inferior del logo */
}

/* Actualiza los estilos del email y añade estilos para el botón de copiar */
.email-contact {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.email-link {
    color: #878787;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.copy-button {
    background: none;
    border: none;
    color: #878787;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.copy-button i {
    font-size: 20px;
}

.copy-button:hover {
    color: #ff0000;
    transform: translateY(-2px);
}

.copy-button.copied {
    color: #00ff00;
}

/* Añadir efecto de hover */
.copy-button:hover::before {
    content: "Copiar email";
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    transform: translateY(-25px);
}

/* Ajustar espaciado de la línea divisoria */
.footer-divider {
    border: none;
    height: 2px;
    background-color: #ff0000;
    margin: 10px 0;
    width: 100%;
    opacity: 0.8;
}

/* Ajustar espaciado de los iconos sociales */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
