* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2d5a27;
    --secondary: #4a7c44;
    --light: #f5f5f5;
    --dark: #333;
    --white: #fff;
    --boxed-width: 1200px;
}

html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/bg-image.webp') center/cover;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.container {
    max-width: var(--boxed-width);
    margin: 0 auto;
    min-height: 100vh;
}

.topo {
    background: rgba(51, 51, 51, 0.5);
    padding: 0.75rem 2rem;
    border-bottom: 1px solid transparent;
    border-radius: 0 0 10px 10px;
}

.topo-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 1rem;
    color: var(--white);
}

.topo-info span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.topo-insta {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.topo-insta svg {
    width: 16px;
    height: 16px;
}

header {
    padding: 1.5rem 2rem;
    background: transparent;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.logo a {
    display: flex;
}

.logo img {
    width: 512px;
    height: 280px;
    object-fit: contain;
}

main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 450px);
    padding: 2rem;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
}

.logo-area {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 350px;
}

.logo-area img {
    max-width: 100%;
    width: 512px;
    height: 280px;
    object-fit: contain;
}

.contato-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 2rem;
    max-width: 380px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    border-top: 4px solid var(--primary);
}

.contato-card h1 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contato-card .subtitle {
    color: var(--dark);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.contact-btn svg {
    width: 18px;
    height: 18px;
}

.contact-btn.whatsapp {
    background: var(--primary);
    color: var(--white);
}

.contact-btn.whatsapp:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.contact-btn.instagram {
    background: transparent;
    color: #e1306c;
    border-color: #e1306c;
}

.contact-btn.instagram:hover {
    background: #e1306c;
    color: var(--white);
    transform: translateY(-2px);
}

.contact-btn.email {
    background: transparent;
    color: var(--dark);
    border-color: var(--dark);
}

.contact-btn.email:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-info {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.contact-info p {
    color: var(--dark);
    font-size: 0.85rem;
}

@media (max-width: 1024px) {
    .logo img {
        width: 400px;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .topo {
        display: none;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .logo-area {
        min-width: auto;
    }
    
    .logo-area img {
        width: 300px;
        height: 165px;
    }
    
    .contato-card {
        padding: 1.5rem;
    }
    
    .contato-card h1 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 250px;
        height: 137px;
    }
    
    .contact-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .contact-btn svg {
        width: 16px;
        height: 16px;
    }
}