/* Estilização moderna */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f9f4; /* Fundo claro para farmácias */
    color: #333; /* Texto escuro para contraste */
    margin: 0;
    padding: 0;
}

h1{
    background: #2b718600;
    color: aliceblue;
    margin-top: -200px;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Ocupa toda a altura */
    padding: 20px;
    background: linear-gradient(135deg, #1e2e41, #2d5d94, #3e97b3); /* Tons de verde */
    color: white;
    border: none;
    border-radius: 0; /* Sem bordas */
    box-shadow: none; /* Sem sombras */
    text-align: center;
}

.card h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.card p {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.card .btn {
    font-size: 1.2rem;
    margin: 10px 0;
    padding: 10px 15px;
    border-radius: 8px;
    color: white;
    width: 80%;
    max-width: 300px;
    text-decoration: none;
}

.card .btn-primary {
    background-color: #2196f3; /* Azul para Google Maps */
}

.card .btn-secondary {
    background-color: #4caf50; /* Verde para telefone */
}

.card .btn-primary:hover,
.card .btn-secondary:hover {
    opacity: 0.9;
}

.card small {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

footer {
    width: 100%;
    height: 100px;
    background-color: #343a40; /* Footer background color */
    color: white; /* Footer text color */
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
}

/* Responsividade */
@media (max-width: 395px) {
    body{
       width: 100vw;
       height: 90vh;
       overflow-y: hidden;
    }
    .container{
        height: 100%;
        width: 395px;
    }
    .card{
        width: 395px;
        height: 100%;
        align-content: center;
        justify-content: center;
    }
    .title h1{
         margin-top: 8px;
    }
    .card h2 {
        font-size: 1.5rem;
    }

    .card p {
        font-size: 1rem;
    }

    .card .btn {
        font-size: 1rem;
    }
    footer {
        position: relative;
        bottom: 0;
        width: 100%;
        max-height: 60px; 
        font-size: 12px;
    } 
}
