/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

/* Hero fullwidth */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('../img/BGTerra.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay oscuro */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.75));
    z-index: 1;
}

/* Contenido */
.content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

/* Badge */
.badge {
    display: inline-block;
    background-color: #f2c400;
    color: #000;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 12px 28px;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Texto */
.message {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Línea divisoria */
.divider {
    width: 60px;
    height: 4px;
    background-color: #f2c400;
    margin: 0 auto 30px;
}

/* Logo */
.logo img {
    max-width: 260px;
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .message {
        font-size: 1.1rem;
    }

    .badge {
        font-size: 1rem;
        padding: 10px 22px;
    }
}

/* WhatsApp flotante */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    z-index: 999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float img {
    width: 28px;
    height: 28px;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
}