/* Variáveis e Reset */
:root {
    --primary-color: #007bff;
    --primary-dark: #0056b3;
    --secondary-color: #6c757d;
    --accent-color: #28a745;
    --text-color-dark: #343a40;
    --text-color-light: #f8f9fa;
    --bg-light: #f8f9fa;
    --bg-dark: #343a40;
    --border-color: #dee2e6;
    --shadow-light: 0 4px 8px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 16px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    background-color: #fff;
}

/* Layout Geral */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-spacing {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--text-color-light);
}

.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

h1, h2, h3 {
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-color-dark);
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
}

.sub-heading {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Botões */
.btn-primary, .btn-secondary, .btn-primary-outline {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--text-color-light);
    border-color: var(--accent-color);
}

.btn-secondary:hover {
    background-color: #218838;
    border-color: #218838;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-primary-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Header/Hero */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('hero.jpg') no-repeat center center/cover;
    color: var(--text-color-light);
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-top: 80px; /* Espaço para o fixed nav */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 0;
}

.hero-content h1 {
    color: var(--text-color-light);
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Navegação */
.main-header {
    background-color: rgba(186, 181, 181, 0.7); /* Fundo semi-transparente para o nav */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px; /* Ajuste o padding para o nav fixo */
}

.logo img {
    height: 80px;
  width: auto;
  margin-block: -25px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-color-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color-light);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Servicos */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 4rem;
}

.servico-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servico-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.servico-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: invert(30%) sepia(80%) saturate(1500%) hue-rotate(190deg) brightness(90%) contrast(90%); /* Icone azulado */
}

.servico-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.servico-item p {
    font-size: 1rem;
    color: var(--secondary-color);
}

/* Soluções Prontas */
.solucoes-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 4rem;
}

.solucao-item {
    display: flex;
    align-items: center;
    gap: 60px;
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solucao-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.solucao-item.reverse {
    flex-direction: row-reverse;
}

.solucao-content {
    flex: 1;
}

.solucao-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.solucao-content p {
    font-size: 1.1rem;
    color: var(--text-color-dark);
    margin-bottom: 25px;
}

.solucao-content ul {
    list-style: none;
    margin-bottom: 30px;
    padding-left: 0;
}

.solucao-content ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--text-color-dark);
}

.solucao-content ul li img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    filter: invert(39%) sepia(80%) saturate(600%) hue-rotate(80deg) brightness(90%) contrast(90%); /* Ícone verde */
}

.solucao-image {
    flex: 1;
    text-align: center;
}

.solucao-image img, .solucao-image video { /* Adicionado para vídeos */
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
}

/* Sobre Nós */
.about-content {
    max-width: 800px;
    margin: 4rem auto 0;
}

.about-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 2rem;
    border: 5px solid var(--primary-color);
    box-shadow: var(--shadow-medium);
}

/* Contato */
.contato h2, .contato p {
    color: var(--text-color-light);
}

.contact-form {
    max-width: 600px;
    margin: 4rem auto 0;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.contact-form  input,
.contact-form  textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color-light);
    font-size: 1rem;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

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

.contact-form  input:focus,
.contact-form  textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.1);
}

.contact-form  button {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-info a {
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #212529;
    padding: 30px 0;
}

.footer p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.social-links a {
    margin: 0 10px;
    display: inline-block;
}

.social-links img {
    width: 24px;
    height: 24px;
    filter: invert(100%); /* Ícones brancos */
    transition: transform 0.3s ease;
}

.social-links img:hover {
    transform: translateY(-3px);
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes slideLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

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

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.animate-fade-in { animation: fadeIn 0.8s ease forwards; opacity: 0; }
.animate-slide-up { animation: slideUp 0.8s ease forwards; opacity: 0; }
.animate-slide-left { animation: slideLeft 0.8s ease forwards; opacity: 0; }
.animate-slide-right { animation: slideRight 0.8s ease forwards; opacity: 0; }
.animate-zoom-in { animation: zoomIn 0.8s ease forwards; opacity: 0; }

/* Atrasos de animação */
.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }

/* Responsividade */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 20px 0;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 10px 0;
        display: block;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .solucao-item, .solucao-item.reverse {
        flex-direction: column;
        text-align: center;
    }

    .solucao-image img, .solucao-image video { /* Adicionado para vídeos */
        margin-top: 30px;
    }

    .solucao-content ul {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .section-spacing {
        padding: 60px 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
    }
    
    .solucao-item {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .btn-primary, .btn-secondary, .btn-primary-outline {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-form form input,
    .contact-form form textarea {
        padding: 12px;
    }
}



.parceiros-section {
  padding: 2rem 1rem;
  background-color: #fff;
}

.parceiros-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.parceiros-titulo {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #333;
}

.parceiros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
}

.parceiro img {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.parceiro img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}
