/* Variáveis CSS */
:root {
    --primary: #0055b8;
    --primary-light: #3378c7;
    --primary-dark: #003d82;
    --secondary: #6c757d;
    --accent: #0055b8;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark: #343a40;
    --success: #0055b8;
    --warning: #0055b8;
    --danger: #dc3545;
}

/* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

/* Títulos de seção */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    text-align: center;
}
section {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    background: linear-gradient(135deg, #0055b8, #003d82);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 85, 184, 0.3);
}

.btn:hover {
    background: linear-gradient(135deg, #003d82, #0055b8);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 85, 184, 0.4);
    color: var(--white);
}

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

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

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

.btn-full:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Seção de consultoria de TI */
.consultoria-ti {
  background: linear-gradient(180deg, var(--light-gray), #fff);
  padding: 6rem 0;
}

.consultoria-image .image-container {
  background: url('images/servidores.jpg') center/cover no-repeat;
  min-height: 350px;
}

.tech-overlay {
  background: rgba(0,0,0,0.6);
}


.consultoria-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 3rem;
}

.consultoria-text {
    flex: 1;
}

.consultoria-text h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.consultoria-text p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.consultoria-features {
    list-style: none;
    margin-bottom: 2rem;
}

.consultoria-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray);
}

.consultoria-features i {
    color: var(--primary);
    width: 20px;
}

.consultoria-image {
    flex: 1;
}

/* Container de imagem */
.image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.image-container:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* Overlay técnico */
.tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(59, 130, 246, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .tech-overlay {
    opacity: 1;
}

.tech-content {
    text-align: center;
    color: var(--white);
}

.tech-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Botão flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

/* Página de suporte remoto */
.remote-support {
    padding: 5rem 0;
}

/* ====== Container principal ====== */
.support-content {
    display: flex;
    align-items: flex-start; /* ou center se preferir vertical */
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap; /* para empilhar em telas menores */
}

.support-info {
    flex: 1;
    min-width: 320px;
}

.support-image {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Texto dentro da coluna de info */
.support-text {
    flex: 1;
}

.steps-container {
    margin: 3rem 0;
}

/* ====== NOVO: passo a passo + card lado a lado ====== */
.steps-flex {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    flex-wrap: wrap; /* responsivo */
}

.steps-flex .support-steps {
    flex: 2;
    margin: 0;
    padding: 0;
}

.steps-flex .teamviewer-window {
    flex: 1;
    min-width: 240px;
    max-width: 300px;
    margin-top: 0; /* alinha no topo */
}

/* ====== Estilo dos passos ====== */
.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 8px;
}
.steps-flex {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    flex-wrap: wrap; /* responsivo */
}

.steps-flex .support-steps {
    flex: 2;
    margin: 0;
    padding: 0;
}

.steps-right {
    flex: 1;
    min-width: 260px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
}

/* garante que os dois cards tenham a mesma largura */
.steps-right .teamviewer-window,
.steps-right .download-container {
    width: 100%;
    box-sizing: border-box;
}




.step-number {
    background-color: var(--primary);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--gray);
}

/* ====== Download ====== */
.download-container {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 12px;
}

.download-btn {
    background-color: var(--primary);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

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

.download-note {
    margin-top: 1rem;
    color: var(--gray);
    font-size: 0.875rem;
}

/* ====== Contato ====== */
.support-contact {
    background-color: var(--primary);
    color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.support-contact h3 {
    margin-bottom: 1rem;
}

.support-contact p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.support-image img {
    width: 100%;
    border-radius: 8px;
}

/* ====== TeamViewer ====== */
.teamviewer-window {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 2rem;
}

.tv-header {
    background-color: #0e4194;
    color: var(--white);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tv-logo {
    font-weight: bold;
    font-size: 1.125rem;
}

.tv-content {
    padding: 2rem;
    text-align: center;
}

/* ====== Responsividade ====== */
@media (max-width: 768px) {
    .support-content {
        flex-direction: column;
    }
    .support-image {
        order: 2; /* imagem depois do texto */
        margin-top: 2rem;
    }
    .support-info {
        order: 1;
    }
    .steps-flex {
        flex-direction: column;
    }
    .steps-flex .teamviewer-window {
        max-width: 100%;
    }
}
/* ===== Melhorias visuais no passo a passo ===== */

/* Remove lista padrão e prepara timeline */
.support-steps {
  list-style: none;
  padding-left: 0;
  margin: 0;
  position: relative;
}

/* Cada passo em card */
.support-steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  position: relative;

  background: #f9fbfd;
  border: 1px solid #e3e9f0;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

/* Linha ligando os círculos */
.support-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 28px; /* centraliza com a bolinha (ajuste fino se precisar) */
  top: 45px;
  width: 2px;
  height: calc(100% - 45px);
  background: #d1d9e6;
}

/* Efeito hover */
.support-steps li:hover {
  background: #eef6ff;
  border-color: var(--primary);
  transform: translateX(5px);
}

/* Destaque nos títulos */
.step-content h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

/* Responsivo */
@media (max-width: 768px) {
  .support-steps li {
    flex-direction: column;
    align-items: flex-start;
  }
  .support-steps li::after {
    display: none;
  }
}





/* FAQ */
.faq {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.faq-container {
    max-width: 100%;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem;
    background-color: var(--white);
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light-gray);
}

.faq-question.active {
    background-color: var(--primary);
    color: var(--white);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: var(--light-gray);
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.6;
}

/* Navegação contínua */
.page-navigation {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    margin-top: 5rem;
}

.next-page {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.next-page:hover {
    transform: translateY(-5px);
    color: var(--white);
}

.next-label {
    font-size: 1.125rem;
    font-weight: 600;
}

.next-page i {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Loader da página */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.page-loader.active {
    opacity: 1;
    visibility: visible;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-gray);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* Responsividade */
@media (max-width: 992px) {
    .consultoria-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .support-info {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .consultoria-text h3 {
        font-size: 1.25rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        align-self: center;
    }
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 15px;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo span {
    color: var(--accent);
}

.logo-img {
    height: 60px;
    width: auto;
	transform: scaleX(1.3);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav a {
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

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

nav a.nav-highlight {
    background-color: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav a.nav-highlight:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.menu-mobile {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* Banner */
/* ===== Banner Suporte ===== */
.banner {
  position: relative;
  text-align: center;
  padding: 6rem 2rem 3rem;
  background: linear-gradient(135deg, #0056b3, #007bff);
  color: #fff;
  overflow: hidden;
}

.banner-content {
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem 4rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  animation: fadeUp 1s ease;
}


.banner-content .icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.banner-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.banner-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.9);
}
.banner-content .btn {
  background: linear-gradient(135deg, var(--accent), #ffb300);
  color: var(--dark);
  font-weight: 700;
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}


/* Onda decorativa */
.wave-divider {
  position: relative;
  width: 100%;
  height: 80px;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg path {
  fill: #fff;
}


/* Seções de serviços */
.services {
    padding: 4rem 0;
}

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

.service-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-card .icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.service-card h3 {
    font-size: 1.125rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
}

.services-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Estilos para bullets dos serviços */
.service-bullets {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
    text-align: left;
}

.service-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #333;
    position: relative;
    padding-left: 2rem;
    line-height: 1.6;
}

.service-bullets li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0.1rem;
    width: 1.5rem;
    text-align: center;
}

/* Estilos para service-box */
.service-box {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-box h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.btn-service {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-service:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Por que nos escolher */
.why-us {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

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

.feature {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.5rem;
}

.feature h3 {
    font-size: 1.125rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--gray);
    font-size: 0.875rem;
}

.features-list {
    list-style: none;
    max-width: 600px;
    margin: 3rem auto 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.features-list i {
    color: var(--primary);
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

/* Depoimentos do Google */
.testimonials-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.google-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1.5rem 0;
}

.rating-score {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.score-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0066cc;
}

.score-total {
    font-size: 1.5rem;
    color: #666;
    margin-left: 0.25rem;
}

.rating-stars {
    margin-bottom: 0.5rem;
}

.rating-stars i, 
.google-stars i {
    color: #FBBC05;
    font-size: 1.25rem;
    margin: 0 0.125rem;
}

.rating-source {
    font-size: 0.9rem;
    color: #666;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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

.google-stars {
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #333;
}

.author-info p {
    font-size: 0.9rem;
    color: #666;
}

/* Contato rápido */
/* Correção: força texto da seção 'Precisa de Ajuda?' a ficar azul corporativo */
.quick-contact,
.quick-contact h2,
.quick-contact p,
.quick-contact .contact-method p,
.quick-contact .contact-method i {
    color: var(--primary) !important;
}

.quick-contact {
    background: #fff !important;
}


/* Carrossel de serviços */
.services-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-carousel::-webkit-scrollbar {
    display: none;
}

/* Seção de contato */
.contact-section {
    padding: 5rem 0;
}

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

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

.map-container {
    margin: 3rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.google-map {
    width: 100%;
    height: 400px;
    border: none;
}

.contact-info {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--white);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateX(5px);
}

.contact-method i {
    color: var(--primary);
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

/* Footer */
footer {
    background: var(--white);
    color: var(--primary);
    padding: 2.5rem 0 1rem;
    border-top: 1px solid #ddd;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 70px;
    width: auto;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    font-size: 0.9rem;
    color: var(--primary);
    opacity: 0.9;
}

.footer-links h3,
.footer-services h3,
.footer-social h3 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.footer-links a,
.footer-services a {
    color: var(--primary);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary-dark);
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icons a {
    width: 38px;
    height: 38px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 0.9rem;
}

.social-icons a:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #ccc;
    padding-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--primary);
}

.footer-bottom a {
    color: var(--primary);
    font-weight: 500;
}

.footer-bottom a:hover {
    color: var(--primary-dark);
}

/* Responsividade */
@media (max-width: 768px) {
    .banner h1 {
        font-size: 2rem;
    }
    
    .banner h2 {
        font-size: 1rem;
    }
    
    .banner {
        padding: 3rem 0;
    }
    
    .services {
        padding: 3rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .menu-mobile {
        display: block;
    }
    
    .container {
        padding: 0 10px;
    }
}

/* Estilos para o carrossel de Missão, Visão e Valores */
.mission-carousel {
    position: relative;
    margin: 2rem 0;
}

.mission-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 1rem 0.5rem;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.mission-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.mission-card {
    flex: 0 0 calc(100% - 2rem);
    scroll-snap-align: start;
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mission-icon i {
    font-size: 2rem;
    color: var(--white);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.mission-prev-btn, .mission-next-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.mission-prev-btn:hover, .mission-next-btn:hover {
    background-color: var(--primary-dark);
}

.mission-dots {
    display: flex;
    gap: 10px;
    margin: 0 1rem;
}

.mission-dots .dot {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.mission-dots .dot.active {
    background-color: var(--primary);
}

/* Estilos para a seção de Diferenciais */
.differentials-section {
    padding: 5rem 0;
}

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

.differential-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.differential-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.differential-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.differential-content h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

/* Estilos específicos para a página sobre */
.about-section {
    padding: 5rem 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 3rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.mission-section {
    padding: 5rem 0;
}

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

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

.page-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-banner h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-banner p {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Responsividade adicional */
@media (min-width: 768px) {
    .mission-card {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (max-width: 767px) {
    .differentials-grid {
        grid-template-columns: 1fr;
    }
    
    .differential-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .page-banner h1 {
        font-size: 2rem;
    }
}

/* Vantagens da Terceirização de TI - Carrossel Interativo */
.outsourcing-benefits {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.benefits-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 10;
    pointer-events: none;
}

.carousel-nav button {
    background-color: var(--primary);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-nav button:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

.benefits-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
    padding: 2rem 0;
}

.benefit-card {
    flex: 0 0 calc(25% - 1.5rem);
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-light);
}

.benefit-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.benefit-card h3 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2.5rem;
}

.carousel-dots .dot {
    width: 14px;
    height: 14px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dots .dot.active {
    background-color: var(--primary);
    border-color: var(--primary-light);
    transform: scale(1.2);
}

/* Botão flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsividade para o botão WhatsApp */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        bottom: 15px;
        right: 15px;
    }
}
/* ===== FIX HEADER - PÁGINA SUPORTE (e global) ===== */

/* Zera qualquer herança que achate o header */
header, header * {
  line-height: normal !important;
}

/* Altura consistente do header em todas as páginas */
header { padding: 0 !important; }
header .container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1rem;
  min-height: 88px !important;   /* altura fixa e confortável */
  height: 88px !important;
}

/* Logo com tamanho estável e sem transform que distorça */
.logo-img {
  height: 56px !important;
  width: auto !important;
  transform: none !important;     /* previne scaleX herdado */
}

/* Navegação com clique confortável sem “achatar” a barra */
nav ul {
  display: flex !important;
  align-items: center !important;
  gap: 1.5rem;
  margin: 0 !important;
  padding: 0 !important;
}

nav a {
  display: inline-block !important;
  padding: 10px 0 !important;     /* pad vertical consistente */
  line-height: 1 !important;
}

/* Botão Suporte consistente */
nav a.nav-highlight {
  padding: 8px 16px !important;
  border-radius: 6px !important;
}

/* Quando rolar, mantém a mesma altura */
header.scrolled .container {
  min-height: 88px !important;
  height: 88px !important;
}

/* Responsivo */
@media (max-width: 768px) {
  header .container {
    min-height: 64px !important;
    height: 64px !important;
  }
  .logo-img { height: 48px !important; }
}
/* === HERO reforçado === */
.hero-bullets {
  list-style: none;
  margin: 1rem auto 1.5rem;
  padding: 0;
  max-width: 720px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .5rem 1rem;
  text-align: left;
}
.hero-bullets li { color: rgba(255,255,255,0.95); display: flex; gap: .5rem; align-items: center; }
.hero-bullets i { color: #b7ffbf; }

.hero-ctas { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }

/* === Logos strip (confiança) === */
.logos-strip { background:#fff; padding: 1.5rem 0; border-top:1px solid #e9eef7; border-bottom:1px solid #e9eef7; }
.logos-strip .logos-title { font-weight:600; color: var(--primary); margin-right:1rem; display:block; text-align:center; margin-bottom:.5rem; }
.logos-row { display:flex; gap: 28px; align-items:center; justify-content:center; flex-wrap:wrap; opacity:.9; }
.logos-row img {
  height:45px; /* antes era 28px */
  filter: grayscale(100%);
  opacity:.9;
  transition: transform .25s ease, opacity .25s ease;
}
.logos-row img:hover {
  filter:none;
  opacity:1;
  transform: scale(1.08); /* leve zoom ao passar o mouse */
}

/* === KPIs === */
.kpis { background: var(--light-gray); padding: 3rem 0; }
.kpis-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1rem; }
.kpi-card {
  background:#fff; border-radius:12px; padding:1.75rem; text-align:center;
  box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease;
}
.kpi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.kpi-number { font-size:2rem; font-weight:800; color: var(--primary-dark); }
.kpi-label  { color:#667085; margin-top:.25rem; font-weight:500; }

/* === Testimonials (ajuste fino) === */
.testimonials { padding: 4rem 0; }
.testimonial { background:#fff; }

/* === Banner: garante onda sem faixas brancas e padding equilibrado === */
.wave-divider { height: 80px; line-height: 0; overflow: hidden; }
.wave-divider svg { display:block; width:100%; height:100%; }
.banner { padding: 7rem 2rem 3.5rem; } /* pouca redução na parte de baixo p/ equilibrar */

/* === Acessibilidade/UX menores === */
.service-card h3, .feature h3 { font-weight:700; }

/* ====== GRID E TIPOGRAFIA FLUÍDOS ====== */

/* títulos que se adaptam com clamp */
.section-title { font-size: clamp(1.6rem, 3vw + 1rem, 2.5rem); }
.section-subtitle { font-size: clamp(1rem, 1vw + .8rem, 1.125rem); }

/* imagens sempre no limite do container */
img { max-width: 100%; height: auto; }

/* containers um pouco mais folgados em telas pequenas */
@media (max-width: 576px) {
  .container { padding: 0 16px; }
}

/* ====== HEADER / MENU MOBILE ====== */
.menu-mobile { display: none; cursor: pointer; }

@media (max-width: 992px) {
  nav ul { gap: 1rem; }
}
@media (max-width: 768px) {
  .menu-mobile { display: block; }
}

/* ====== HERO / BANNER ====== */
.banner { padding: clamp(4rem, 8vw, 7rem) 1.5rem clamp(2rem, 5vw, 3.5rem); }
.banner-content { padding: clamp(1.25rem, 3vw, 3rem) clamp(1rem, 4vw, 4rem); }

/* ====== LOGOS PARCEIROS ====== */
.logos-row img {
  max-height: 50px;
  max-width: 130px;
  object-fit: contain;
}
@media (max-width: 576px) {
  .logos-row { gap: 18px; }
  .logos-row img { max-height: 40px; max-width: 110px; }
}

/* ====== SERVIÇOS / GRIDS ====== */
.services-grid,
.features-grid,
.mission-grid,
.differentials-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

@media (max-width: 576px) {
  .service-card { padding: 1.25rem; }
}

/* ====== SUPORTE / PASSO A PASSO ====== */
.support-content { gap: 2rem; flex-wrap: wrap; }
.steps-flex { flex-direction: row; flex-wrap: wrap; }
.steps-flex .support-steps { flex: 1 1 360px; }
.steps-right { flex: 1 1 300px; max-width: 520px; }
.teamviewer-window { margin-top: 0; }

@media (max-width: 768px) {
  .steps-flex { flex-direction: column; }
  .steps-right { max-width: 100%; }
}

/* ====== FAQ (acordeão) ====== */
.faq-question { font-size: 1rem; padding: 1.25rem; }
.faq-answer { font-size: .95rem; }

/* ====== CONTATO RÁPIDO ====== */
.quick-contact { text-align: center; }
.contact-methods { gap: 1rem; }
.contact-method { justify-content: center; }

/* ====== CARROSSEL DEPOIMENTOS ====== */
.testimonials-slider { scroll-snap-type: x mandatory; gap: 1rem; }
.testimonial { flex: 0 0 min(85%, 360px); } /* 1 card por vez no mobile */
@media (min-width: 992px) {
  .testimonial { flex: 0 0 350px; }        /* 2–3 cards no desktop */
}

/* ====== FOOTER ====== */
.footer-content { gap: 1.25rem; }
@media (max-width: 576px) {
  .footer-content { grid-template-columns: 1fr; text-align: center; }
  .social-icons { justify-content: center; }
}

/* ====== TOQUES FINAIS ====== */
/* Botões ocupam largura total no mobile */
@media (max-width: 576px) {
  .btn, .btn-outline, .btn-full, .download-btn { width: 100%; }
}

/* Inputs de formulário full width e confortáveis no mobile */
.form-group input, .form-group textarea { font-size: 1rem; }

	