/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #516750;
    --secondary-color: #a8d5a3;
    --text-color: #fff;
    --dark-green: #2d3d2c;
    --card-bg: rgba(0, 0, 0, 0.15);
    --card-hover: rgba(0, 0, 0, 0.25);
}

/* ===== BASE STYLES ===== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-uppercase {
    text-transform: uppercase;
}

/* ===== HEADER ===== */
header {
    padding: 40px 0 20px;
    text-align: center;
}

.logo {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 10px;
}

.logo-light {
    font-weight: 300;
}

.tagline {
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.9;
    font-weight: 300;
}

/* ===== HERO SECTION ===== */
.hero-banner {
    width: 100%;
    margin-bottom: 20px;
}

.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.hero {
    text-align: center;
    padding: 80px 0 60px;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero .highlight {
    font-size: 5rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
    font-style: italic;
    margin: -10px 0;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.hero-image {
    margin-top: 20px;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
}

/* ===== COMING SOON SECTION ===== */
.coming-soon {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 60px 0;
    text-align: center;
    margin: 60px 0;
    border-radius: 20px;
}

.coming-soon h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.coming-soon p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.status-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--dark-green);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== INFO SECTION ===== */
.info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 60px 0;
}

.info-card {
    background-color: var(--card-bg);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-card:hover {
    transform: translateY(-5px);
    background-color: var(--card-hover);
}

.icon-container {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.info-card:hover .icon-container img {
    transform: scale(1.1);
    filter: brightness(0) invert(0.8) sepia(1) hue-rotate(70deg) saturate(0.5);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

.info-card p {
    opacity: 0.85;
    line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
.contact {
    text-align: center;
    padding: 60px 0;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    margin: 40px 0;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.contact-info {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.contact-info a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-info a:hover {
    opacity: 0.7;
}

.address-link {
    display: inline-block;
    margin-top: 5px;
}

/* ===== SOCIAL MEDIA ===== */
.social-media {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.social-icon {
    width: 55px;
    height: 55px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
}

.social-icon svg {
    width: 26px;
    height: 26px;
    fill: #ffffff; /* Branco */
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
    border-color: var(--secondary-color);
}

.social-icon:hover svg {
    fill: #2d3d2c; /* Verde escuro no hover */
}

/* Responsive Social Media */
@media (max-width: 768px) {
    .social-media {
        gap: 20px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .social-icon svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .social-media {
        gap: 15px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .social-icon svg {
        width: 22px;
        height: 22px;
    }
}

/* ===== FOOTER ===== */
footer {
    text-align: center;
    padding: 40px 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-subtitle {
    margin-top: 10px;
    font-size: 0.8rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .highlight {
        font-size: 3rem;
    }

    .logo {
        font-size: 2.5rem;
    }

    .coming-soon h2 {
        font-size: 2rem;
    }

    .info-section {
        grid-template-columns: 1fr;
    }

    .icon-container {
        width: 100px;
        height: 100px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content, .info-card, .coming-soon, .contact {
    animation: fadeIn 0.8s ease-out;
}

/* ===== FIXED NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #2d3d2c;
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(168, 213, 163, 0.3);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px; /* Altura fixa */
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
}

.navbar-logo {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-color);
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}

.navbar-tagline {
    font-size: 0.55rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.9;
    font-weight: 300;
    margin-top: 1px;
    white-space: nowrap;
}

.navbar-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.75rem;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.contact-item:hover {
    opacity: 0.7;
}

.contact-item svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
    flex-shrink: 0;
}

.navbar-social {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.nav-social-icon {
    width: 28px;
    height: 28px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-social-icon svg {
    width: 12px;
    height: 12px;
    fill: #ffffff;
    transition: all 0.3s ease;
}

.nav-social-icon:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.nav-social-icon:hover svg {
    fill: var(--dark-green);
}

/* Ajuste CRÍTICO do padding do body */
body {
    padding-top: 60px !important; /* Altura fixa baseada na navbar */
}

/* ===== MOBILE FIRST APPROACH ===== */
@media (max-width: 768px) {
    .navbar-container {
        flex-direction: column;
        gap: 8px;
        padding: 8px 15px;
        min-height: auto;
    }
    
    body {
        padding-top: 85px !important; /* Aumentado para mobile com layout vertical */
    }
    
    .navbar-brand {
        align-items: center;
        order: 1;
    }
    
    .navbar-contact {
        order: 2;
        gap: 10px;
        justify-content: center;
        width: 100%;
    }
    
    .contact-item {
        font-size: 0.7rem;
    }
    
    /* Esconde texto longo, mostra apenas ícones */
    .contact-item .desktop-text {
        display: none;
    }
    
    .contact-item .mobile-text {
        display: inline;
        font-size: 0.65rem;
    }
    
    .navbar-social {
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 6px 10px;
        gap: 6px;
    }
    
    body {
        padding-top: 80px !important; /* Ajuste fino para mobile pequeno */
    }
    
    .navbar-logo {
        font-size: 1.2rem;
    }
    
    .navbar-tagline {
        font-size: 0.5rem;
        letter-spacing: 1px;
    }
    
    .navbar-contact {
        gap: 8px;
    }
    
    .contact-item {
        font-size: 0.65rem;
    }
    
    /* Em mobile muito pequeno, mostra apenas ícones */
    .contact-item .mobile-text {
        display: none;
    }
    
    .contact-item .icon-only {
        display: inline-block;
        font-size: 0.7rem;
    }
}

@media (max-width: 320px) {
    body {
        padding-top: 75px !important;
    }
    
    .navbar-contact {
        gap: 5px;
    }
    
    .nav-social-icon {
        width: 24px;
        height: 24px;
    }
    
    .nav-social-icon svg {
        width: 10px;
        height: 10px;
    }
}