/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #007BFF;
    color: white;
    padding: 1rem 0;
    text-align: center;
}

header h1 {
    margin-bottom: 0.5rem;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

#hero {
    background: url('pharmacy-hero.jpg') no-repeat center center/cover;
    color: rgb(36, 34, 34);
    padding: 2rem;
    text-align: center;
}

#hero h2 {
    margin-bottom: 1rem;
}

#hero button {
    padding: 0.5rem 1rem;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

#hero button:hover {
    background-color: #0056b3;
}

#products {
    padding: 2rem;
    text-align: center;
}

.product-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
}

.product {
    background: white;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 30%;
    min-width: 250px;
}

.product img {
    max-width: 100%;
    border-radius: 5px;
}

.product h3 {
    margin: 1rem 0;
}

.product p {
    margin-bottom: 1rem;
}

.product button {
    padding: 0.5rem 1rem;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
}

.product button:hover {
    background-color: #0056b3;
}

#about {
    padding: 2rem;
    text-align: center;
}

.about-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.about-content img {
    max-width: 100%;
    border-radius: 10px;
}

#contact {
    padding: 2rem;
    text-align: center;
}

.contact-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-content ul {
    list-style: none;
    text-align: left;
}

.contact-content form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    width: 100%;
}

.contact-content form input,
.contact-content form textarea {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-content form button {
    padding: 0.5rem 1rem;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
}

.contact-content form button:hover {
    background-color: #0056b3;
}

#reminders {
    padding: 2rem;
    text-align: center;
}

.reminder-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

#reminder-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    width: 100%;
}

#reminder-form input {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#reminder-form button {
    padding: 0.5rem 1rem;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
}

#reminder-form button:hover {
    background-color: #0056b3;
}

#reminder-list {
    list-style: none;
    text-align: left;
    max-width: 400px;
    width: 100%;
}

#order-history {
    padding: 2rem;
    text-align: center;
}

.order-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

#order-list {
    list-style: none;
    text-align: left;
    max-width: 600px;
    width: 100%;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}