/* Importação de fontes modernas do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* Animações */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Animações de Entrada */
.animate-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-element.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Animações específicas por tipo de elemento */
.servico-item.animate-element {
    transform: translateY(40px) scale(0.95);
}

.servico-item.animate-in {
    transform: translateY(0) scale(1);
}

.missao-item.animate-element {
    transform: translateX(-30px);
}

.missao-item.animate-in {
    transform: translateX(0);
}

.sobre-content > *.animate-element:nth-child(odd) {
    transform: translateX(-40px);
}

.sobre-content > *.animate-element:nth-child(even) {
    transform: translateX(40px);
}

.sobre-content > *.animate-in {
    transform: translateX(0);
}

/* Delay progressivo para elementos em grid */
.parceiros-grid > *:nth-child(1) { transition-delay: 0.1s; }
.parceiros-grid > *:nth-child(2) { transition-delay: 0.2s; }
.parceiros-grid > *:nth-child(3) { transition-delay: 0.3s; }
.parceiros-grid > *:nth-child(4) { transition-delay: 0.4s; }
.parceiros-grid > *:nth-child(5) { transition-delay: 0.5s; }
.parceiros-grid > *:nth-child(6) { transition-delay: 0.6s; }

.servicos-grid > *:nth-child(1) { transition-delay: 0.1s; }
.servicos-grid > *:nth-child(2) { transition-delay: 0.3s; }
.servicos-grid > *:nth-child(3) { transition-delay: 0.5s; }

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    font-weight: 400;
    letter-spacing: -0.01em;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

section {
    padding: 60px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

p {
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #333;
}

.btn {
    display: inline-block;
    background: #1E88E5;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #1565C0;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1rem;
    position: relative;
    transition: padding 0.3s ease;
}

header .logo {
    margin: 0;
    height: 48px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

header .logo:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

nav ul li {
    position: relative;
}

nav ul li a {
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    color: #4a5568;
}

nav ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

nav ul li a:hover::before {
    width: 80%;
}

nav ul li a:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

/* Botão do Dólar */
.dollar-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #888;
    color: white;
    border-radius: 15px;
    padding: 3.15px 8.4px; /* Aumento de 5% no padding */
    font-weight: bold;
    font-size: 12.6px; /* Aumento de 5% no tamanho da fonte */
    transition: background-color 0.3s ease;
}

.dollar-button:hover {
    background-color: #666;
}

.dollar-label {
    margin-right: 3.15px; /* Aumento de 5% no espaçamento */
    font-weight: bold;
    font-size: 11.55px; /* Aumento de 5% no tamanho da fonte */
}

.dollar-icon {
    margin-right: 2.1px; /* Aumento de 5% no espaçamento */
    font-weight: bold;
    font-size: 11.55px; /* Aumento de 5% no tamanho da fonte */
}

.dollar-icon-value {
    color: rgb(71, 225, 12);
    font-weight: bold;
    font-size: 11.55px; /* Aumento de 5% no tamanho da fonte */
}

/* Botão do Euro */
.euro-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #888;
    color: white;
    border-radius: 15px;
    padding: 3.15px 8.4px; /* Aumento de 5% no padding */
    font-weight: bold;
    font-size: 12.6px; /* Aumento de 5% no tamanho da fonte */
    transition: background-color 0.3s ease;
    margin-left: 5.25px; /* Aumento de 5% no espaçamento */
}

.euro-button:hover {
    background-color: #666;
}

.euro-label {
    margin-right: 3.15px; /* Aumento de 5% no espaçamento */
    font-weight: bold;
    font-size: 11.55px; /* Aumento de 5% no tamanho da fonte */
}

.euro-icon {
    margin-right: 2.1px; /* Aumento de 5% no espaçamento */
    font-weight: bold;
    font-size: 11.55px; /* Aumento de 5% no tamanho da fonte */
}

.euro-icon-value {
    color: rgb(71, 225, 12);
    font-weight: bold;
    font-size: 11.55px; /* Aumento de 5% no tamanho da fonte */
}

/* Popup do Dólar */
.dollar-popup {
    position: absolute;
    top: 100%;
    right: 15px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    width: 220px;
    z-index: 1001;
    display: none;
    overflow: hidden;
    margin-top: 10px;
}

.dollar-popup.show {
    display: block;
}

.dollar-popup-header {
    background-color: #1E88E5;
    color: white;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 16px;
}

.dollar-popup-content {
    padding: 15px;
}

.dollar-main {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.dollar-variation {
    font-size: 14px;
    margin-bottom: 10px;
}

.dollar-variation.positive {
    color: #4CAF50;
}

.dollar-variation.negative {
    color: #F44336;
}

.dollar-updated {
    font-size: 12px;
    color: #666;
}

.dollar-loading {
    text-align: center;
    padding: 10px 0;
    color: #666;
}

nav ul li a:hover {
    color: #1E88E5;
}

/* Carousel */
.carousel {
    position: relative;
    margin-top: 80px;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 1rem;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.05);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    border-radius: 1rem;
    background: #f8f9fa;
}

.carousel-slide:hover .carousel-image {
    transform: scale(1.02);
}

.carousel-link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.carousel-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-link:hover::after {
    opacity: 1;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #4a5568;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.carousel-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel-button.prev {
    left: 20px;
}

.carousel-button.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: white;
}

/* Sobre */
.sobre {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(247, 250, 252, 0.9) 100%);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    margin-top: 3rem;
}

.sobre-text {
    animation: fadeInLeft 0.8s ease-out;
}

.sobre-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #64748b;
}

.sobre-img {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    animation: fadeInRight 0.8s ease-out;
}

.sobre-img:hover {
    transform: translateY(-10px) rotate(1deg);
}

.sobre-img img {
    transition: transform 0.5s ease;
}

.sobre-img:hover img {
    transform: scale(1.05);
}

/* Serviços */
.servicos {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.servicos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.servicos .container {
    position: relative;
    z-index: 1;
}

.servicos h2 {
    text-align: center;
    color: white;
    margin-bottom: 3rem;
    background: none;
    -webkit-text-fill-color: white;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.servico-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.servico-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.servico-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.servico-item:hover img {
    transform: scale(1.1);
}

.servico-item h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #1a202c;
    font-size: 1.5rem;
}

.servico-item p {
    padding: 0 1.5rem 1.5rem;
    color: #64748b;
    line-height: 1.7;
}

/* Local de Atuação */
.local {
    background-color: #E3F2FD;
}

.local-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.local-map {
    flex: 1;
    min-width: 300px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.local-info {
    flex: 1;
    min-width: 300px;
}

.local-info h3 {
    margin-bottom: 15px;
    color: #1565C0;
}

.local-info ul {
    margin: 15px 0;
    padding-left: 20px;
}

.local-info ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

/* Contato */
.contato {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contato-info {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.contato-info h3 {
    color: #1a202c;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.contato-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
}

.contato-info p strong {
    color: #4a5568;
    min-width: 100px;
}

.contato-info a {
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    padding: 0.25rem 0.5rem;
}

.contato-info a:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(5px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
footer {
    background: #0D47A1;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Missão, Visão e Valores */
.missao {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 245, 251, 0.95) 100%);
    padding: 5rem 0;
}

.missao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    margin-top: 3rem;
}

.missao-img {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    animation: fadeInLeft 0.8s ease-out;
}

.missao-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.missao-img:hover img {
    transform: scale(1.05);
}

.missao-text {
    animation: fadeInRight 0.8s ease-out;
}

.missao-item {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 1rem;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.missao-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.missao-item h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.missao-item p {
    color: #64748b;
    line-height: 1.7;
}

/* Parceiros */
.parceiros {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.parceiros::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
}

.parceiros .container {
    position: relative;
    z-index: 1;
}

.parceiros h2 {
    color: white;
    text-align: center;
    background: none;
    -webkit-text-fill-color: white;
    margin-bottom: 3rem;
}

.parceiros-content-centered {
    text-align: center;
    margin-top: 2rem;
}

.parceiros-content-centered > p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.parceiros-img {
    margin: 2rem 0;
}

.parceiros-img img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    margin: 0 auto;
    display: block;
}

.parceiros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.parceiro-item-simple {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.parceiro-item-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.parceiro-logo {
    width: 120px;
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.parceiro-item-simple:hover .parceiro-logo {
    transform: scale(1.05);
}

.parceiro-3-logo {
    width: 274px;
    height: 137px;
}

.parceiro-4-logo {
    width: 274px;
    height: 137px;
}

/* Meio Ambiente */
.meio-ambiente {
    background-color: #E3F2FD;
}

.meio-ambiente-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.meio-ambiente-img {
    flex: 1;
    min-width: 300px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.meio-ambiente-text {
    flex: 1;
    min-width: 300px;
}

.meio-ambiente-text h3 {
    color: #1565C0;
    margin-bottom: 15px;
}

.meio-ambiente-text ul {
    margin: 15px 0;
    padding-left: 20px;
}

.meio-ambiente-text ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

/* Menu Mobile Dropdown */
.mobile-menu-container {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
}

.mobile-menu-toggle {
    background: #1E88E5;
    border: none;
    padding: 12px 16px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.mobile-menu-toggle:hover {
    background: #1565C0;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.hamburger-line {
    display: block;
    width: 18px;
    height: 2px;
    background: white;
    border-radius: 1px;
    transition: all 0.3s ease;
    margin: 2px 0;
}

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

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

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

.mobile-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 8px;
    border: 1px solid #e0e0e0;
}

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

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.mobile-menu-list li {
    margin: 0;
    padding: 0;
}

.mobile-menu-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f5f5f5;
}

.mobile-menu-item:hover {
    background: #f8f9fa;
    color: #1E88E5;
    padding-left: 25px;
}

.mobile-menu-list li:last-child .mobile-menu-item {
    border-bottom: none;
    border-radius: 0 0 12px 12px;
}

.mobile-menu-list li:first-child .mobile-menu-item {
    border-radius: 12px 12px 0 0;
}



/* Responsividade */
/* Botões de cotação mobile */
.mobile-currency-buttons {
    display: none;
}

.mobile-currency-btn {
    background: #1E88E5;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.mobile-currency-btn:hover {
    background: #1565C0;
    transform: translateY(-1px);
}

/* Responsividade Moderna */
@media (max-width: 1200px) {
    .container {
        width: 95%;
        padding: 0 1rem;
    }
    
    .sobre-content,
    .missao-content {
        gap: 3rem;
    }
    
    .servicos-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

/* Tablet Grande */
@media (max-width: 1024px) {
    .container {
        width: 96%;
        padding: 0 1.5rem;
    }
    
    .carousel-container {
        height: 350px;
    }
    
    .servicos-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .sobre-content,
    .missao-content {
        gap: 2.5rem;
    }
}

/* Tablet Médio */
@media (max-width: 900px) {
    .container {
        width: 98%;
        padding: 0 1rem;
    }
    
    .carousel-container {
        height: 300px;
    }
    
    .servicos-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .parceiros-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
    }
}

/* Tablet Pequeno */
@media (max-width: 768px) {
    body {
        text-align: center !important;
    }
    
    .mobile-menu-container {
        display: block !important;
    }
    
    header .container {
        justify-content: center;
        align-items: center;
        padding: 1rem;
        margin: 0 auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    header .logo {
        margin: 0 auto;
    }
    
    .mobile-currency-buttons {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    nav {
        display: none;
    }
    
    .carousel {
        margin-top: 70px;
        text-align: center;
    }
    
    .carousel-container {
        height: 250px;
        margin: 0 auto;
        text-align: center;
    }
     
    .carousel-image {
        object-fit: cover;
        object-position: center top;
    }
    
    section {
        padding: 3rem 0;
        text-align: center !important;
    }
    
    .container {
        margin: 0 auto !important;
        text-align: center !important;
        width: 100%;
        padding: 0 1rem;
        display: block;
    }
    
    .sobre-content,
    .missao-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center !important;
        margin: 0 auto;
        justify-items: center;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 0 auto;
        justify-items: center;
        text-align: center !important;
    }
    
    .servico-item {
        max-width: 90%;
        margin: 0 auto;
        text-align: center !important;
    }
    
    .contato-info {
        padding: 2rem;
        text-align: center !important;
        margin: 0 auto;
    }
    
    .parceiros-grid {
        justify-items: center;
        margin: 0 auto;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        text-align: center !important;
    }
    
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
    }
    
    .whatsapp-button {
        width: 60px;
        height: 60px;
    }
    
    .whatsapp-menu {
        min-width: 260px;
        right: -10px;
    }
    
    /* Forçar centralização de todos os elementos */
    * {
        text-align: center !important;
    }
    
    div, section, article, main {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* Mobile Grande */
@media (max-width: 640px) {
    .container {
        width: 100%;
        padding: 0 1rem;
        margin: 0 auto;
        text-align: center;
    }
    
    .carousel-container {
        height: 220px;
    }
    
    section {
        padding: 2.5rem 0;
    }
    
    h1 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    
    h2 {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    h3 {
        font-size: clamp(1.2rem, 3vw, 1.5rem);
    }
    
    .servico-item {
        max-width: 95%;
        margin: 0 auto 1.5rem auto;
    }
    
    .missao-item {
        max-width: 95%;
        margin: 0 auto 1.5rem auto;
    }
    
    .parceiros-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
}

/* Mobile Médio */
@media (max-width: 540px) {
    .container {
        padding: 0 0.8rem;
    }
    
    .carousel-container {
        height: 200px;
    }
    
    .carousel-button {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .carousel-button.prev {
        left: 10px;
    }
    
    .carousel-button.next {
        right: 10px;
    }
    
    .servico-item {
        padding: 1rem;
    }
    
    .servico-item h3 {
        padding: 1rem 1rem 0.5rem;
        font-size: 1.2rem;
    }
    
    .servico-item p {
        padding: 0 1rem 1rem;
        font-size: 0.95rem;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-menu {
        min-width: 240px;
    }
}

/* Mobile Pequeno */
@media (max-width: 480px) {
    .container {
        width: 100%;
        padding: 0 0.75rem;
        margin: 0 auto;
        text-align: center;
    }
    
    section {
        padding: 2rem 0;
        text-align: center;
    }
    
    h1 {
        font-size: clamp(1.5rem, 6vw, 2rem);
        text-align: center;
        line-height: 1.2;
    }
    
    h2 {
        font-size: clamp(1.3rem, 5vw, 1.75rem);
        text-align: center;
        line-height: 1.3;
    }
    
    h3 {
        font-size: clamp(1.1rem, 4vw, 1.25rem);
        text-align: center;
        line-height: 1.4;
    }
    
    p {
        font-size: clamp(0.9rem, 3vw, 1rem);
        line-height: 1.6;
    }
    
    .carousel-container {
        height: 180px;
        margin: 0 auto;
    }
     
    .carousel-image {
        object-fit: cover;
        object-position: center top;
    }
    
    .carousel-button {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .carousel-button.prev {
        left: 5px;
    }
    
    .carousel-button.next {
        right: 5px;
    }
    
    .servico-item {
        margin: 0 auto 1.5rem auto;
        max-width: 100%;
        padding: 0.8rem;
    }
    
    .servico-item h3 {
        padding: 1rem 1rem 0.5rem;
        font-size: 1.1rem;
    }
    
    .servico-item p {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }
    
    .contato-info {
        padding: 1.2rem;
        text-align: center;
        margin: 0 auto;
    }
    
    .contato-info p {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        text-align: center;
        font-size: 0.9rem;
    }
    
    .missao-item {
        padding: 0.8rem;
        margin: 0 auto 1.5rem auto;
        text-align: center;
        max-width: 100%;
    }
    
    .local-content,
    .meio-ambiente-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 1.5rem;
    }
    
    .local-map,
    .meio-ambiente-img {
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
    }
    
    .local-info,
    .meio-ambiente-text {
        text-align: center;
        margin: 0 auto;
        width: 100%;
    }
    
    .parceiros-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.8rem;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-menu {
        min-width: 220px;
        right: -5px;
    }
}

/* Mobile Extra Pequeno */
@media (max-width: 360px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .carousel-container {
        height: 160px;
    }
    
    .carousel-button {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }
    
    section {
        padding: 1.5rem 0;
    }
    
    .servico-item,
    .missao-item {
        padding: 0.6rem;
        margin-bottom: 1rem;
    }
    
    .contato-info {
        padding: 1rem;
    }
    
    .parceiros-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 0.5rem;
    }
    
    .whatsapp-button {
        width: 45px;
        height: 45px;
    }
    
    .whatsapp-menu {
        min-width: 200px;
    }
    
    h1 {
        font-size: clamp(1.2rem, 7vw, 1.8rem);
    }
    
    h2 {
        font-size: clamp(1.1rem, 6vw, 1.5rem);
    }
    
    h3 {
        font-size: clamp(1rem, 5vw, 1.2rem);
    }
    
    p {
        font-size: clamp(0.8rem, 4vw, 0.9rem);
    }
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-button {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 50%;
    transition: opacity 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-button:hover::before {
    opacity: 0.8;
}

.whatsapp-button svg {
    transition: transform 0.3s ease;
    z-index: 1;
}

.whatsapp-button:hover svg {
    transform: scale(1.1);
}

.whatsapp-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.whatsapp-menu-header {
    padding: 15px 20px;
    background-color: #25D366;
    color: white;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.close-menu {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-menu:hover {
    opacity: 0.8;
}

.whatsapp-options {
    padding: 10px 0;
}

.whatsapp-option {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.whatsapp-option:last-child {
    border-bottom: none;
}

.whatsapp-option:hover {
    background-color: #f8f9fa;
    color: #25D366;
}

.whatsapp-option span {
    font-weight: 500;
}

/* Responsividade para o botão WhatsApp */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-button svg {
        width: 20px;
        height: 20px;
    }
    
    .whatsapp-menu {
        min-width: 220px;
        bottom: 60px;
    }
}