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

:root {
    --color-primary: #116B34;
    --color-secondary: #7DB238;
    --color-dark: #032A12;
    --color-text: #000000;
    --color-text-light: #606060;
    --color-white: #FFFFFF;
    --color-bg-light: #FFF4EE;

    --font-primary: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Inter', sans-serif;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(4.9px);
    padding: 20px 0;
}

.navbar-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.navbar-logo img {
    height: 44px;
    width: auto;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.navbar-menu a {
    color: var(--color-primary);
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.navbar-menu a:hover {
    opacity: 0.7;
}

.navbar-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Botões mobile - escondidos por padrão */
.navbar-buttons-mobile {
    display: none;
    list-style: none;
    padding: 20px 0;
    border-top: 1px solid rgba(17, 107, 52, 0.1);
}

.navbar-buttons-mobile .btn-navbar {
    width: 100%;
    margin-bottom: 10px;
}

.navbar-buttons-mobile .btn-navbar:last-child {
    margin-bottom: 0;
}

.btn-navbar {
    padding: 10px 20px;
    border-radius: 8px;
    font-family: var(--font-secondary);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.btn-navbar-outline {
    background: transparent;
    color: var(--color-primary);
    font-weight: 700;
    border: 1px solid transparent;
}

.btn-navbar-outline:hover {
    background: rgba(17, 107, 52, 0.05);
}

.btn-navbar-primary {
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 400;
}

.btn-navbar-primary:hover {
    background: #0d5428;
    transform: translateY(-1px);
}

/* Botão Hambúrguer (Mobile) */
.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.navbar-toggle span {
    width: 100%;
    height: 3px;
    background: var(--color-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* Responsive Navbar */
@media (max-width: 968px) {
    .navbar-toggle {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: 84px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        max-height: calc(100vh - 84px);
        overflow-y: auto;
    }

    .navbar-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .navbar-menu li {
        border-bottom: 1px solid rgba(17, 107, 52, 0.1);
    }

    .navbar-menu li:last-child {
        border-bottom: none;
    }

    .navbar-menu a {
        display: block;
        padding: 15px 0;
        font-size: 18px;
    }

    /* Mostrar botões mobile, esconder desktop */
    .navbar-buttons-mobile {
        display: block;
    }

    .navbar-buttons-desktop {
        display: none;
    }

    .navbar-container {
        gap: 20px;
    }
}

/* Hero Banner */
.hero-banner {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 25px;
    margin: 100px auto 0;
    max-width: 1440px;
    overflow: hidden;
}

/* Slides */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
}

/* Imagens de fundo para cada slide */
.hero-slide[data-slide="1"] {
    background-image: url('img/banner1-min.png');
}

.hero-slide[data-slide="2"] {
    background-image: url('img/banner2-min.png');
}

.hero-slide[data-slide="3"] {
    background-image: url('img/banner3-min.png');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 0 20px;
}

.hero-subtitle {
    color: var(--color-white);
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2.56px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    max-width: 800px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Botões */
.btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Botões de Navegação do Hero */
.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    color: var(--color-white);
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.hero-nav-prev {
    left: 30px;
}

.hero-nav-next {
    right: 30px;
}

.hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Indicadores */
.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--color-white);
    width: 30px;
    border-radius: 6px;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Seção Sobre */
.about-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.about-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 25px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-label {
    color: var(--color-text);
    font-family: var(--font-secondary);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.76px;
    text-transform: uppercase;
}

.about-title {
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: 44.915px;
    font-weight: 700;
    line-height: 1.224;
    margin: 0;
}

.about-title .text-green {
    color: var(--color-primary);
}

.about-text {
    color: var(--color-text-light);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

.about-text strong {
    color: var(--color-text);
    font-weight: 700;
}

/* About Section Responsive */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .about-image {
        margin: 0 auto;
        max-width: 300px;
    }

    .about-title {
        font-size: 32px;
    }

    .about-text {
        font-size: 15px;
    }
}

/* Seção Pilares Estratégicos */
.pillars-section {
    padding: 80px 0;
    background: #F8F9FA;
}

.pillars-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

.pillars-header {
    text-align: left;
    margin-bottom: 35px;
}

.pillars-label {
    color: var(--color-text);
    font-family: var(--font-secondary);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.76px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.pillars-title {
    color: var(--color-text);
    font-family: Manrope;
    font-size: 44.915px;
    font-weight: 700;
    line-height: 1.224;
    margin: 0 0 10px 0;
}

.pillars-subtitle {
    color: var(--color-text-light);
    font-family: Manrope;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin: -70px 0;
    width: 360px;
    float: right;
}

.pillars-subtitle strong {
    color: var(--color-text);
    font-weight: 700;
}

.pillars-carousel {
    position: relative;
    overflow: visible;
}

.pillars-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.pillar-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 238px;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.pillar-image {
    width: 100%;
    overflow: hidden;
}

.pillar-image img {
    width: 238px;
    object-fit: cover;
}

.pillar-content {
    padding: 0px 20px 10px 20px;
}

.pillar-icon {
    margin-bottom: 0;
}

.pillar-title {
    color: var(--color-primary);
    font-family: Manrope;
    font-size: 15px;
    font-weight: 600;
    font-style: normal;
    line-height: 110%;
    letter-spacing: 0%;
    margin: 0 0 12px 0;
}

.pillar-description {
    color: var(--color-text-light);
    font-family: Manrope;
    font-size: 13px;
    line-height: 1.3;
    letter-spacing: 0%;
    margin: 0;
}

/* Botões de navegação do carrossel de pilares (mobile) */
.pillars-nav-btn {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border: none;
    border-radius: 50%;
    font-size: 32px;
    color: var(--color-primary);
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pillars-nav-prev {
    left: -25px;
}

.pillars-nav-next {
    right: -25px;
}

.pillars-nav-btn:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Pillars Mobile Carousel */
@media (max-width: 768px) {
    .pillars-container {
        padding: 0 20px;
    }

    .pillars-title {
        font-size: 32px;
    }

    .pillars-carousel {
        overflow: hidden;
        padding: 0 40px;
    }

    .pillars-subtitle {
        float: none;
        margin: 0px;
    }

    .pillars-track {
        display: flex;
        gap: 15px;
        transition: transform 0.4s ease;
    }

    .pillar-card {
        min-width: 234px;
        max-width: 234px%;
        flex-shrink: 0;
    }

    .pillars-nav-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pillars-nav-prev {
        left: 0;
    }

    .pillars-nav-next {
        right: 0;
    }
}

/* Seção Empresas Associadas */
.companies-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.companies-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

.companies-header {
    text-align: center;
    margin-bottom: 40px;
}

.companies-label {
    color: var(--color-text);
    font-family: var(--font-secondary);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.76px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.companies-title {
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: 44.915px;
    font-weight: 700;
    line-height: 1.224;
    margin: 0;
}

.companies-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.company-logo img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.company-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Seção Equipe */
.team-section {
    padding: 40px 0;
    background: #F8F9FA;
}

.team-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

.team-header {
    text-align: center;
    margin-bottom: 20px;
}

.team-label {
    color: var(--color-text);
    font-family: var(--font-secondary);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.76px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.team-title {
    color: var(--color-text);
    font-family: Manrope;
    font-size: 44.915px;
    font-weight: 700;
    line-height: 1.224;
    margin: 0;
}

.team-group {
    margin-bottom: 60px;
}

.team-group:last-child {
    margin-bottom: 0;
}

.team-group-title {
    color: var(--color-primary);
    font-family: Manrope;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    margin: 0 0 10px 0;
}

.team-carousel {
    position: relative;
    overflow: visible;
}

.team-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 20px;
}

.team-name {
    color: var(--color-text);
    font-family: Manrope;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 8px 0;
}

.team-role {
    color: var(--color-text-light);
    font-family: Manrope;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
}

/* Botões de navegação do carrossel de equipe (mobile) */
.team-nav-btn {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border: none;
    border-radius: 50%;
    font-size: 32px;
    color: var(--color-primary);
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.team-nav-prev {
    left: -25px;
}

.team-nav-next {
    right: -25px;
}

.team-nav-btn:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Team Section Mobile Carousel */
@media (max-width: 768px) {
    .team-container {
        padding: 0 20px;
    }

    .team-title {
        font-size: 32px;
    }

    .team-carousel {
        overflow: hidden;
        padding: 0 40px;
    }

    .team-track {
        display: flex;
        gap: 20px;
        transition: transform 0.4s ease;
        max-width: none;
    }

    .team-card {
        min-width: 100%;
        max-width: 100%;
        flex-shrink: 0;
    }

    .team-nav-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .team-nav-prev {
        left: 0;
    }

    .team-nav-next {
        right: 0;
    }
}


/* Hero Banner Mobile */
@media (max-width: 768px) {
    .hero-banner {
        height: 400px;
        margin: 80px 10px 0;
        border-radius: 15px;
    }

    .hero-title {
        font-size: 28px;
        padding: 0 20px;
    }

    .hero-subtitle {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 15px;
    }

    .btn {
        width: 100%;
        padding: 12px 24px;
        font-size: 15px;
    }

    .hero-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .hero-nav-prev {
        left: 15px;
    }

    .hero-nav-next {
        right: 15px;
    }

    .hero-indicators {
        bottom: 20px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .indicator.active {
        width: 24px;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        height: 350px;
    }

    .hero-title {
        font-size: 24px;
    }
}

/* Seção Faça Parte */
.join-section {
    position: relative;
    background-color: #116B34;
    /* fundo sólido */
    padding: 50px 0;
    color: white;
    overflow: hidden;
    /* impede vazamentos da imagem */
}

.join-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("img/fundo_verde.jpg") center/cover no-repeat;
    opacity: 0.3;
    /* <<< ajuste AQUI a transparência da imagem */
    mix-blend-mode: multiply;
    /* opcional se quiser acentuar o verde */
    z-index: 0;
}

.join-section * {
    position: relative;
    z-index: 1;
    /* garante que o conteúdo fique por cima */
}

.join-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.join-content {
    padding-right: 40px;
}

.join-label {
    color: white;
    font-family: var(--font-secondary);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.76px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.join-title {
    color: white;
    font-family: Manrope;
    font-size: 44.915px;
    font-weight: 700;
    line-height: 1.224;
    margin: 0 0 20px 0;
}

.join-description {
    color: rgba(255, 255, 255, 0.8);
    font-family: Manrope;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.join-button {
    padding: 16px 40px;
    background: var(--color-secondary);
    color: white;
    font-family: Manrope;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(125, 178, 56, 0.3);
    margin-bottom: 40px;
}

.join-button:hover {
    background: #8dc445;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(125, 178, 56, 0.4);
}

.join-image {
    width: 100%;
    max-width: 450px;
}

.join-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.join-benefits {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(17, 107, 52, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
}

.benefit-text {
    flex: 1;
}

.benefit-title {
    color: white;
    font-family: Manrope;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 8px 0;
}

.benefit-description {
    color: rgba(255, 255, 255, 0.7);
    font-family: Manrope;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .join-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 20px;
    }

    .join-content {
        padding-right: 0;
    }

    .join-title {
        font-size: 32px;
    }

    .join-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .benefit-item {
        gap: 15px;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
    }

    .benefit-icon svg {
        width: 24px;
        height: 24px;
    }

    .benefit-title {
        font-size: 16px;
    }

    .benefit-description {
        font-size: 13px;
    }
}

/* Seção Contato */
.contact-section {
    background: #032A12;
    padding: 80px 0;
    color: white;
}

.contact-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-label {
    color: white;
    font-family: var(--font-secondary);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.76px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-title {
    color: white;
    font-family: Manrope;
    font-size: 44.915px;
    font-weight: 700;
    line-height: 1.224;
    margin: 0 0 15px 0;
}

.contact-description {
    color: rgba(255, 255, 255, 0.8);
    font-family: Manrope;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-family: Manrope;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-secondary);
}

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

.contact-submit-btn {
    padding: 16px 40px;
    background: var(--color-secondary);
    color: white;
    font-family: Manrope;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.contact-submit-btn:hover {
    background: #8dc445;
    transform: translateY(-2px);
}

.contact-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    padding: 15px;
    border-radius: 8px;
    font-family: Manrope;
    font-size: 14px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(125, 178, 56, 0.2);
    border: 1px solid var(--color-secondary);
    color: var(--color-secondary);
}

.form-message.error {
    display: block;
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid #dc3545;
    color: #ff6b6b;
}

.contact-info {
    padding-top: 60px;
}

.contact-info-title {
    color: white;
    font-family: Manrope;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 40px 0;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(17, 107, 52, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-text {
    flex: 1;
}

.contact-info-label {
    color: white;
    font-family: Manrope;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.contact-info-address {
    color: rgba(255, 255, 255, 0.7);
    font-family: Manrope;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 20px;
    }

    .contact-title {
        font-size: 32px;
    }

    .contact-info {
        padding-top: 0;
    }

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

/* Footer */
.footer {
    background: #032A12;
    padding: 40px 0 30px;
    color: white;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding-bottom: 30px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 30px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.footer-link {
    color: white;
    font-family: Manrope;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.7;
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0;
}

.footer-bottom {
    padding-top: 25px;
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-family: Manrope;
    font-size: 13px;
    font-weight: 400;
    margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .footer-container {
        padding: 0 20px;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .footer-logo img {
        height: 40px;
    }

    .footer-social {
        gap: 12px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }
}