/* css/trabaja.css */

/* Forzamos que los bloques de texto estén siempre visibles (sin efecto acordeón) */
.trabaja-main .details-inner {
    display: block !important;
    opacity: 1 !important;
    margin-bottom: 2rem;
}

/* Estilos para la zona de contacto del Footer */
.contact-footer-title {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: #c6a75e; /* Color dorado característico */
    margin-top: -1rem;
    margin-bottom: -1rem;
}

.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    letter-spacing: 2px;
	opacity: 0;
    animation: fadeInLogo 1.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 300ms; /* Pequeña pausa intencional antes de aparecer */
}

/* BOTON VOLVER */
.back {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    border: 1px solid var(--gold);
    color: var(--gold);
    transition: all 0.25s ease;
    line-height: 1.2;
	font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* Distribución limpia de las 4 redes en mobile y desktop */
.flex-contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 400px;
}

/* css/trabaja.css */

/* Posicionamiento de las flechas dentro del contenedor del carrusel */
.carousel-navigation-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: none; /* Ocultas por defecto en mobile */
    justify-content: space-between;
    pointer-events: none; /* Para que no tapen los clics en la foto */
    padding: 0 1rem;
    z-index: 10;
}

/* Estilo premium minimalista para las flechas */
.carousel-arrow {
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto; /* Reactivamos clics en los botones */
    transition: background 0.3s, color 0.3s, border-color 0.3s;
    font-family: 'Roboto', sans-serif;
}

.carousel-arrow:hover {
    background: #c6a75e; /* Dorado característico */
    color: #000000;
    border-color: #c6a75e;
}

/* Mostramos las flechas únicamente en pantallas de escritorio o notebooks */
@media (min-width: 1024px) {
    .carousel-navigation-arrows {
        display: flex;
    }
}s

@media (min-width: 768px) {
    .flex-contact-links {
        gap: 3rem;
        max-width: 100%;
    }
}