/* BASE */
html {
    font-size: 16px;
    scroll-behavior: smooth;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: #111;
    background-color: #eee;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
}

main {
    font-size: 0;
}

.btn__whatsapp {
    background: #25D366;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.2s ease;
}

.btn__whatsapp:hover {
    background: #1DAE54;
}

.btn__whatsapp--large {
    padding: 10px 16px;
    font-size: 0.95rem;
}

.btn__whatsapp--shadow {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.btn__whatsapp-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
}

.btn__whatsapp-icon i {
    color: #fff;
}

/* RESPONSIVO */
@media (min-width: 768px) {}