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

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

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

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

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

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

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

/* =========================
    TOOLTIP
========================= */
.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
========================= */
.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;
}

.social-icon.facebook:hover {
    color: #1877f2;
}