

footer {
    background-image: url(./src/resources/footer.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    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: #902020;
    margin-bottom: 50px;
    border-top: 8px solid #FF120D;
    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: #FF120D;
    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 #FF120D;
    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);
}

footer::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,178,255,0.7), transparent);
    animation: pulse 10s infinite ease-in-out;
    z-index: 1;
}

footer::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,178,255,0.7), transparent);
    animation: pulse 10s infinite ease-in-out;
    z-index: 1;
}

@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 */
.contact-form-container {
    background-color: #ffffff;
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 700px;
}

/* Título del formulario */
.contact-form-title {
    color: #333;
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Estilos del formulario */
.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Grupo de formulario */
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

/* Etiquetas del formulario */
.contact-label {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

/* Inputs del formulario */
.contact-input, .contact-textarea {
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease;
}

.contact-input:focus, .contact-textarea:focus {
    border-color: #FF120D;
    outline: none;
}

/* Textarea */
.contact-textarea {
    height: 100px;
    resize: vertical;
}

/* Botón de envío */
.contact-submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #FF120D;
    border: none;
    color: white;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.layout-br-testimonial-logo-slider{
    background-image: url(./src/gallery/1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.contact-submit-btn:hover {
    background-color: #FF120D;
}

/* Estilos de ancho */
.half-width {
    flex: 1 1 48%;
}

.two-third-width {
    flex: 1 1 64%;
}

.third-width {
    flex: 1 1 30%;
}

.full-width {
    flex: 1 1 100%;
}

/* Responsivo */
@media (max-width: 768px) {
    .half-width, .two-third-width, .third-width {
        flex: 1 1 100%;
    }
}

