.localizacao-info {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.localizacao-info h5 {
    color: #dc3545;
    font-weight: bold;
}

.localizacao-info .alert {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.localizacao-info .bi {
    font-size: 1.2rem;
}

/* Informações do SAMU */
.samu-info {
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.samu-info i {
    margin-right: 0.5rem;
}

.samu-disclaimer {
    color: #6c757d;
    margin-top: 1rem;
    padding: 0.5rem;
    background-color: #f8f9fa;
    border-radius: 10px;
}

/* Campo de Nome */
.nome-paciente .input-group {
    border-radius: 15px;
    overflow: hidden;
}

.nome-paciente .input-group-text {
    border: none;
    padding: 0.8rem 1.2rem;
}

.nome-paciente .input-group-text i {
    font-size: 1.5rem;
}

.nome-paciente .form-control {
    border: none;
    background-color: #f8f9fa;
    padding: 0.8rem 1.2rem;
    font-size: 1.1rem;
}

.nome-paciente .form-control:focus {
    box-shadow: none;
    background-color: #fff;
}

/* Botões de Emergência */
.emergencia-botoes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.btn-emergencia {
    min-height: 160px;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    background-color: #dc3545;
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}

.btn-emergencia::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    border-radius: 20px;
}

.icone-container {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-emergencia i {
    font-size: 2rem;
    color: white;
}

.texto-container {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.texto-container strong {
    font-size: 1.2rem;
    line-height: 1.2;
}

.texto-container span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.btn-emergencia:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
    background-color: #c82333;
}

.btn-emergencia:hover .icone-container {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.25);
}

.btn-emergencia:active {
    transform: translateY(0);
}

.btn-emergencia.emergencia-ativa {
    animation: pulse 1s infinite;
    background-color: #c82333;
}

.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 15px;
    margin: 0.5rem;
}

.card-header {
    border-radius: 15px 15px 0 0 !important;
    padding: 1rem;
}

.card-header h1 {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    letter-spacing: 1px;
}

.form-select {
    padding: 1rem;
    font-size: 1.1rem;
}

.alert {
    border-radius: 15px;
}

.alert-info {
    background-color: #e3f2fd;
    border-color: #90caf9;
    color: #0d47a1;
}

/* Animações para feedback visual */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0.5rem;
    }

    .card {
        margin: 0;
    }

    .emergencia-botoes {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .btn-emergencia {
        min-height: 120px;
        padding: 1rem;
    }
    
    .icone-container {
        width: 50px;
        height: 50px;
    }
    
    .texto-container strong {
        font-size: 1.1rem;
    }

    .texto-container span {
        font-size: 0.85rem;
    }

    .samu-info {
        font-size: 1rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    .nome-paciente .input-group-text,
    .nome-paciente .form-control {
        padding: 0.6rem 1rem;
    }

    .nome-paciente .input-group-text i {
        font-size: 1.2rem;
    }

    .card-header h1 {
        font-size: 1.8rem;
    }
}

.status-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.status-steps .step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: #f8f9fa;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.status-steps .step.active {
    opacity: 1;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.status-steps .step.completed {
    opacity: 1;
    background: #d4edda;
    color: #155724;
}

.status-steps .step i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.emergency-info .alert {
    margin-bottom: 0.5rem;
    padding: 0.5rem 1rem;
}

.emergency-info .alert strong {
    display: block;
    color: #dc3545;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.emergency-info .alert span {
    font-size: 1rem;
}

.chamada-status.connected {
    color: #155724;
}

.chamada-status.connected .btn-danger {
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
}

/* Animação dos steps */
@keyframes fadeInStep {
    from { opacity: 0.5; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.status-steps .step.active {
    animation: fadeInStep 0.5s ease forwards;
} 