/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base */
body {
    font-family: "Montserrat", sans-serif;
    color: #ffffff;
}

/* Hero section */
.hero {
    max-height: 100dvh;
    min-height: 100dvh;
    width: 100%;

    /* Placeholder background */
    background: url(./compressed_FUNDO-01.jpg) no-repeat center center/cover;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero.loaded {
    background-image: url(./FUNDO-01.jpg);
}

/* Content wrapper */
.content {
    padding: 1.5rem;
    max-width: 700px;
}

/* Logo */
.logo {
    width: 1000px;
    max-width: 80%;
    margin-bottom: 2.5rem;
    filter: brightness(0) invert(1);
    margin-bottom: 10rem;
}

/* Headline */
h1 {
    font-size: clamp(1.4rem, 4vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-family: "Montserrat", sans-serif;
}

/* Subtext */
p {
    font-size: clamp(1rem, 3vw, 1.6rem);
    opacity: 0.85;
    margin-bottom: 2.5rem;
    font-family: "Montserrat", sans-serif;
}

/* CTA Button */
.cta {
    display: inline-block;
    padding: 0.9rem 2.2rem;

    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.5px;

    transition: all 0.3s ease;
    font-family: "Montserrat", sans-serif;
}

.cta:hover {
    background: #ffffff;
    color: #000000;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-11px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Logo animation */
.logo {
    animation: float 6s ease-in-out infinite;
}

/* Headline animation (slight delay for depth) */
h1 {
    animation: float 6s ease-in-out infinite;
    animation-delay: 0.6s;
}

/* Subtext animation */
p {
    animation: float 6s ease-in-out infinite;
    animation-delay: 1.2s;
}
