* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, "Times New Roman", serif;
    min-height: 100vh;
    color: #ffffff;
    background-color: #1d1d1d;
}

main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 30px;
    position: relative;

    background-image:
        linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
        url("hero.jpg");

    background-size: cover;
    background-position: center;
}

main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}

main > * {
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 1.2rem;
    font-weight: normal;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-bottom: 70px;
}
.logo {
    width: 150px;
    height: auto;
    margin-bottom: 70px;
}
h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: normal;
    line-height: 1.1;
    max-width: 800px;
    margin-bottom: 28px;
}

p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.92);
}

#whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
    padding: 15px 28px;
    background: rgba(255, 255, 255, 0.95);
    color: #222222;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s ease;
    color: #ffffff;
    background: #25D366;
}
#whatsapp-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}


@media (max-width: 600px) {

    main {
        padding: 40px 22px;
        background-position: center;
    }

    .logo {
        width: 105px;
        margin-bottom: 45px;
    }

    h2 {
    font-size: 1.45rem;
    line-height: 1.2;
    max-width: 300px;
    margin-bottom: 18px;
}

p {
    font-size: 0.8rem;
    line-height: 1.55;
    max-width: 280px;
    margin-bottom: 5px;
}

    #whatsapp-button {
        margin-top: 28px;
        padding: 13px 22px;
        font-size: 0.72rem;
    }

    #whatsapp-button svg {
        width: 18px;
        height: 18px;
    }
}