/**
 * CSS BREADCRUMB FIX - REEMPLAZADO CON BOTONES VOLVER
 * Los breadcrumbs han sido reemplazados por botones "Volver"
 * Este archivo se mantiene por compatibilidad pero ya no se usa
 */

/* ESTILOS PARA BOTONES VOLVER */
.btn-outline-light.btn-sm,
.btn-outline-light[style*="font-size: 0.8rem"] {
    border-color: rgba(255, 255, 255, 0.7);
    color: #ffffff;
    transition: all 0.3s ease;
    font-size: 0.8rem !important;
    padding: 0.3rem 0.6rem !important;
}

.btn-outline-light.btn-sm:hover,
.btn-outline-light[style*="font-size: 0.8rem"]:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
}

/* Ajuste de posición para PC - más arriba y fijo */
@media (min-width: 769px) {
    .hero-section, .protesta-hero {
        position: relative;
    }
    
    .hero-section .container .d-flex.mb-3 {
        position: absolute;
        top: 50px; /* Posición normal para index */
        left: 50px;
        z-index: 10;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
    }
    
    .protesta-hero .container .d-flex.mb-3 {
        position: absolute;
        top: 20px; /* Posición más alta para protesta (hero más pequeño) */
        left: 50px;
        z-index: 10;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
    }
    
    /* Ajustar el contenido principal para no solaparse - SOLO hero-section */
    .hero-section .text-center {
        padding-top: 60px;
    }
    
    /* Para protesta-hero, NO ajustar padding */
    .protesta-hero .text-center {
        padding-top: 0;
    }
}

/* Responsive para botones volver - MÓVIL */
@media (max-width: 768px) {
    .btn-outline-light.btn-sm,
    .btn-outline-light[style*="font-size: 0.8rem"] {
        font-size: 0.65rem !important;
        padding: 0.2rem 0.4rem !important;
    }
    
    /* En móvil, posición relativa normal */
    .hero-section .container .d-flex.mb-3,
    .protesta-hero .container .d-flex.mb-3 {
        position: relative;
        top: auto;
        left: auto;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    
    /* No ajustar padding en móvil */
    .hero-section .text-center,
    .protesta-hero .text-center {
        padding-top: 0;
    }
    
    /* Hero más compacto en móvil */
    .protesta-hero {
        min-height: 250px;
        padding: 1.5rem 0 2rem 0;
    }
}
