body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    color: #fff;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/bg.jpg');
    /* Based on image, it looks like a gradient or abstract mesh. 
       If bg.jpg is just the orange texture, cover works best. */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.main-container {
    display: flex;
    flex-wrap: wrap;
    /* Allow stacking on mobile */
    justify-content: space-between;
    align-items: center;
    /* Center aligned vertically */
    min-height: 100vh;
    padding: 40px 8%;
    /* Generous horizontal padding */
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

/* LEFT COLUMN */
.left-column {
    flex: 1;
    min-width: 300px;
    /* Prevent squishing too much */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* Left align text */
    padding-right: 40px;
}

.main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    /* Adjust based on screen size */
    font-weight: 300;
    /* Lighter weight for the body of the title */
    line-height: 1.4;
    letter-spacing: 2px;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.main-title .highlight {
    font-weight: 800;
    /* Extra bold for AGUARDEM! */
    display: block;
    /* Ensures it breaks line if needed, or just emphasizes */
    margin-top: 5px;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #E85D18;
    /* Darker Orange from button reference */
    color: #fff;
    text-decoration: none;
    padding: 12px 35px;
    border-radius: 10px;
    /* Pill shape */
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 0.2s, background-color 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Subtle border if needed, mostly for depth */
}

.whatsapp-button:hover {
    background-color: #25D366;
    transform: translateY(-2px);
    border-color: #25D366;
}

.whatsapp-button svg {
    width: 22px;
    height: 22px;
}


/* RIGHT COLUMN */
.right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    /* Right align everything */
    text-align: right;
    height: 100%;
    min-height: 50vh;
    /* Give it some vertical breathing room */
    position: relative;
    padding-left: 20px;
}

.logo-wrapper {
    margin-bottom: auto;
    /* Push content apart if needed, or just standard margin */
    margin-top: auto;
    /* To vertically center logo roughly in the upper-mid section as per image? 
       Actually image shows logo mid-right, contact bottom-right. 
       Let's use spacing. */
    margin-bottom: 20px;
}

.logo {
    max-width: 350px;
    /* Large logo */
    height: auto;
}

.contact-info {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 100px;
    /* Space between logo and contact info */
    font-weight: 400;
    letter-spacing: 0.5px;
}

.contact-info .address {
    margin-bottom: 5px;
}

.contact-info .phones {
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.contact-info .phones .ddd {
    font-weight: 300;
    margin-right: 4px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .main-title {
        font-size: 1.5rem;
    }

    .logo {
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .main-container {
        flex-direction: column-reverse;
        /* Stack content: Info top, Text bottom? Or Text top? 
        Usually visual hierarchy: Brand/Logo first on mobile? 
        The prompt says 'responsive', let's stick to logical flow: Brand -> Message.
        However, the image shows logo on right. On mobile, usually stack top-down. 
        Let's keep text top? Or image top?
        Let's Try Text Top for now since it's the main message. */

        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 40px 20px;
    }

    .left-column,
    .right-column {
        align-items: center;
        text-align: center;
        padding: 0;
        width: 100%;
    }

    .right-column {
        justify-content: flex-start;
        min-height: auto;
        margin-bottom: 40px;
        /* Logo on top visually? Or below? */
    }

    /* If we want Logo on top for Mobile: move right-column to order -1 */
    .right-column {
        order: -1;
    }

    .logo-wrapper {
        margin-bottom: 30px;
    }

    .contact-info {
        margin-top: 30px;
        order: 10;
        /* Contact info probably at the bottom of the stack? */
    }

    /* Wait, contact info is inside right col. If we move right col up, contact moves up. 
       We might want specific mobile ordering: Logo -> Text -> Button -> Contact. 
       Use display: contents or specific ordering if needed. 
       Let's keep it simple: Logo (Right col) -> Text (Left col) -> Contact (part of Right col). 
    */

    .contact-info {
        margin-top: 40px;
        /* Separate from logo if stacked */
        display: none;
        /* Often contact info is less critical in hero, but user wants it. 
        Let's keep it but move it to very bottom.
        We can't easily move it out of parent without `display: contents` grid/flex magic.
        Let's just let it follow the logo for now, but maybe Text -> Button -> Logo -> Contact?
        */
    }

    /* Let's try: Left Col (Text/Btn) first? 
       No, usually Logo is header. 
       Let's do: 
       1. Logo
       2. Text+Msg
       3. Button
       4. Contact
    */

    .right-column {
        order: -1;
        /* Logo area first */
        margin-bottom: 20px;
    }

    /* But contact info is inside right-column. We want that at the bottom. 
       We can hide it in right-col and show a duplicate, or use absolute positioning? 
       Absolute positioning for contact info on mobile bottom?
    */
    .contact-info {
        margin-top: 20px;
        font-size: 0.8rem;
    }

    .main-title {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }

    .logo {
        max-width: 200px;
    }
}