/* ==============================================
   ESTILOS RESPONSIVOS PARA PROJETO ERGUER
   ============================================== */

/* Dispositivos Extra Pequenos (Phones, 576px e abaixo) */
@media (max-width: 575.98px) {
    .hero h1 {
        font-size: 2rem !important;
    }
    
    .hero p {
        font-size: 1rem !important;
    }
    
    .btn-hero {
        padding: 10px 20px !important;
        font-size: 1rem !important;
    }
    
    .section-title {
        font-size: 1.75rem !important;
    }
    
    .card-body {
        padding: 1rem !important;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .team-card {
        margin-bottom: 1rem;
    }
}

/* Dispositivos Pequenos (Landscape phones, 576px e acima) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    /* Removido: container max-width para usar padrões Bootstrap */
}

/* Dispositivos Médios (Tablets, 768px e acima) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    /* Removido: container max-width para usar padrões Bootstrap */
}

/* Dispositivos Grandes (Desktops, 992px e acima) */
@media (min-width: 992px) {
    /* Removido: container max-width para usar padrões Bootstrap */
    
    .hero-content {
        padding: 2rem 0;
    }
}

/* Dispositivos Extra Grandes (Large desktops, 1200px e acima) */
@media (min-width: 1200px) {
    /* Removido: container max-width para usar padrões Bootstrap */
    
    .hero-content {
        padding: 3rem 0;
    }
}

/* ==============================================
   ESTILOS PARA ELEMENTOS DESABILITADOS
   ============================================== */

.btn.disabled, .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.list-group-item.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
    background-color: #f8f9fa;
}

/* Tooltip para elementos em desenvolvimento */
[title] {
    position: relative;
}

[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 1000;
}
