/* Reset e Variáveis - Cores Exatas da Imagem */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

:root {
    --primary-green: #00A859;
    --dark-teal: #006B7D;
    --black: #000000;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --dot-gray: #E0E0E0;
    --font-primary: 'Inter', sans-serif;
}

body {
    font-family: var(--font-primary);
    background-color: var(--light-gray);
    background-image: 
        radial-gradient(circle, rgba(0, 0, 0, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: 0 0;
    color: var(--black);
    line-height: 1.5;
    min-height: 100vh;
    padding: 0;
    padding-top: 80px; /* Espaço para o menu fixo */
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    box-sizing: border-box;
    width: 100%;
}

/* Menu Superior Fixo - Estilo DGL */
.top-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0.8rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.nav-logo {
    flex-shrink: 0;
    max-width: 180px;
    height: auto;
}

.nav-logo-img {
    width: 100%;
    height: auto;
    max-height: 50px;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-contact-btn {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 0.7rem 1.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.nav-contact-btn:hover {
    background-color: var(--dark-teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 168, 89, 0.3);
}

/* Menu Mobile (Hamburger) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--black);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsividade do Menu */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 2.5rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .nav-contact-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .top-navbar {
        padding: 0.6rem 0;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-logo {
        max-width: 140px;
    }
    
    .nav-logo-img {
        max-height: 40px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 1rem;
        width: 100%;
        padding: 0.8rem 0;
    }
    
    .nav-contact-btn {
        display: none;
    }
    
    /* Botão contato dentro do menu mobile */
    .nav-menu.active .nav-contact-btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-logo {
        max-width: 120px;
    }
    
    .nav-logo-img {
        max-height: 35px;
    }
}

/* Header e Logo - Exatamente como na imagem */
.header {
    margin-bottom: 2.5rem;
}

.logo-container {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 260px;
    height: auto;
    position: relative;
    flex-shrink: 0;
}

.logo-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Garantir que todas as imagens respeitem a largura */
img {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box;
}

.logo-text {
    display: flex;
    flex-direction: column;
    padding-top: 0.5rem;
}

.company-name {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: 0.02em;
    margin: 0;
    line-height: 1.1;
    font-family: var(--font-primary);
}

.tagline {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 0.02em;
    margin-top: 0.3rem;
    font-family: var(--font-primary);
}

/* Conteúdo Principal - Layout em 2 colunas */
.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

/* Seção Esquerda */
.left-section {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

/* Call to Action - Texto dividido em linhas */
.cta-section {
    margin-bottom: 0.5rem;
}

.cta-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.cta-line-bold {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.5;
    margin: 0;
    font-family: var(--font-primary);
}

.cta-line-regular {
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--black);
    line-height: 1.5;
    margin: 0;
    font-family: var(--font-primary);
}

/* Banner de Seção - Verde com bordas levemente arredondadas */
.section-banner {
    padding: 0.85rem 1.6rem;
    border-radius: 6px;
    margin-bottom: 1.2rem;
    display: inline-block;
    width: 100%;
}

.green-banner {
    background-color: var(--primary-green);
    color: var(--white);
}

.green-banner h3 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin: 0;
    font-family: var(--font-primary);
}

/* Lista de Serviços */
.services-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding: 0;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-size: 1rem;
    font-weight: 400;
    color: var(--black);
    font-family: var(--font-primary);
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-green);
    flex-shrink: 0;
}

/* Seção sobre Inversores WEG */
.inversores-section {
    margin-top: 0.5rem;
}

.inversores-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.inversores-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.inversores-text {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--black);
    line-height: 1.8;
    margin: 0;
    text-align: justify;
    font-family: var(--font-primary);
    margin-bottom: 0.5rem;
}

.inversores-text-highlight {
    font-weight: 600;
    color: var(--dark-teal);
    margin-top: 0.8rem;
}

/* Contato */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
    color: var(--black);
    font-size: 1rem;
    font-weight: 400;
    font-family: var(--font-primary);
    transition: color 0.2s ease;
}

.contact-item:hover {
    color: var(--primary-green);
}

.phone-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-green);
    flex-shrink: 0;
}

/* Seção Direita - Produtos - Imagens */
.right-section {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 1rem;
    box-sizing: border-box;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
}

.products-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 380px;
    position: relative;
    box-sizing: border-box;
}

.product-image-wrapper {
    width: 100%;
    max-width: 380px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    background: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.product-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.product-photo {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 8px;
}


/* Responsividade */
@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .right-section {
        justify-content: center;
        padding-top: 0;
    }

    .products-grid {
        max-width: 100%;
        align-items: center;
        gap: 2rem;
    }

    .product-image-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 2rem 1.5rem;
    }

    .company-name {
        font-size: 2rem;
    }

    .tagline {
        font-size: 0.85rem;
    }

    .cta-line-bold,
    .cta-line-regular {
        font-size: 1.1rem;
    }

    .logo {
        width: 60px;
        height: 60px;
    }

    .logo-t,
    .logo-d {
        font-size: 3rem;
    }

    .products-grid {
        max-width: 100%;
    }

    .product-image-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem 1rem;
    }

    .logo-container {
        gap: 1rem;
    }

    .company-name {
        font-size: 1.6rem;
    }

    .tagline {
        font-size: 0.75rem;
    }

    .cta-line-bold,
    .cta-line-regular {
        font-size: 1rem;
    }

    .section-banner {
        padding: 0.7rem 1.3rem;
    }

    .green-banner h3 {
        font-size: 0.9rem;
    }

    .service-item,
    .contact-item {
        font-size: 0.9rem;
    }

    .inversores-title {
        font-size: 1.1rem;
    }

    .inversores-text {
        font-size: 0.9rem;
        text-align: left;
    }

    .product-image-wrapper {
        max-width: 100%;
    }
}

/* Remover animações para ficar exatamente como a imagem */
.left-section > *,
.right-section {
    animation: none;
}

/* Seção de Contato Completa - Estilo Versatronic */
.contact-section-full {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 3rem 2rem;
    margin-top: 4rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Informações de Contato (Esquerda) */
.contact-info-section {
    color: var(--white);
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
    font-family: var(--font-primary);
}

/* Botão Grande de WhatsApp */
.whatsapp-button-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 1.2rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: var(--font-primary);
    box-shadow: 0 4px 12px rgba(0, 168, 89, 0.3);
}

.whatsapp-button-large:hover {
    background-color: #00c96b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 168, 89, 0.4);
}

.whatsapp-button-second {
    background-color: #25D366;
    margin-bottom: 2rem;
}

.whatsapp-button-second:hover {
    background-color: #20BA5A;
}

.whatsapp-icon-large {
    width: 28px;
    height: 28px;
    color: var(--white);
    flex-shrink: 0;
}

/* Blocos de Informação */
.contact-info-block {
    margin-bottom: 2rem;
}

.info-block-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.8rem;
    font-family: var(--font-primary);
}

.info-block-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    line-height: 1.6;
    font-family: var(--font-primary);
}

.info-block-text strong {
    color: var(--white);
    font-weight: 600;
}

/* Formulário de Contato (Direita) - Menor e Compacto */
.contact-form-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-half {
    /* Para campos que ficam lado a lado */
}

.form-group label {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    font-family: var(--font-primary);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background-color: var(--white);
    color: var(--black);
    font-size: 0.95rem;
    font-family: var(--font-primary);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(0, 168, 89, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit-btn {
    background-color: #FF6B35;
    color: var(--white);
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: var(--font-primary);
    margin-top: 0.5rem;
}

.form-submit-btn:hover {
    background-color: #E55A2B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.form-submit-btn:active {
    transform: translateY(0);
}

/* Responsividade da Seção de Contato */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-form-section {
        padding: 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section-full {
        padding: 2.5rem 1.5rem;
        margin-top: 3rem;
    }
    
    .contact-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .whatsapp-button-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .whatsapp-icon-large {
        width: 24px;
        height: 24px;
    }
    
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .contact-form {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-section-full {
        padding: 2rem 1rem;
    }
    
    .contact-title {
        font-size: 1.4rem;
    }
    
    .whatsapp-button-large {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
        gap: 0.8rem;
    }
    
    .info-block-title {
        font-size: 1rem;
    }
    
    .info-block-text {
        font-size: 0.9rem;
    }
    
    .contact-form-section {
        padding: 1.2rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
    
    .form-submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
