/* RESET E ESTILOS GERAIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.section {
    padding: 60px 0;
}

.bg-light {
    background-color: #f8f9fa;
}

/* TIPOGRAFIA E TAGS */
h1 {
    font-size: 2.5rem;
    color: #0d47a1;
    margin-bottom: 20px;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    color: #1565c0;
    margin-bottom: 10px;
}

.section-tag, .tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1976d2;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    margin-bottom: 30px;
}

/* BOTÕES */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #25d366;
    color: #fff;
}

.btn-primary:hover {
    background-color: #1ebd56;
}

.btn-outline {
    border: 2px solid #1976d2;
    color: #1976d2;
    margin-left: 10px;
}

.btn-outline:hover {
    background-color: #1976d2;
    color: #fff;
}

.btn-whatsapp-header {
    background-color: #25d366;
    color: #fff;
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-whatsapp-large {
    background-color: #25d366;
    color: #fff;
    font-size: 1.1rem;
    padding: 15px 30px;
}

/* CABEÇALHO */
.header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-badge {
    background: #1976d2;
    color: #fff;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 1.1rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text strong {
    color: #0d47a1;
    line-height: 1;
}

.logo-text small {
    font-size: 0.65rem;
    color: #1976d2;
    font-weight: 700;
}

/* HERO SECTION */
.hero {
    padding: 80px 0;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.hero p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* PASSO A PASSO (COMO FUNCIONA) */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.step-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.step-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1976d2;
    display: block;
    margin-bottom: 10px;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.9rem;
    color: #666;
}

/* CAIXA DE FARMÁCIAS */
.pharmacy-box {
    background: #eef5fc;
    border: 2px dashed #90caf9;
    border-radius: 12px;
    padding: 35px;
    text-align: center;
}

.pharmacy-box p {
    max-width: 700px;
    margin: 0 auto 25px auto;
    color: #444;
}

.pharmacy-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.pharmacy-tag {
    background: #fff;
    color: #1565c0;
    border: 1px solid #bbdefb;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

/* CTA */
.cta-section {
    background: #1565c0;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 10px;
}

.cta-section p {
    margin-bottom: 25px;
    opacity: 0.9;
}

/* RODAPÉ */
.footer {
    background: #0d1b2a;
    color: #ccc;
    padding-top: 50px;
    font-size: 0.9rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.logo-footer .logo-text strong {
    color: #fff;
}

.service-partner {
    margin-top: 15px;
    color: #90caf9;
}

.service-partner strong {
    color: #fff;
}

.footer h4 {
    color: #fff;
    margin-bottom: 15px;
}

.footer a {
    color: #25d366;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #1e2d3d;
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
    color: #777;
}

/* BOTÃO FLUTUANTE */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1000;
}

.whatsapp-float:hover {
    background-color: #1ebd56;
}