/* ============================================================
   PRESENÇA DIGITAL - AZUL
   ============================================================ */

@font-face {
    font-family: 'Telegraf';
    src: url('../fonts/TelegrafRegular_272984568a25d8528fe2de8b20b29011.woff2') format('woff2'), url('../fonts/TelegrafRegular_272984568a25d8528fe2de8b20b29011.otf') format('opentype');
    font-display: swap;
}

@font-face {
    font-family: 'Ultra Telegraf';
    src: url('../fonts/Telegraf UltraBold 800.woff2') format('woff2'), url('../fonts/Telegraf UltraBold 800.otf') format('opentype');
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: 'Neulis Sans';
    src: url('../fonts/fonnts.com-Neulis_Sans_Regular.woff2') format('woff2'), url('../fonts/fonnts.com-Neulis_Sans_Regular.otf') format('opentype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Neulis Sans';
    src: url('../fonts/fonnts.com-Neulis_Sans_Medium.woff2') format('woff2'), url('../fonts/fonnts.com-Neulis_Sans_Medium.otf') format('opentype');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Neulis Sans';
    src: url('../fonts/fonnts.com-Neulis_Sans_Bold.woff2') format('woff2'), url('../fonts/fonnts.com-Neulis_Sans_Bold.otf') format('opentype');
    font-weight: 700;
    font-display: swap;
}

:root {
  --primary: #B92700;
  --orange: #A40000;
  --primary-soft: rgba(255, 9, 1, 0.15);
  --yellow: #FF0901;
  --bg: #FAFAFA;
  --card-bg: #FFFFFF;
  --text-dark: #1f1f1f;
  --text-muted: #4a4a4a;
  --white-soft: rgba(255, 255, 255, 0.92);
  --white-soft-hover: rgba(255, 255, 255, 0.98);
  --roxo: #7C3AED;
  --red: #A40000;
  --red-light: #FF0901;
  --other-red: #B92700;
  --green-light: #06A576;
  --green: #017369;
  --green-dark: #003840;

  --blue-light2: #2D34EB;
  --blue-light: #3F43B1;
  --blue: #2429A7;
  --blue-dark: #2D2F77;
  --white: #FFFFFF;
  --black: #1f1f1f;


}

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

html, body {
  overflow-x: hidden;
}

body {
  background: var(--bg);
  font-family: 'Neulis Sans', Arial, sans-serif;
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== LAYOUT BASE ===== */
.gestao-page, main {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overflow-y: visible;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(90deg, #1D2186 1%, #9B9CB6 100%);
  border-top-left-radius: 60px; 
  border-bottom-right-radius: 80px;
  min-height: 320px; 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box; 
  margin: 20px auto 0; 
  max-width: calc(100% - 48px);
}

.site-nav {
  position: relative;
  z-index: 100;
  background: transparent;
  width: 100%;
}

.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(16px, 2.2vw, 36px);
  width: 100%;
  padding: 24px 40px 0px;
  box-sizing: border-box;
}

.hero-content {
  padding: 40px 40px 48px;
}

.hero h1 {
  font-family: 'Ultra Telegraf', sans-serif;
  color: #fff;
  font-size: clamp(38px, 4.2vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  margin-top: 16px;
  max-width: 900px;
  letter-spacing: -0.01em;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 24px);
}

.nav-group.left  { justify-content: flex-start; }
.nav-group.right { justify-content: flex-end; }

.nav-item { position: relative; }

.nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  
  /* Ajustado o clamp para ordem correta (mínimo: 220px, máximo: 240px) */
  min-width: clamp(220px, 12vw, 240px);
  height: 50px;
  padding: 0 36px;
  
  border-radius: 999px;
  
  /* Fundo e opacidade mantidos */
  background: var(--bg);
  border: 2px solid #FFFFFF;
  opacity: 0.50;
  
  /* cor do texto */
  color: var(--blue, #3F43B1);
  font-family: 'Neulis Sans';
  
  text-decoration: none;
  font-size: clamp(20px, 1vw, 18px);
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box;
  cursor: pointer;
  
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease, opacity 0.25s ease;
}

.nav-pill:hover {
  /* No hover o fundo preenche levemente de branco e o texto ganha destaque */
  background: rgba(255, 255, 255, 0.2);
  border-color: #FFFFFF;
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  height: clamp(150px, 5vw, 100px);
  width: auto;
  object-fit: contain;
  shape-rendering: geometricPrecision;
  image-rendering: -webkit-optimize-contrast;
}

/* ===== DROPDOWN DESKTOP ===== */
.has-dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 280px;
  background: var(--blue, #3F43B1);
  border-radius: 0 16px 16px 16px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 20;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  color: #191818;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  padding: 4px 0;
  transition: opacity 0.15s ease;
}

.dropdown-menu a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
  opacity: 0.92;
}

/* Seletor composto de propósito: `.has-dropdown .dropdown-menu` (0,2,0) define
   left:0 e vencia o left:auto daqui (0,1,0). O menu do Blog abria para a
   direita e 130px dele ficavam fora da tela, cortados pelo overflow-x. */
.has-dropdown .dropdown-menu.dropdown-right {
  left: auto;
  right: 0;
  border-radius: 16px 0 16px 16px;
}

/* ===== CONTAINER DOS CARDS (GRID 2 COLUNAS) ===== */
.services-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Força 50% para cada card */
  gap: 32px; /* Espaço controlado entre o card da esquerda e da direita */
  
  width: 100%;
  max-width: calc(100% - 48px); /* Mesma largura do .hero, para alinhar as bordas */
  
  margin: 36px auto 60px;
  box-sizing: border-box;
}

/* ===== CARDS DE SERVIÇO ===== */
.service-card {
  width: 100% !important;
  max-width: none !important; /* Remove qualquer trava de largura nos cards */
  
  border: 2px solid var(--blue-light, #3F43B1);
  border-radius: 22px 22px 22px 0;
  background: var(--card-bg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.service-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: flex-start;
  min-width: 0;
}

.service-content h2 {
  font-family: 'Ultra Telegraf';
  font-size: clamp(28px, 2.5vw, 40px);
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--blue-light, #3F43B1);
  font-weight: 800;
  letter-spacing: -0.01em;
  word-wrap: break-word;
}

.service-content p {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.6;
  margin-bottom: 28px;
  color: var(--text-muted);
}

/* ===== BOTÃO INICIAR PROJETO ===== */
.btn {
  /* Tamanho e alinhamento à esquerda */
  align-self: flex-start !important;
  width: fit-content !important;
  max-width: max-content;
  
  /* Centralização do texto */
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center;
  line-height: 1;
  
  /* Elevação do texto: 6px na parte inferior empurram o texto para cima */
  padding: 0 18px 2px 18px !important;
  
  /* Estilização visual */
  text-decoration: none;
  background-color: var(--blue-light, #3F43B1);
  color: #FFFFFF !important;
  font-family: 'Telegraf', sans-serif;
  height: 38px;
  
  /* Cantos pontudos (Superior Direito e Inferior Esquerdo) */
  border-top-left-radius: 12px !important;
  border-top-right-radius: 0px !important;    /* Pontudo */
  border-bottom-right-radius: 12px !important;
  border-bottom-left-radius: 0px !important;   /* Pontudo */
  
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: none;
  margin-top: auto;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  background-color: var(--blue, #3F43B1) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

/* ==============================================
    SEÇÃO DE CARDS "POR QUE INICIAR PROJETO"
  =============================================== */
:root {
  --primary-orange: #FF0901;
  --other-red: #B92700;
  --green: #017369;
  --blue: #3F43B1;
  --text-dark: #222222;
  --bg-card: #FAFAFA;
  --shadow-color: rgba(0, 0, 0, 0.12);
}

.why-project {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Telegraf', 'Neulis Sans';
}

.why-project__title {
  text-align: center;
  color: var(--blue, #3F43B1);
  font-size: 2.25rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 3rem;
}

.why-project__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  align-items: stretch;
}

.card {
  background-color: var(--bg-card);
  border-radius: 28px;
  padding: 2.5rem 2rem;
  box-shadow: 0 12px 30px var(--shadow-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

.card__title {
  color: var(--blue, #3F43B1);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.card__text {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 500;
}

.card__button {
  display: inline-block;
  background-color: var(--blue, #3F43B1);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.7rem 1.1rem;
  border-radius: 6px;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.card__button:hover {
  background-color: var(--blue, #3F43B1);
}

/* Otimização para Celular e Tablet */
@media (max-width: 900px) {
  .why-project {
    padding: 2.5rem 1rem;
  }

  .why-project__title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .why-project__grid {
    grid-template-columns: 1fr; /* Empilha os cards no celular */
    gap: 1.5rem;
  }

  .card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }
}

/*=========================
    Banner
==========================*/
.Cta-banner {
    background-color: var(--blue-dark, #2D2F77);
    border-radius: 0 80px 0 0;  /* Curva exclusiva no canto superior direito */
    padding: 3.5rem 4rem;
    width: 100%;
    margin: 2rem auto;
    box-sizing: border-box;
}

.Cta-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.Cta-title {
    font-family: 'Ultra Telegraf';
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.15;
    margin: 0;
    max-width: 650px;
}

.Cta-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.Cta-description {
    font-family: 'Neulis Sans';
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: #FFFFFF;
    line-height: 1.4;
    margin: 0;
    max-width: 480px;
}

.Cta-button {
    font-family: 'Neulis Sans';
    font-size: 1rem;
    font-weight: 600;
    color: var(--blue-dark, #2D2F77);
    background-color: #FFFFFF;
    padding: 0.85rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    flex-shrink: 0;
}

.Cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0.95;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .Cta-banner {
        border-radius: 0 40px 0 0;
        padding: 2.5rem 2rem;
    }

    .Cta-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .Cta-button {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}

/* ===== MENU HAMBURGUER & MOBILE MENU ===== */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  justify-self: end;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #191818;
  border-radius: 999px;
  transition: 0.25s ease;
}

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

.mobile-menu {
  display: none;
  padding: 0 28px 16px;
  background: rgba(164, 0, 0, 0.92);
  backdrop-filter: blur(6px);
}

.mobile-menu.active { display: block; }

.mobile-item,
.mobile-menu > a {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.mobile-menu > a:last-child,
.mobile-item:last-child {
  border-bottom: none;
}

.mobile-link {
  width: 100%;
  background: none;
  border: none;
  color: #191818;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.mobile-submenu {
  display: none;
  padding: 0 0 10px 14px;
}

.mobile-submenu a {
  display: block;
  color: rgba(25, 24, 24, 0.95);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  padding: 7px 0;
}

.mobile-item.active .mobile-submenu { display: block; }

/* ────────────────────────────────────────
   CASES
   ──────────────────────────────────────── */
.Cases-section-title {
    font-family: 'Ultra Telegraf';
    font-size: 2.8rem;
    color: var(--black);
    text-align: center;
    padding: 3rem 0 0;
    background: var(--bg);
}

.Cases-carousel {
    display: flex;
    align-items: center;
    padding: 3rem 0;
    overflow: hidden;
    background-color: var(--bg);
}

@keyframes ticker {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}

.Cases-track {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    animation: ticker 30s linear infinite;
}

.Cases-track img {
    width: 160px;
    height: 140px;
    object-fit: contain;
    flex-shrink: 0;
    padding: 0 1em;
}

#Smaller {
    width: 120px;
    height: 100px;
}


/* Regra de animação contínua */
@keyframes ticker {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}

/* Container do carrossel */
.Cases-carousel {
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
}

/* Trilha em movimento contínuo */
.Cases-track {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    animation: ticker 30s linear infinite;
}


/*============================================
    FEEDBACKS
=============================================*/
.Feedbacks {
    background: var(--bg);
    padding: 5rem clamp(1rem, 4vw, 3rem) 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    overflow: hidden;
}

.Feedbacks-title {
    font-family: 'Ultra Telegraf';
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--black);
    text-align: center;
}

.Feedbacks-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    position: relative;
}

.Feedbacks-track {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 480px;
}

.Feedback-card {
    position: absolute;
    width: 400px;
    height: 480px;
    background: var(--blue, #3F43B1);
    border-radius: 16px 0 16px 0;
    padding: 1.8rem 1.8rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    color: var(--bg);
    transition:
        transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
        opacity   0.55s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.55s ease;
    cursor: pointer;
    user-select: none;
    will-change: transform, opacity;
}

.Feedback-card:nth-child(even) {
    background: var(--blue-light2, #2D34EB);
}
 
.Feedback-card[data-pos="center"] {
    transform: translateX(0) scale(1);
    z-index: 10;
    opacity: 1;
    box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}

.Feedback-card[data-pos="left"] {
    transform: translateX(-72%) scale(0.84);
    z-index: 5;
    opacity: 1;
    box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}

.Feedback-card[data-pos="right"] {
    transform: translateX(72%) scale(0.84);
    z-index: 5;
    opacity: 1;
    box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}

.Feedback-card[data-pos="far-left"],
.Feedback-card[data-pos="far-right"] {
    transform: translateX(0) scale(0.65);
    z-index: 1;
    opacity: 1;
    pointer-events: none;
}

.Feedback-quote {
    font-size: 3.5rem;
    line-height: 0.6;
    color: var(--white);
    font-family: 'Neulis Sans';
    font-weight: 900;
}

.Feedback-text {
    font-family: 'Neulis Sans';
    font-size: 1rem;
    line-height: 1.65;
    color: var(--bg);
    flex: 1;
    word-break: break-word;
    overflow-wrap: break-word;
    
    /* Scroll automático apenas por precaução. 
       Se um dia entrar um texto gigante, ele rola dentro do card 
       em vez de quebrar o layout! */
    overflow-y: auto; 
}


.Feedback-card::after {
    content: '"';
    font-size: 3.5rem;
    line-height: 1;
    margin-top: 2%;
    color: var(--white);
    font-family: 'Neulis Sans';
    font-weight: 900;
    align-self: flex-end;
}

.Feedback-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.4rem;
}

.Feedback-author {
    display: flex;
    align-items: stretch;
    gap: 0.75rem;
}

.Feedback-bar {
    width: 3px;
    background: var(--white);
    border-radius: 2px;
    flex-shrink: 0;
}

.Feedback-author-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.Feedback-name {
    font-size: 0.95rem;
    color: var(--white);
    opacity: 0.9;
}

.Feedback-company {
    font-family: 'Neulis Sans';
    font-size: 1rem;
    color: var(--white);
}

.Feedback-logo {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 1);
    border-radius: 6px;
    flex-shrink: 0;
}

.Feedback-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.Feedback-nav {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 20;
    transition: transform 0.2s ease;
}

.Feedback-nav:hover { transform: scale(1.2); }

.Feedback-nav img { width: 4em; filter: invert(0); }

.nav-arrow-left  { transform: rotate(180deg); }
.nav-arrow-right { transform: rotate(0deg); }

.Feedbacks-track {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 440px;
}

.Feedback-dots {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.Feedback-dot {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Neulis Sans';
    font-size: 1.4rem;
    color: #ccc;
    line-height: 1;
    padding: 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.Feedback-dot.active {
    color: var(--blue, #3F43B1);
    transform: scale(1.3);
}

.footer-logo {
    display: block;
    height: auto;
    max-height: 64px;
    object-fit: contain;
}

/*============================================================
   SEÇÃO DE CONTATO
  ============================================================*/
:root {
  --green: #017369;
  --brand-green: #08A07A;  /* Verde do botão */
  --bg-color: #FAFAFA;
}

.contact-section {
  width: 100%;
  padding: 2rem 1rem;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.contact-card {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--bg-color);
  border: 3px solid var(--blue, #3F43B1);
  border-radius: 24px;
  padding: 3rem;
  
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* --- Coluna da Esquerda (Textos) --- */
.contact-card__info {
  flex: 1;
}

.contact-title {
  color: var(--blue, #3F43B1);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.contact-description {
  color: var(--blue, #3F43B1);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--blue, #3F43B1);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-link .icon {
  width: 20px;
  height: 20px;
}

/* --- Coluna da Direita (Botões) --- */
.contact-card__actions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 280px;
  align-items: stretch;
}

/* Força os botões DESTA SEÇÃO a terem 100% de largura e cantos padrão */
.contact-card__actions .btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: 100% !important;
  align-self: stretch !important;
  height: auto !important;
  padding: 1rem 1.5rem !important;
  border-radius: 6px !important; /* Restaura os cantos arredondados uniformes */
  box-sizing: border-box !important;
  text-align: center;
  text-decoration: none;
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 1rem;
  transition: filter 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.btn--blue {
  background-color: var(--blue-light, #3F43B1);
}

.btn--green {
  background-color: var(--brand-green);
}

.btn--blue:hover {
  background-color: var(--blue-light, #5A67D8) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

.btn--green:hover {
  background-color: #068263 !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

/* --- Otimização para Celulares e Tablets --- */
@media (max-width: 768px) {
  .contact-card {
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 2rem;
  }
  
  .contact-title {
    font-size: 1.8rem;
  }
  
  .contact-card__actions {
    width: 100%;
    min-width: auto;
  }
}


/* ============================================================
   RESPONSIVIDADE
   ============================================================ */

@media (max-width: 1200px) {
  .nav-pill {
    min-width: 130px;
    height: 46px;
    padding: 0 22px;
    font-size: 15px;
  }
  .logo img { height: 90px; }
}

@media (max-width: 1024px) {
  .topbar {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 12px 22px 12px 0;
  }

 .desktop-nav { 
  display: none !important; 
}

.logo { 
  display: flex;
  justify-content: flex-start; 
  align-items: center;
  margin-left: 0;
  padding-left: 0;
}

.logo img { 
  height: 90px; 
  margin-left: 0;
  display: block;
}

.menu-toggle { 
  display: inline-flex; 
}

  .hero {
    min-height: 140px;
    padding: 20px 22px 26px;
  }
}

/* TELAS MÓVEIS (UM CARD ACIMA DO OUTRO) */
@media (max-width: 768px) {
  .hero {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    border-top-left-radius: 0px !important;
    border-bottom-right-radius: 40px !important;
    border-bottom-left-radius: 0px !important;
  }

  .topbar { padding: 16px 20px 0px !important; }
  .hero-content { padding: 40px 20px 32px !important; }

  .services-container {
    grid-template-columns: 1fr; /* Força 1 coluna no celular */
    max-width: 100%;
    padding: 0 20px;
    gap: 20px;
    margin-top: 24px;
  }

  .service-card {
    padding: 24px 20px;
    min-height: auto;
  }

  .service-content h2 { font-size: 26px; }
  .service-content p { font-size: 15px; }

  .Sn-cases-logos img {
    width: 100%;
  }
}