body {
    margin: 0;
}

/* ===== NAVBAR PREMIUM ===== */
.navbar-custom {
    background-image: linear-gradient(125deg, rgb(25, 46, 88) 0%, rgb(8, 15, 27) 100%);
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    padding: 15px 0;
}

/* Navbar menor ao rolar */
.navbar-custom.scrolled {
    padding: 8px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

/* Logo */
.navbar-brand img {
    max-width: 120px;
    max-height: 60px;
    transition: all 0.3s ease;
}

/* Reduz logo ao rolar */
.navbar-custom.scrolled .navbar-brand img {
    max-width: 100px;
    max-height: 50px;
}

/* Links */
.navbar-nav .nav-link {
    color: #fff;
    position: relative;
    margin-left: 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* Linha animada */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -4px;
    background-color: #0dcaf0;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #0dcaf0 !important;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}



















/* ===== HERO SECTION PREMIUM ===== */
.hero-section {
    width: 100%;
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f8f9fb 0%, #eef1f5 100%);
    padding: 100px 20px 60px 20px;
    margin-top: 90px;
}

/* Container com texto e imagem lado a lado */
.hero-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    text-align: left;
    padding: 0 10px;
}

/* ===== TEXTO ===== */
.hero-text {
    width: 60%; /* largura fixa */
    max-width: 600px;
}

.hero-badge {
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    color: #6c757d;
    margin-bottom: 15px;
}

.hero-text h1 {
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.2;
    color: #111;
    margin-bottom: 20px;
}

.hero-text .highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
    padding-bottom: 4px;
}

.hero-text .highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 6px;
    border-radius: 6px;
    background: linear-gradient(to right, #0dcaf0 0%, #1c2e59 50%, #0dcaf0 100%);
    background-size: 200% 100%;
    z-index: -1;
    transform-origin: left center;
    animation: highlight-breath 4s ease-in-out infinite;
}

.hero-text p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.6;
    margin-top: 20px;
}

/* ===== BOTÃO ===== */
.btn-hero {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    border-radius: 50px;
    background: linear-gradient(135deg, #1c2e59, #000);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    position: relative;
    transition: all 0.35s ease;
}

.btn-hero .btn-arrow {
    display: inline-block;
    margin-left: 10px;
    animation: arrow-bounce 1s ease-in-out infinite;
}

.btn-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.btn-hero:hover .btn-arrow {
    animation: arrow-bounce-hover 0.5s ease-in-out infinite;
}

/* ===== KEYFRAMES ===== */
@keyframes highlight-breath {
    0% { transform: scaleX(0.2); }
    50% { transform: scaleX(1); }
    100% { transform: scaleX(0.2); }
}

@keyframes arrow-bounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(6px); }
}

@keyframes arrow-bounce-hover {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

/* ===== IMAGEM ===== */
.hero-image {
    width: 38%; /* largura fixa */
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    border-radius: 25px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}























/* ===== SERVICES SECTION ===== */
.services-section {
    background: #ffffff;
    padding: 100px 0;
}

/* Cabeçalho */
.services-header .section-badge {
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    color: #6c757d;
}

.services-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.services-header h2.highlight::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    border-radius: 6px;
    background: linear-gradient(90deg, #0dcaf0, #1c2e59, #0dcaf0);
    background-size: 200% 100%;
    z-index: -1;
}

.services-header p.section-subtitle {
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CAROUSEL WRAPPER ===== */
.services-carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

.services-carousel {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.services-carousel .service-card {
    flex: 0 0 calc(33.333% - 20px); /* 3 cards visíveis */
    box-sizing: border-box;
}

/* Cards */
.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.35s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13,202,240,0.25);
}

/* Ícones tech */
.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-icon img {
    width: 50%;
    height: 50%;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

/* Títulos e texto */
.service-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

/* Diferenciais */
.services-differentials {
    color: #111;
    font-weight: 500;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.services-differentials .diff-item {
    background: #f5f9ff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.services-differentials .diff-item:hover {
    background: linear-gradient(135deg, #0dcaf0, #1c2e59);
    color: #fff;
    cursor: default;
}

/* CTA */
.services-cta {
    margin-top: 50px;
    text-align: center;
}

.services-cta .cta-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* ===== CAROUSEL BUTTONS ===== */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(13,202,240,0.85);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 10px 14px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(13,202,240,1);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}
















/* ===== CAROUSEL WRAPPER ===== */
.services-carousel-wrapper {
  position: relative;
  overflow: hidden;
  max-width: calc(360px * 3 + 24px * 2); /* 3 cards + gaps */
  margin: 0 auto;
}

/* ===== CAROUSEL FLEX ===== */
.services-carousel {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
  flex-wrap: nowrap;
  width: max-content;
}

/* ===== CARDS ===== */
.services-carousel .service-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  text-align: center;
  min-width: 280px;
  max-width: 360px;
  height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-shrink: 0;
  transition: all 0.35s ease;
  cursor: default;
  overflow: hidden;
}

.services-carousel .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(13,202,240,0.25);
}

/* ===== ÍCONES ===== */
.service-icon {
  font-size: 48px;
  color: #0dcaf0;
  margin-bottom: 18px;
}

/* ===== TÍTULOS E TEXTOS ===== */
.services-carousel .service-card h5 {
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
}

.services-carousel .service-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  flex-grow: 1;
}

/* ===== BOTÕES DE NAVEGAÇÃO ===== */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13,202,240,0.85);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 8px 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: rgba(13,202,240,1);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}























/* ===== AFTER SERVICES ===== */
.after-services {
  background: #f8f9fb;
  padding: 100px 0;
  font-family: 'Inter', sans-serif;
  color: #111;
}

/* ===== TÍTULO DA SEÇÃO ===== */
.after-services .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.after-services .section-title span {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  color: #6c757d;
}

.after-services .section-title h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  color: #111;
}

.after-services .section-title p {
  color: #555;
  font-size: 1rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== CARDS ===== */
.after-services .card-service {
  background: #fff;
  border-radius: 24px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; /* usa a altura do col do Bootstrap */
}

.after-services .card-service:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(13,202,240,0.25);
}

/* ===== ÍCONES ===== */
.card-service .icon-service {
  font-size: 3.5rem;
  color: #0dcaf0;
  margin-bottom: 20px;
  transition: transform 0.35s ease, color 0.35s ease;
}

.card-service:hover .icon-service {
  transform: rotate(8deg) scale(1.1);
  color: #1c2e59;
}

/* ===== TÍTULOS E DESCRIÇÃO ===== */
.card-service h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #111;
  transition: color 0.35s ease;
}

.card-service:hover h5 {
  color: #0dcaf0;
}

.card-service p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ===== LISTAS DE FEATURES ===== */
.card-service ul.features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: left;
}

.card-service ul.features li {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 10px;
}

.card-service ul.features li strong {
  background: linear-gradient(125deg, rgb(25, 46, 88) 0%, rgb(8, 15, 27) 100%);
  -webkit-background-clip: text; /* para navegadores baseados em WebKit */
  -webkit-text-fill-color: transparent; /* faz o texto mostrar o gradiente */
  font-weight: 700; /* opcional: mantém destaque */
}

/* ===== MÉTRICAS ===== */
.card-service .metrics {
  margin-top: auto; /* mantém no rodapé do card */
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start; /* alinha à esquerda */
  text-align: left; /* garante alinhamento do texto */
}

.card-service .metrics p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
}

.card-service .metrics p strong {
  color: #0dcaf0; /* destaque padronizado para números */
  font-weight: 700;
  font-size: 1.05rem;
  margin-right: 5px; /* um pequeno espaço após o número */
}

/* ===== CTA FINAL ===== */
.after-services .cta-final {
  text-align: center;
  margin-top: 50px;
}

.after-services .cta-final h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}



















/* =======================================================
   SEÇÃO CONTATO – PROFISSIONAL / MODERNA
======================================================= */

.contact-section {
  background: #f8f9fb;
  padding: 50px 0;
  font-family: 'Inter', sans-serif;
  color: #111;
}

.contact-section .container {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
}


/* =========================
   TÍTULO
========================= */

.contact-section .section-title h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1c2e59;
  position: relative;
}

.contact-section .section-title h2::after {
  content: '';
  display: block;
  width: 200px;
  height: 3px;
  margin: 3px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, #0dcaf0, #1c2e59);
}

.contact-section .section-title p {
  color: #555;
  font-size: 1rem;  
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* =========================
   CARD DO FORMULÁRIO
========================= */

.contact-form {
  background: #ffffff;
  padding: 10px 20px 20px 20px;
  border-radius: 24px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.contact-form:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* =========================
   LABELS
========================= */

.contact-form .form-label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: #1c2e59;
}

/* =========================
   INPUTS / SELECT / TEXTAREA
========================= */

.contact-form .form-control,
.contact-form .form-select {
  height: 56px;
  border-radius: 14px;
  border: 1.5px solid #e3e6ed;
  padding: 0 16px;
  font-size: 0.95rem;
  background: #fff;
  transition: all 0.25s ease;
}

.contact-form textarea.form-control {
  min-height: 140px;
  padding: 14px 16px;
  resize: vertical;
}

/* Hover */
.contact-form .form-control:hover,
.contact-form .form-select:hover {
  border-color: #cfd6e3;
}

/* Focus */
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: #0dcaf0;
  box-shadow: 0 0 0 4px rgba(13, 202, 240, 0.15);
  outline: none;
}

/* =========================
   VALIDAÇÃO
========================= */

.contact-form .is-valid {
  border-color: #28a745 !important;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.15);
}

.contact-form .is-invalid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
  animation: shake 0.25s ease;
}

/* Animação leve ao errar */
@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  50% { transform: translateX(3px); }
  75% { transform: translateX(-2px); }
  100% { transform: translateX(0); }
}

/* Mensagem de erro */
.contact-form .invalid-feedback {
  font-size: 0.8rem;
  margin-top: 6px;
  color: #dc3545;
}

/* =========================
   FEEDBACK GERAL
========================= */

#formFeedback {
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 24px;
  transition: 0.3s ease;
}

/* =========================
   BOTÃO
========================= */

.contact-form .btn-primary {
  background: linear-gradient(135deg, #1c2e59, #000);
  border: none;
  border-radius: 50px;
  padding: 15px 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

/* Hover */
.contact-form .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(13, 202, 240, 0.35);
}

/* Active */
.contact-form .btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(13, 202, 240, 0.25);
}

/* Disabled */
.contact-form .btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}


















/* Footer SaaS Profissional */
.footer {
    background: linear-gradient(135deg, #1c2e59, #000); /* tom escuro moderno */
    color: #f1f1f1;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.footer a {
    color: #f1f1f1;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #0dcaf0; /* destaque estilo SaaS */
    text-decoration: none;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.2);
}

.footer .fab {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.footer .fab:hover {
    transform: translateY(-2px);
    color: #0dcaf0;
}

/* Container de ícones sociais */
.social-icons {
    justify-content: center; /* centraliza os ícones */
    flex-wrap: wrap;
}

/* Estilo dos links */
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #1c2e59; /* fundo escuro SaaS */
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Imagem dentro do círculo */
.social-icon img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

/* Hover */
.social-icon:hover {
    background-color: #fff; /* cor destaque SaaS */
    transform: translateY(-3px);
}

.social-icon:hover img {
    transform: scale(1.1);
}









/* Supondo que o header tenha 80px de altura */
#solucoes, #servicos {
    scroll-margin-top: 80px; /* ajusta o ponto de scroll */
}

#mvtech {
    scroll-margin-top: 20px; /* ajusta o ponto de scroll */
}

#contato {
    scroll-margin-top: 40px; /* ajusta o ponto de scroll */
}

/* Para smooth scroll */
html {
    scroll-behavior: smooth;
}