/* =========================
    RESET BÁSICO
========================= */
* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* =========================
    LOGO & HEADER
========================= */
.logo-site {
    max-height: 64px;
    width: auto;
}

@media (max-width: 640px) {
    .logo-site {
        max-height: 48px;
    }
}

.mobile-link {
    color: white;
    padding: 10px;
    font-size: 1.1rem;
    transition: color 0.3s;
}
.mobile-link:hover {
    color: #D32F2F;
}

/* =========================
    HERO IMAGE (Sua Estrutura)
========================= */
.hero-image {
    width: 100%;
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .hero-image { height: 360px; }
}

@media (min-width: 1024px) {
    .hero-image { height: 420px; }
}

/* =========================
    TOOLTIP (Sua Estrutura)
========================= */
.tooltip-container {
    position: relative;
    display: inline-flex;
}

.tooltip-text {
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #111;
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 50;
}

.tooltip-container:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
}

/* =========================
    ÍCONES SOCIAIS (Sua Estrutura)
========================= */
.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover { background-color: #fff; }
.social-icon.whatsapp:hover { color: #25d366; }
.social-icon.instagram:hover { color: #e1306c; }

/* =========================
    BOTÃO DE EMERGÊNCIA (NEW)
========================= */
.btn-emergency {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #D32F2F;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(211, 47, 47, 0.5);
}