:root {
    /* Cores principais */
    --primary: #00A859;
    --secondary: #00C853;
    --accent: #00E676;

    /* Cores de fundo */
    --dark: #1C1C1C;
    --darker: #0A0A0A;
    --light: #FFFFFF;
    --gray: #E8F5E9;

    /* Cores de texto */
    --text-dark: #222222;
    --text-light: #FFFFFF;
    --text-gray: #666666;

    /* Efeitos e gradientes */
    --gradient: linear-gradient(135deg, var(--primary), var(--accent));
    --neon-glow: 0 0 20px rgba(0, 168, 89, 0.3);
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.2);

    /* Cores de interação */
    --hover-bg: rgba(0, 168, 89, 0.1);
    --border-color: rgba(0, 168, 89, 0.1);
    --input-bg: rgba(0, 0, 0, 0.5);

    /* PARCEIRO WING */
    --logo-min-width: 10mm;
    --logo-protection-area: 20%;
    --partner-logo-scale: 0.6;
    --logo-spacing: 1rem;
    --max-logo-height: 86px;
    --partner-offset: 271px;
}

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

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--light);
    overflow-x: hidden;
}

/* Header e Logo Wings */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    height: -20px;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.partner-logos {
    display: flex;
    align-items: center;
    position: relative;
    padding-right: calc(var(--partner-offset) / 2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo img {
    height: 86px;
}

.partner-logo {
    height: calc(var(--max-logo-height) * var(--partner-logo-scale));
    width: auto;
    min-width: var(--logo-min-width);
    position: absolute;
    left: var(--partner-offset);
    top: 50%;
    transform: translateY(-50%);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: black;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s;
    position: relative;
    font-weight: 500;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nav-link:hover {
    color: var(--accent);
    background: var(--hover-bg);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: black;
}

/* Contato Hero */
.contato-hero {
    padding-top: 120px;
    background: var(--gradient);
    position: relative;
    text-align: center;
    padding-bottom: 4rem;
}

.contato-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker);
    opacity: 0.8;
}

.contato-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    color: var(--light);
}

.contato-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.contato-hero p {
    font-size: 1.2rem;
    color: var(--accent);
}

/* Seção de Contato */
.contato-section {
    padding: 4rem 2rem;
    background: #082D1C;
}

.contato-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Formulário */
.contato-form {
    padding: 3rem;
    background: white;
}

.contato-form h2 {
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: white;
    color: var(--text-dark);
    transition: all 0.3s;
}

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

textarea.form-input {
    min-height: 150px;
    resize: vertical;
}

/* Informações de Contato */
.contato-info {
    padding: 3rem;
    background: var(--gradient);
    color: white;
    position: relative;
}

.contato-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker);
    opacity: 0.9;
}

.contato-info-content {
    position: relative;
    z-index: 2;
}

.contato-info h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--light);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.info-item i {
    color: var(--accent);
    font-size: 1.5rem;
}

.button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    background: var(--gradient);
    color: white;
    width: 100%;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Mapa */
.mapa-section {
    padding: 4rem 2rem;
    background: #082D1C;
}

.mapa-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.mapa-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer idêntico ao index.html */
.footer {
    background: white;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 100px;
    margin-bottom: 1rem;
    height: var(--max-logo-height, 160px);
    width: auto;
    min-width: var(--logo-min-width, 20mm);
}

.footer-tecpoint-logo {
    margin-bottom: 1rem;
}

.footer-tecpoint-logo img {
    height: var(--max-logo-height, 160px);
    width: auto;
    min-width: var(--logo-min-width, 20mm);
}

.footer-wings-logo {
    margin-bottom: 1rem;
    margin-left: 0;
}

.footer-wings-logo img {
    height: calc(var(--max-logo-height)*var(--partner-logo-scale));
    width: auto;
}

.footer-section h3 {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: black;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: black;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: black;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: black;
    font-size: 0.9rem;
}

/* Responsividade */
@media(max-width:768px) {
    .mobile-toggle {
        display: block;
        color: black;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .partner-logos {
        max-width: 70%;
    }

    .logo img {
        height: 60px;
    }

    .partner-logo {
        height: calc(60px * var(--partner-logo-scale));
        left: auto;
        position: relative;
        transform: none;
        margin-left: 0.5rem;
    }

    .contato-container {
        grid-template-columns: 1fr;
    }

    .footer-tecpoint-logo img {
        height: 80px !important;
        width: auto;
        max-width: 200px;
    }

    .footer-wings-logo img {
        height: 66px !important;
        width: auto;
        max-width: 120px;
        min-width: unset;
    }
}

@media(max-width:480px) {
    .partner-logos {
        padding-right: 0;
        max-width: 80%;
        gap: 0.5rem;
    }

    .partner-logo {
        position: static;
        transform: none;
        margin-left: var(--logo-spacing);
        height: calc(80px * var(--partner-logo-scale));
        min-width: auto;
    }

    .contato-form,
    .contato-info {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-tecpoint-logo img {
        height: 60px;
        margin: 0 auto;
    }

    .footer-wings-logo img {
        height: 36px;
        margin: 1rem auto;
    }

    .logo img {
        height: 60px;
    }

    .partner-logo {
        height: calc(80px * var(--partner-logo-scale));
        min-width: auto;
    }

    .partner-logos {
        max-width: 80%;
        gap: 0.5rem;
    }
}