/* ============================================
   CENTRO DE TI - CSS ESPECÍFICO
   ============================================ */

/* ============================================
   VARIÁVEIS CSS
   ============================================ */
:root {
  --primary-color: #2A7DE1;
  --secondary-color: #6bdad5;
  --dark-bg: #0F2C3E;
  --darker-bg: #000F18;
  --darkest-bg: #080D16;
  --text-white: #FFFFFF;
  --text-light: rgba(255, 255, 255, 0.80);
  --border-color: rgba(42, 125, 225, 0.20);
  --font-family: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --container-max-width: 1250px;
  --container-sized: 600px;
  --spacing-xs: 10px;
  --spacing-sm: 15px;
  --spacing-md: 20px;
  --spacing-lg: 40px;
  --spacing-xl: 60px;
  --spacing-xxl: 80px;
  --border-radius: 10px;
  --border-radius-lg: 15px;
  --transition: all 0.3s ease;
  --hoverBg: rgba(22, 112, 202, 0.20);
  --hoverColor: #FFFFFF;
}

/* ============================================
   CONTAINER
   ============================================ */
.container.sized {
  max-width: 1250px;
}

/* ============================================
   HERO SECTION - CENTRO DE TI
   ============================================ */
.centro-ti-hero-section {
  background: var(--darker-bg);
  min-height: 50vh;
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  z-index: 0;
}

.centro-ti-hero-section .container.sized {
  margin-top: 385px;
  margin-bottom: 200px;
  margin-left: auto;
  margin-right: auto;
}

.centro-ti-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../../uploads/Image-2.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 1;
  z-index: 0;
}

.centro-ti-hero-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 684px;
  margin-left: 0;
}

.centro-ti-hero-text-content {
  margin-bottom: var(--spacing-lg);
}

.centro-ti-hero-text-content h1 {
  margin-bottom: var(--spacing-md);
  font-family: var(--font-family);
  font-size: 56px;
  line-height: 61.6px;
  font-weight: 700;
  letter-spacing: normal;
  color: var(--text-white);
}

.centro-ti-hero-text-content p {
  margin-bottom: 0;
  font-family: var(--font-family);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: normal;
  color: var(--text-white);
}

.centro-ti-hero-button {
  margin-top: var(--spacing-lg);
}

/* ============================================
   BOTÃO CENTRO DE TI
   ============================================ */
.btn-centro-ti {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
  color: #FFFFFF;
  background: linear-gradient(90deg, #10b7ff, #8244ff, #ff28f2);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  text-align: left;
  position: relative;
  isolation: isolate;
}

.btn-centro-ti::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--border-radius);
  padding: 1px;
  background: linear-gradient(90deg, #10b7ff, #8244ff, #ff28f2);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.btn-centro-ti:hover {
  background: rgba(22, 112, 202, 0.20);
  color: var(--hoverColor);
  transform: translateY(-2px);
}

.btn-centro-ti:hover::before {
  opacity: 1;
}

.btn-centro-ti:active {
  transform: translateY(0);
}

/* ============================================
   MODAL WHATSAPP - CENTRO DE TI
   ============================================ */
.whatsapp-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}

.whatsapp-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.whatsapp-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.whatsapp-modal-content {
  position: relative;
  z-index: 2;
  background: var(--darkest-bg) url('../../uploads/Group-6-17.png') no-repeat center;
  background-size: cover;
  border-radius: var(--border-radius-lg);
  padding: 20px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.whatsapp-modal.active .whatsapp-modal-content {
  transform: scale(1);
}

.whatsapp-modal-close {
  position: absolute;
  top: 5px;
  right: 5px;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
  z-index: 10;
}

.whatsapp-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.whatsapp-modal-title {
  font-family: var(--font-family);
  font-size: 40px;
  line-height: 44px;
  font-weight: 700;
  color: var(--text-white);
  margin: 0 0 var(--spacing-sm) 0;
  text-align: center;
}

.whatsapp-modal-subtitle {
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 27px;
  color: var(--text-light);
  margin-bottom: 15px;
  text-align: center;
}

.whatsapp-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.whatsapp-form-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.whatsapp-form-group label {
  font-family: var(--font-family);
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: var(--text-white);
}

.whatsapp-form-group input,
.whatsapp-form-group select {
  padding: 12px 15px;
  background: var(--darker-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  color: var(--text-white);
  font-size: 20px;
  line-height: 30px;
  font-family: var(--font-family);
  transition: var(--transition);
}

.whatsapp-form-group input:focus,
.whatsapp-form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(42, 125, 225, 0.1);
}

.whatsapp-form-group input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  line-height: 30px;
}

.whatsapp-submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  background: linear-gradient(90deg, #10b7ff, #8244ff, #ff28f2);
  color: var(--text-white);
  border: none;
  border-radius: var(--border-radius);
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-family);
  margin-top: var(--spacing-sm);
  position: relative;
  isolation: isolate;
}

.whatsapp-submit-button::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--border-radius);
  padding: 1px;
  background: linear-gradient(90deg, #10b7ff, #8244ff, #ff28f2);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.whatsapp-submit-button:hover::before {
  opacity: 1;
}

.whatsapp-submit-button:disabled {
  background: rgba(22, 112, 202, 0.10);
  cursor: not-allowed;
  opacity: 0.6;
}

.whatsapp-submit-button:not(:disabled):hover {
  background: rgba(22, 112, 202, 0.20);
  color: var(--hoverColor);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(16, 183, 255, 0.3);
}

.whatsapp-submit-button svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ============================================
   SEÇÃO TERCEIRIZAR TI
   ============================================ */
.terceirizar-section {
  position: relative;
  padding: var(--spacing-xxl) 0;
  overflow: hidden;
}

.terceirizar-section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../../uploads/Group-6-14.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 0;
}

.terceirizar-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Coluna Esquerda: Imagem */
.terceirizar-image-column {
  position: relative;
}

.terceirizar-image-wrapper {
  width: 404px;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto;
}

.terceirizar-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Coluna Direita: Conteúdo */
.terceirizar-text-column {
  display: flex;
  flex-direction: column;
}

/* Badge 2 - Com border gradient */
.section-badge-2 {
  display: inline-flex;
  padding: 5px 15px;
  background: rgba(22, 112, 202, 0.20);
  border-radius: var(--border-radius);
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: var(--spacing-md);
  text-align: left;
  align-self: flex-start;
  position: relative;
}

.section-badge-2::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--border-radius);
  padding: 1px;
  background: linear-gradient(90deg, #10b7ff, #8244ff, #ff28f2);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
}

/* Título com Gradiente */
.terceirizar-title {
  font-family: var(--font-family);
  font-size: 40px;
  line-height: 44px;
  font-weight: 700;
  margin: 0 0 15px 0;
  background: linear-gradient(90deg, #10b7ff, #8244ff, #ff28f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.terceirizar-description {
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 27px;
  color: var(--text-white);
  margin: 0 0 var(--spacing-lg) 0;
}

.terceirizar-button {
  margin-top: 0;
}

/* ============================================
   SEÇÃO BENEFÍCIOS
   ============================================ */
.beneficios-section {
  background: #0c161e;
  position: relative;
  padding: var(--spacing-xxl) 0;
  overflow: visible;
}

.beneficios-section-bg {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: calc(100% + 80px);
  background-image: url('../../uploads/Group-6-3.webp');
  background-repeat: no-repeat;
  background-position: top;
  z-index: 0;
}

.beneficios-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Coluna Esquerda: Conteúdo */
.beneficios-text-column {
  display: flex;
  flex-direction: column;
}

.beneficios-title {
  font-family: var(--font-family);
  font-size: 40px;
  line-height: 44px;
  font-weight: 700;
  margin: 0 0 15px 0;
  background: linear-gradient(90deg, #10b7ff, #8244ff, #ff28f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.beneficios-description {
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 27px;
  color: var(--text-white);
  margin: 0 0 var(--spacing-lg) 0;
}

.beneficios-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

.beneficio-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.beneficio-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.beneficio-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.beneficio-text {
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 19.8px;
  font-weight: 600;
  color: var(--text-white);
  margin: 0;
}

.beneficio-span {
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 21px;
  color: var(--text-light);
}

.beneficio-item.especial {
  align-items: center;
  text-align: center;
}

.beneficio-item.especial .beneficio-content {
  align-items: center;
}

.beneficio-text.especial {
  font-size: 40px;
  line-height: 44px;
  text-align: center;
}

.beneficio-item.especial .beneficio-span {
  text-align: center;
  font-size: 18px;
  line-height: 27px;
}

.beneficios-button {
  margin-top: var(--spacing-lg);
}

/* Coluna Direita: Imagem */
.beneficios-image-column {
  position: relative;
}

.beneficios-image-wrapper {
  width: 355px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
}

.beneficios-image {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   SEÇÃO SOLUÇÕES
   ============================================ */
.solucoes-section {
  position: relative;
  background: #000F18;
  padding: var(--spacing-xxl) 0;
}

.solucoes-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.solucoes-section .section-badge-2 {
  align-self: center;
  text-align: center;
}

.solucoes-title {
  font-family: var(--font-family);
  font-size: 40px;
  line-height: 44px;
  font-weight: 700;
  margin: 0 0 15px 0;
  background: linear-gradient(90deg, #10b7ff, #8244ff, #ff28f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.solucoes-description {
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 27px;
  color: rgba(255, 255, 255, 0.80);
  margin: 0 0 40px 0;
  text-align: center;
}

.solucoes-blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  margin-bottom: 40px;
  width: 100%;
}

.solucoes-block {
  background: #0D1722;
  border-radius: 10px;
  padding: 0px 20px;
  position: relative;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  height: fit-content;
}

.solucoes-block::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 10px;
  padding: 1px;
  background: linear-gradient(90deg, #10b7ff, #8244ff, #ff28f2);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
}

.solucoes-block-text {
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
  color: var(--text-white);
  margin: 0 0 10px 0;
  text-align: center;
}

.solucoes-block-span {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.80);
  display: block;
  text-align: center;
}

.solucoes-button {
  margin-top: var(--spacing-lg);
}

/* ============================================
   SEÇÃO CONFIANÇA
   ============================================ */
.confianca-section {
  position: relative;
  padding: var(--spacing-xxl) 0;
  overflow: hidden;
}

.confianca-section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../../uploads/Group-6-17.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 0;
}

.confianca-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.confianca-section .section-badge-2 {
  align-self: center;
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.confianca-title {
  font-family: var(--font-family);
  font-size: 40px;
  line-height: 44px;
  font-weight: 700;
  margin: 0 0 15px 0;
  background: linear-gradient(90deg, #10b7ff, #8244ff, #ff28f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.confianca-description {
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 27px;
  color: rgba(255, 255, 255, 0.80);
  margin: 0 0 35px 0;
  text-align: center;
}

.confianca-marquee-wrapper {
  width: 100vw;
  overflow: hidden;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.confianca-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.confianca-marquee-track {
  display: flex;
  align-items: center;
  gap: 100px;
  animation: confianca-scroll 30s linear infinite;
  will-change: transform;
  width: fit-content;
}

.confianca-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* Remove gap extra entre os conjuntos duplicados */
.confianca-marquee-track .confianca-logo:nth-child(12),
.confianca-marquee-track .confianca-logo:nth-child(23) {
  margin-left: -100px;
}

@keyframes confianca-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}

/* ============================================
   SEÇÃO CTA
   ============================================ */
.cta-section {
  position: relative;
  padding: var(--spacing-xxl) 0;
  overflow: visible;
}

.cta-section-bg {
  position: absolute;
  top: -35px;
  left: 0;
  width: 100%;
  height: calc(100% + 80px);
  background-image: url('../../uploads/Group-6-16.png');
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  z-index: 0;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content-wrapper {
  background: #ffffff;
  padding: 80px;
  border-radius: var(--border-radius-lg);
  width: 100%;
}

.cta-title {
  font-family: var(--font-family);
  font-size: 40px;
  line-height: 44px;
  font-weight: 700;
  margin: 0 0 15px 0;
  background: linear-gradient(90deg, #10b7ff, #8244ff, #ff28f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.cta-description {
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 27px;
  color: #131E29;
  margin: 0 0 36px 0;
  text-align: center;
}

.cta-content .btn-centro-ti {
  margin-top: 0;
}

/* ============================================
   RESPONSIVE - TABLET (768px - 1199px)
   ============================================ */
@media (max-width: 1199px) and (min-width: 768px) {
  /* Container */
  .container.sized {
    max-width: 100%;
    padding: 0 var(--spacing-md);
    margin-bottom: 50px;
  }

  /* Hero Section */
  .centro-ti-hero-section .container.sized {
    margin-top: 120px;
    margin-bottom: 150px;
  }

  .centro-ti-hero-text-content h1 {
    font-size: 48px;
    line-height: 52.8px;
  }

  .centro-ti-hero-text-content p {
    font-size: 18px;
    line-height: 27px;
  }

  /* Seção Terceirizar */
  .terceirizar-section {
    padding: var(--spacing-xl) 0;
  }

  .terceirizar-content {
    gap: var(--spacing-lg);
  }

  .terceirizar-image-wrapper {
    width: 100%;
    max-width: 404px;
  }

  .terceirizar-image-wrapper {
    border-radius: 15px;
  }

  .terceirizar-title {
    font-size: 36px;
    line-height: 40px;
  }

  .terceirizar-description {
    font-size: 17px;
    line-height: 25.5px;
  }

  /* Seção Benefícios */
  .beneficios-section {
    padding: var(--spacing-xl) 0;
  }

  .beneficios-content {
    gap: var(--spacing-lg);
  }

  .beneficios-image-wrapper {
    width: 100%;
    max-width: 355px;
    border-radius: 15px;
  }

  .beneficios-title {
    font-size: 36px;
    line-height: 40px;
  }

  .beneficios-description {
    font-size: 17px;
    line-height: 25.5px;
  }

  .beneficio-text.especial {
    font-size: 36px;
    line-height: 40px;
  }

  /* Seção Soluções */
  .solucoes-section {
    padding: var(--spacing-xl) 0;
  }

  .solucoes-blocks {
    grid-template-columns: repeat(2, 1fr);
  }

  .solucoes-block {
    border-radius: 8px;
  }

  .solucoes-block::before {
    border-radius: 8px;
  }

  .solucoes-title {
    font-size: 36px;
    line-height: 40px;
  }

  .solucoes-description {
    font-size: 17px;
    line-height: 25.5px;
  }

  /* Seção Confiança */
  .confianca-section {
    padding: var(--spacing-xl) 0;
  }

  .confianca-title {
    font-size: 36px;
    line-height: 40px;
  }

  .confianca-description {
    font-size: 17px;
    line-height: 25.5px;
  }

  .confianca-marquee-track {
    gap: 80px;
  }

  .confianca-marquee-track .confianca-logo:nth-child(12),
  .confianca-marquee-track .confianca-logo:nth-child(23) {
    margin-left: -80px;
  }

  .confianca-logo {
    height: 50px;
  }

  /* Seção CTA */
  .cta-section {
    padding: var(--spacing-xl) 0;
  }

  .cta-content-wrapper {
    padding: 60px;
    border-radius: 12px;
  }

  .cta-title {
    font-size: 36px;
    line-height: 40px;
  }

  .cta-description {
    font-size: 17px;
    line-height: 25.5px;
  }

  /* Modal WhatsApp */
  .whatsapp-modal-content {
    border-radius: 12px;
  }

  .whatsapp-modal-title {
    font-size: 36px;
    line-height: 40px;
  }

  .whatsapp-modal-subtitle {
    font-size: 17px;
    line-height: 25.5px;
  }

  /* Badges */
  .section-badge-2 {
    border-radius: 8px;
  }

  .section-badge-2::before {
    border-radius: 8px;
  }
}

/* ============================================
   RESPONSIVE - MOBILE GRANDE (576px - 767px)
   ============================================ */
@media (max-width: 767px) and (min-width: 576px) {
  /* Container */
  .container.sized {
    max-width: 100%;
    padding: 0 var(--spacing-sm);
  }

  /* Hero Section */
  .centro-ti-hero-section .container.sized {
    margin-top: 80px;
    margin-bottom: 100px;
  }

  .centro-ti-hero-bg {
    opacity: 0.7;
  }

  .centro-ti-hero-content-wrapper {
    max-width: 100%;
  }

  .centro-ti-hero-text-content h1 {
    font-size: 36px;
    line-height: 40px;
    text-align: center;
  }

  .centro-ti-hero-text-content p {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }

  .centro-ti-hero-button {
    text-align: center;
  }

  .btn-centro-ti {
    padding: 14px 18px;
    font-size: 16px;
    line-height: 24px;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  /* Seção Terceirizar */
  .terceirizar-section {
    padding: var(--spacing-lg) 0;
  }

  .terceirizar-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .terceirizar-image-column {
    order: 1;
  }

  .terceirizar-text-column {
    order: 2;
    text-align: center;
  }

  .terceirizar-image-wrapper {
    width: 100%;
    max-width: 404px;
    border-radius: 15px;
  }

  .section-badge-2 {
    align-self: center;
    text-align: center;
    padding: 8px 16px;
    border-radius: 8px;
  }

  .section-badge-2::before {
    border-radius: 8px;
  }

  .terceirizar-title {
    font-size: 32px;
    line-height: 36px;
    text-align: center;
  }

  .terceirizar-description {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }

  .terceirizar-button {
    text-align: center;
  }

  /* Seção Benefícios */
  .beneficios-section {
    padding: var(--spacing-lg) 0;
  }

  .beneficios-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .beneficios-image-column {
    order: 1;
  }

  .beneficios-text-column {
    order: 2;
    text-align: center;
  }

  .beneficios-image-wrapper {
    width: 100%;
    max-width: 355px;
    border-radius: 15px;
  }

  .beneficios-title {
    font-size: 32px;
    line-height: 36px;
    text-align: center;
  }

  .beneficios-description {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }

  .beneficio-item {
    flex-direction: column;
    text-align: center;
  }

  .beneficio-item.especial {
    margin-top: var(--spacing-md);
  }

  .beneficio-text.especial {
    font-size: 32px;
    line-height: 36px;
  }

  .beneficios-button {
    text-align: center;
  }

  /* Seção Soluções */
  .solucoes-section {
    padding: var(--spacing-lg) 0;
  }

  .solucoes-blocks {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }

  .solucoes-block {
    border-radius: 8px;
    padding: 15px;
  }

  .solucoes-block::before {
    border-radius: 8px;
  }

  .solucoes-title {
    font-size: 32px;
    line-height: 36px;
  }

  .solucoes-description {
    font-size: 16px;
    line-height: 24px;
  }

  .solucoes-block-text {
    font-size: 16px;
    line-height: 24px;
  }

  .solucoes-block-span {
    font-size: 14px;
    line-height: 21px;
  }

  /* Seção Confiança */
  .confianca-section {
    padding: var(--spacing-lg) 0;
  }

  .confianca-title {
    font-size: 32px;
    line-height: 36px;
  }

  .confianca-description {
    font-size: 16px;
    line-height: 24px;
  }

  .confianca-marquee-track {
    gap: 60px;
  }

  .confianca-marquee-track .confianca-logo:nth-child(12),
  .confianca-marquee-track .confianca-logo:nth-child(23) {
    margin-left: -60px;
  }

  .confianca-logo {
    height: 45px;
  }

  /* Seção CTA */
  .cta-section {
    padding: var(--spacing-lg) 0;
  }

  .cta-content-wrapper {
    padding: 40px 20px;
    border-radius: 10px;
  }

  .cta-title {
    font-size: 32px;
    line-height: 36px;
  }

  .cta-description {
    font-size: 16px;
    line-height: 24px;
  }

  /* Modal WhatsApp */
  .whatsapp-modal-content {
    border-radius: 10px;
    padding: 18px;
  }

  .whatsapp-modal-title {
    font-size: 32px;
    line-height: 36px;
  }

  .whatsapp-modal-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .whatsapp-form-group label {
    font-size: 18px;
    line-height: 27px;
  }

  .whatsapp-form-group input,
  .whatsapp-form-group select {
    font-size: 18px;
    line-height: 27px;
    padding: 10px 15px;
  }

  .whatsapp-submit-button {
    font-size: 16px;
    line-height: 24px;
    padding: 10px 18px;
  }
}

/* ============================================
   RESPONSIVE - MOBILE PEQUENO (≤ 575px)
   ============================================ */
@media (max-width: 575px) {
  /* Container */
  .container.sized {
    max-width: 100%;
    padding: 0 var(--spacing-sm);
  }

  /* Hero Section */
  .centro-ti-hero-section .container.sized {
    margin-top: 130px;
    margin-bottom: 50px;
  }

  .centro-ti-hero-bg {
    opacity: 0.7;
  }

  .centro-ti-hero-content-wrapper {
    max-width: 100%;
  }

  .centro-ti-hero-text-content h1 {
    font-size: 32px;
    line-height: 36px;
    text-align: center;
  }

  .centro-ti-hero-text-content p {
    font-size: 14px;
    line-height: 22px;
    text-align: center;
  }

  .centro-ti-hero-button {
    text-align: center;
  }

  .btn-centro-ti {
    padding: 14px 18px;
    font-size: 16px;
    line-height: 24px;
    width: 100%;
    max-width: 100%;
    text-align: center;
    border-radius: 8px;
  }

  .btn-centro-ti::before {
    border-radius: 8px;
  }

  /* Seção Terceirizar */
  .terceirizar-section {
    padding: var(--spacing-md) 0;
  }

  .terceirizar-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .terceirizar-image-column {
    order: 1;
  }

  .terceirizar-text-column {
    order: 2;
    text-align: center;
  }

  .terceirizar-image-wrapper {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
  }

  .section-badge-2 {
    align-self: center;
    text-align: center;
    padding: 8px 16px;
    border-radius: 8px;
  }

  .section-badge-2::before {
    border-radius: 8px;
  }

  .terceirizar-title {
    font-size: 28px;
    line-height: 32px;
    text-align: center;
  }

  .terceirizar-description {
    font-size: 14px;
    line-height: 22px;
    text-align: center;
  }

  .terceirizar-button {
    text-align: center;
  }

  /* Seção Benefícios */
  .beneficios-section {
    padding: var(--spacing-md) 0;
  }

  .beneficios-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .beneficios-image-column {
    order: 1;
  }

  .beneficios-text-column {
    order: 2;
    text-align: center;
  }

  .beneficios-image-wrapper {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
  }

  .beneficios-title {
    font-size: 28px;
    line-height: 32px;
    text-align: center;
  }

  .beneficios-description {
    font-size: 14px;
    line-height: 22px;
    text-align: center;
  }

  .beneficio-item {
    flex-direction: column;
    text-align: center;
  }

  .beneficio-item.especial {
    margin-top: var(--spacing-md);
  }

  .beneficio-text.especial {
    font-size: 28px;
    line-height: 32px;
  }

  .beneficio-item.especial .beneficio-span {
    font-size: 16px;
    line-height: 24px;
  }

  .beneficios-button {
    text-align: center;
  }

  /* Seção Soluções */
  .solucoes-section {
    padding: var(--spacing-md) 0;
  }

  .solucoes-blocks {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .solucoes-block {
    border-radius: 8px;
    padding: 15px;
  }

  .solucoes-block::before {
    border-radius: 8px;
  }

  .solucoes-title {
    font-size: 28px;
    line-height: 32px;
  }

  .solucoes-description {
    font-size: 14px;
    line-height: 22px;
  }

  .solucoes-block-text {
    font-size: 16px;
    line-height: 24px;
  }

  .solucoes-block-span {
    font-size: 14px;
    line-height: 21px;
  }

  /* Seção Confiança */
  .confianca-section {
    padding: var(--spacing-md) 0 60px;
  }

  .confianca-title {
    font-size: 28px;
    line-height: 32px;
  }

  .confianca-description {
    font-size: 14px;
    line-height: 22px;
  }

  .confianca-marquee-track {
    gap: 40px;
  }

  .confianca-marquee-track .confianca-logo:nth-child(12),
  .confianca-marquee-track .confianca-logo:nth-child(23) {
    margin-left: -40px;
  }

  .confianca-logo {
    height: 40px;
  }

  /* Seção CTA */
  .cta-section {
    padding: var(--spacing-md);
  }

  .cta-content-wrapper {
    padding: 30px 15px;
    border-radius: 8px;
  }

  .cta-title {
    font-size: 28px;
    line-height: 32px;
  }

  .cta-description {
    font-size: 14px;
    line-height: 22px;
  }

  /* Modal WhatsApp */
  .whatsapp-modal-content {
    border-radius: 8px;
    padding: 15px;
  }

  .whatsapp-modal-title {
    font-size: 28px;
    line-height: 32px;
  }

  .whatsapp-modal-subtitle {
    font-size: 14px;
    line-height: 22px;
  }

  .whatsapp-form-group label {
    font-size: 16px;
    line-height: 24px;
  }

  .whatsapp-form-group input,
  .whatsapp-form-group select {
    font-size: 16px;
    line-height: 24px;
    padding: 10px 12px;
    border-radius: 8px;
  }

  .whatsapp-form-group input::placeholder {
    font-size: 16px;
    line-height: 24px;
  }

  .whatsapp-submit-button {
    font-size: 16px;
    line-height: 24px;
    padding: 10px 18px;
    border-radius: 8px;
  }

  .whatsapp-submit-button::before {
    border-radius: 8px;
  }
}
