/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variáveis de cores */
:root {
    --color-background: hsl(88, 47%, 58%);
    --color-foreground: hsl(0, 0%, 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #8AB542;
    color: var(--color-foreground);
}
img {
    max-width: 100%;
}
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    position: relative;
}

/* Header */
.header {
    position: absolute;
    top: 2rem;
    left: 1rem;
}

.header h2 {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-foreground);
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    max-width: 56rem;
    width: 100%;
}

/* Logo */
.logo {
    margin-bottom: 4rem;
    text-align: center;
}

.logo h1 {
    color: var(--color-foreground);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1;
}

.logo-oak {
    display: block;
    font-size: 4.5rem;
    line-height: 1;
}

.logo-graphic {
    display: block;
    font-size: 1.875rem;
    font-weight: 300;
    margin-top: 0.5rem;
}

/* Contact Section */
.contact-section {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--color-foreground);
}

/* WhatsApp */
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-foreground);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: opacity 0.3s ease;
}

.whatsapp-link:hover {
    opacity: 0.8;
}

.whatsapp-icon {
    width: 2rem;
    height: 2rem;
    fill: currentColor;
}

.phone-number {
    font-size: 1.875rem;
    font-weight: 600;
}

/* Email */
.email-container {
    margin-top: 1rem;
}

.email-link {
    color: var(--color-foreground);
    font-size: 1.25rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.email-link:hover {
    opacity: 0.8;
}

/* Footer */
.footer {
    width: 100%;
    max-width: 72rem;
    padding: 0 1rem 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

/* Address */
.address-block {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.map-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--color-foreground);
    flex-shrink: 0;
}

.address-text {
    color: var(--color-foreground);
}

.address-title {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.address-line {
    font-size: 1rem;
}

/* Instagram */
.instagram-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-foreground);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.instagram-link:hover {
    opacity: 0.8;
}

.instagram-icon {
    width: 3rem;
    height: 3rem;
    color: var(--color-foreground);
}

.instagram-text {
    text-align: left;
}

.instagram-title {
    font-weight: 600;
    font-size: 1.125rem;
}

.instagram-subtitle {
    font-size: 0.875rem;
}

/* Media Queries - Desktop */
@media (min-width: 768px) {
    .header {
        left: 3rem;
    }

    .header h2 {
        font-size: 1.5rem;
    }

    .logo-oak {
        font-size: 6rem;
    }

    .logo-graphic {
        font-size: 3rem;
    }

    .contact-title {
        font-size: 1.5rem;
    }

    .whatsapp-icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .phone-number {
        font-size: 2.25rem;
    }

    .email-link {
        font-size: 1.5rem;
    }

    .footer {
        padding: 0 3rem 2rem;
    }

    .footer-content {
        flex-direction: row;
        align-items: flex-end;
    }

    .map-icon {
        width: 3rem;
        height: 3rem;
    }

    .address-title {
        font-size: 1.25rem;
    }

    .address-line {
        font-size: 1.125rem;
    }

    .instagram-icon {
        width: 3.5rem;
        height: 3.5rem;
    }

    .instagram-text {
        text-align: right;
    }

    .instagram-title {
        font-size: 1.25rem;
    }

    .instagram-subtitle {
        font-size: 1rem;
    }
}