/**

/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Nunito",  sans-serif;
  --nav-font: "Inter",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #F4F4F4; /* Background color for the entire website, including individual sections */
  --default-color: #3d4348; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #3e5055; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #8A05BE; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #F4F4F4; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #F4F4F4; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #313336;  /* The default color of the main navmenu links */
  --nav-hover-color: #8A05BE; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #F4F4F4; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #F4F4F4; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #313336; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #8A05BE; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f8fbfc;
  --surface-color: #F4F4F4;
}

.dark-background {
  --background-color: #060606;
  --default-color: #F4F4F4;
  --heading-color: ##F4F4F4;
  --surface-color: #252525;
  --contrast-color: #F4F4F4;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}





















/* =========================================================
   MENU / HEADER
========================================================= */

.btn-hweb,
.btn-zap{
  -webkit-appearance:none;
  appearance:none;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  text-decoration:none;
  white-space:nowrap;

  line-height:1;

  transition:
    background .25s ease,
    color .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

/* =========================================================
   HEADER
========================================================= */

.header{
  position:fixed;

  top:18px;
  left:0;

  width:100%;

  padding:0 18px;

  z-index:1000;
}

/* =========================================================
   BLUR PREMIUM FORTE
========================================================= */

.header-blur{
  position:fixed;

  top:0;
  left:0;

  width:100%;
  height:125px;

  pointer-events:none;

  z-index:995;

  /* BLUR MAIS FORTE */
  backdrop-filter:blur(42px);
  -webkit-backdrop-filter:blur(42px);

  /* FORÇA MAIOR NO TOPO */
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.22) 0%,
      rgba(255,255,255,0.16) 24%,
      rgba(255,255,255,0.08) 52%,
      rgba(255,255,255,0.03) 76%,
      rgba(255,255,255,0) 100%
    );

  /* DISSIPAÇÃO SUAVE */
  mask-image:
    linear-gradient(
      to bottom,
      rgba(0,0,0,1) 0%,
      rgba(0,0,0,0.94) 30%,
      rgba(0,0,0,0.70) 58%,
      rgba(0,0,0,0.28) 82%,
      rgba(0,0,0,0) 100%
    );

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      rgba(0,0,0,1) 0%,
      rgba(0,0,0,0.94) 30%,
      rgba(0,0,0,0.70) 58%,
      rgba(0,0,0,0.28) 82%,
      rgba(0,0,0,0) 100%
    );
}

/* =========================================================
   CONTAINER
========================================================= */

.header-content{
  width:100%;
  max-width:1460px;

  margin:0 auto;

  height:76px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:0 18px 0 22px;

  border-radius:20px;

  background:rgba(255,255,255,0.72);

  backdrop-filter:blur(24px);
  -webkit-backdrop-filter:blur(24px);

  border:1px solid rgba(255,255,255,0.55);

  box-shadow:
    0 10px 30px rgba(15,23,42,0.08),
    0 2px 10px rgba(15,23,42,0.04);
}

/* =========================================================
   ESQUERDA
========================================================= */

.header-left{
  display:flex;
  align-items:center;
  gap:34px;

  min-width:0;
}

/* =========================================================
   LOGO
========================================================= */

.logo{
  display:flex;
  align-items:center;

  flex-shrink:0;
}

.logo img{
  display:block;

  height:34px;
  width:auto;
}

/* =========================================================
   NAV
========================================================= */

.navmenu{
  position:relative;

  display:flex;
  align-items:center;
}

.nav-items{
  display:flex;
  align-items:center;
  gap:4px;

  margin:0;
  padding:0;

  list-style:none;
}

.nav-items a{
  display:flex;
  align-items:center;
  justify-content:center;

  height:42px;

  padding:0 16px;

  border-radius:12px;

  text-decoration:none;

  color:#374151;

  font-size:15px;
  font-weight:500;

  transition:
    background .25s ease,
    color .25s ease;
}

.nav-items a:hover{
  color:#7a1db6;
  background:rgba(138,5,190,0.08);
}

/* =========================================================
   DIREITA
========================================================= */

.header-right{
  display:flex;
  align-items:center;
  gap:10px;

  flex-shrink:0;
}

/* =========================================================
   HOLERITE
========================================================= */

.btn-hweb{
  height:42px;

  padding:0 18px;

  border-radius:14px;

  border:1px solid #8A05BE;

  background:#ffffff;

  color:#8A05BE;

  font-size:16px;
  font-weight:400;

  min-height:42px;
}

.btn-hweb i{
  font-size:20px;
}

.btn-hweb:hover{
  background:#8A05BE;
  color:#ffffff;
}

/* =========================================================
   WHATSAPP
========================================================= */

.btn-zap{
  height:42px;

  padding:0 18px;

  border-radius:14px;

  border:1px solid #107d38;

  background:#25D366;

  color:#ffffff;

  font-size:16px;
  font-weight:400;

  min-height:42px;
}

.btn-zap i{
  font-size:20px;
}

.btn-zap:hover{
  background:#107d38;
  color:#ffffff;
}

/* =========================================================
   MOBILE TOGGLE
========================================================= */

.mobile-nav-toggle{
  display:none;

  width:42px;
  height:42px;

  margin-left:8px;

  align-items:center;
  justify-content:center;

  border:none;
  outline:none;

  background:transparent;

  border-radius:12px;

  color:#374151;

  cursor:pointer;
}

.mobile-nav-toggle::before,
.mobile-nav-toggle::after{
  display:none !important;
  content:none !important;
}

.mobile-nav-toggle i{
  font-size:30px;
  line-height:1;
}

.mobile-nav-toggle:hover{
  background:rgba(138,5,190,0.08);
  color:#8A05BE;
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width:1000px){

  .header{
    top:14px;
    padding:0 14px;
  }

  .header-content{
    height:72px;
  }

  .nav-items{
    display:none;

    position:absolute;

    top:72px;
    left:0;

    width:220px;

    flex-direction:column;
    align-items:stretch;

    gap:6px;

    padding:14px;

    border-radius:18px;

    background:rgba(255,255,255,0.96);

    backdrop-filter:blur(24px);
    -webkit-backdrop-filter:blur(24px);

    border:1px solid rgba(255,255,255,0.55);

    box-shadow:
      0 18px 45px rgba(15,23,42,0.12);
  }

  .navmenu.active .nav-items{
    display:flex;
  }

  .nav-items a{
    justify-content:flex-start;

    width:100%;
    height:48px;

    padding:0 14px;
  }

  .mobile-nav-toggle{
    display:flex;
  }

}

/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width:760px){

  .header{
    padding:0 12px;
  }

  .header-content{
    height:70px;

    padding:0 12px 0 14px;
  }

  .header-left{
    gap:10px;
  }

  .logo img{
    height:30px;
  }

  .btn-hweb span,
  .btn-zap span{
    display:none;
  }

  .btn-hweb,
  .btn-zap{
    width:42px;
    padding:0;
  }

}

/* =========================================================
   MOBILE PEQUENO
========================================================= */

@media (max-width:480px){

  .nav-items{
    width:200px;
  }

}

/* =========================================================
   AOS
========================================================= */

@media screen and (max-width:768px){

  [data-aos-delay]{
    transition-delay:0 !important;
  }

}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: transparent; 
  overflow: visible;
  padding: 30px 0;
  scroll-margin-top: 100px;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 50px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 10px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/* ===== HERO BASE ===== */

#hero{
  position:relative;
  min-height:100vh;

  display:flex;
  align-items:center;

  background: url("../img/bg7.jpg") center/cover no-repeat;
}


/* ===== BLOCO CONTROLÁVEL (AQUI É ONDE VOCÊ MANDA) ===== */

.hero-inner{

  /* 🔥 POSIÇÃO HORIZONTAL */
  margin-left:5vw;

  /*
  👉 controle lateral:

  5vw = mais pra esquerda
  8vw = equilibrado
  12vw = mais pra direita
  */


  /* 🔥 POSIÇÃO VERTICAL */
  margin-top:15vh;

  /*
  👉 controle altura:

  0vh = central exato
  5vh = levemente mais baixo
  10vh = mais baixo ainda
  */


  /* 🔥 LARGURA DO BLOCO */
  width:55%;

  /*
  👉 largura do conteúdo:

  45% = mais compacto
  55% = padrão
  65% = mais largo
  */

}


/* ===== HEADLINE ===== */

#hero h1{
  color:#fff;

  font-family: var(--heading-font); /* mantém sua fonte */

  font-size:clamp(28px, 3vw, 48px);
  line-height:1.2;

  margin-bottom:1rem;
}

/*
👉 font-size:

- cresce com a tela (vw)
- limitado por clamp (não explode nem fica minúsculo)
*/


/* ===== TEXTO ===== */

#hero p{
  color:#e6e6e6;

  font-family: var(--default-font);

  font-size:clamp(16px, 1.1vw, 20px);
  line-height:1.6;

  margin-bottom:2rem;
}

.destaque{
  position: relative;
  display: inline;
  color: #8A05BE;
  z-index: 1;
}

/* primeira passada (a sua atual, levemente ajustada) */
.destaque::after{
  content: "";
  position: absolute;

  left: -3px;
  right: -3px;
  bottom: 0.15em;

  height: 0.7em; /* 🔥 ajustei pra não virar bloco */

  background: rgba(255, 221, 87, 0.85);

  transform: rotate(-1.5deg);
  border-radius: 2px;

  z-index: -1;
  pointer-events: none;
}

/* segunda passada (nova camada) */
.destaque::before{
  content: "";
  position: absolute;

  left: -2px;
  right: -2px;
  bottom: 0.25em; /* 🔥 levemente mais alto */

  height: 0.7em;

  background: rgba(255, 221, 87, 0.6);

  transform: rotate(1deg); /* 🔥 rotação oposta */

  border-radius: 2px;

  z-index: -1;
  pointer-events: none;
}

/* ===== BOTÃO ===== */

.hero-cta{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: #ffffff;
  color: #8A05BE;

  padding: 0.9em 1.8em;
  border-radius: 12px;

  font-weight: 600;
  text-decoration: none;

  border: 2px solid #ffffff;

  transition: background 0.2s ease, color 0.2s ease;
}

/* hover simples */
.hero-cta:hover{
  background: #8A05BE;
  color: #ffffff;
}

/* garante que a seta também muda */
.hero-cta:hover .arrow{
  color: #ffffff;
}

/* ===== SETA ===== */

.scroll-down{
  position:absolute;

  bottom:3vh; /* proporcional */
  left:50%;

  transform:translateX(-50%);

  cursor:pointer;

  animation:bounce 2s infinite;
}

/* animação */

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

/* ===== RESPONSIVO ===== */

@media (max-width:900px){

  .hero-inner{
    width:55%;
    margin-left:5vw;
    margin-top:0;
  }

}

@media (max-width:600px){

  .hero-inner{
    width:55%;
    margin-left:5vw;
  }

}

/* =========================
   PROBLEMA / SOLUÇÃO
   ========================= */

.argos-ps {
  all: unset;
  display: block;
  padding: 100px 0px;
  background: transparent;
}

.argos-ps * {
  box-sizing: border-box;
}

.argos-ps-container {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

/* TEXTO */
.argos-ps-line {
  font-family: "Nunito", sans-serif; /* 🔥 AGORA IGUAL AO SITE */
  font-size: 28px;
  line-height: 1.5;
  color: #3e5055;
  margin: 0;
}

.argos-ps-line + .argos-ps-line {
  margin-top: 16px;
}

.argos-ps-muted {
  color: #3d4348;
}

.argos-ps-highlight {
  font-weight: 600;
  color: #3e5055;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .argos-ps {
    padding: 100px 20px;
  }

  .argos-ps-line {
    font-size: 22px;
  }
}

/* CASCATA MAIS LENTA */
.argos-ps.visible .argos-ps-line:nth-child(1) {
  transition-delay: 0.5s;
}

.argos-ps.visible .argos-ps-line:nth-child(2) {
  transition-delay: 1.2s;
}

.argos-ps.visible .argos-ps-line:nth-child(3) {
  transition-delay: 2.0s;
}

/* =========================
   SERVICES (PREMIUM)
   ========================= */

/* ===== SECTION ===== */
.argos-services {
  padding: 50px 20px 100px;
  background: transparent;
}

.argos-services-container {
  background: transparent;
  border-radius: 1px; /* opcional, mas fica premium */
  padding: 40px;
}

.argos-services-row {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  justify-content: center;
}

/* ===== CARD ===== */
.service-card {
  position: relative;
  width: 300px;
  aspect-ratio: 5 / 7;

  border-radius: 20px;
  overflow: hidden;

  display: flex;
  align-items: flex-end;
  text-decoration: none;

  /* 🔥 HOVER */
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);

  /* 🔥 ANIMAÇÃO MAIS SUAVE */
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== IMAGEM ===== */
.service-bg {
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;

  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===== CORREÇÃO DO TEXTO (ROXO → BRANCO) */
.service-card h3,
.service-card p,
.service-card .service-link {
  color: #ffffff !important;
}

/* ===== OVERLAY ===== */
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.2) 60%,
    rgba(0,0,0,0) 100%
  );

  z-index: 1;
  pointer-events: none;

  transition: background 0.3s ease;
}

/* ===== BLUR ===== */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;

  z-index: 1;
  pointer-events: none;

  opacity: 0;
  border-radius: inherit;

  transition: opacity 0.3s ease;
}

@supports (backdrop-filter: blur(10px)) {
  .service-card::before {
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    mask-image: linear-gradient(
      to top,
      rgba(0,0,0,1) 0%,
      rgba(0,0,0,0.9) 40%,
      rgba(0,0,0,0.4) 65%,
      rgba(0,0,0,0) 85%
    );
    -webkit-mask-image: linear-gradient(
      to top,
      rgba(0,0,0,1) 0%,
      rgba(0,0,0,0.9) 40%,
      rgba(0,0,0,0.4) 65%,
      rgba(0,0,0,0) 85%
    );
  }
}

/* ===== CONTEÚDO ===== */
.service-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  padding: 18px 22px;
  z-index: 2;

  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===== TEXTO ===== */
.service-content p,
.service-link {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

/* ===== HOVER ===== */
.service-card:hover {
  transform: scale(1.12);
  box-shadow: 0 40px 100px rgba(0,0,0,0.28);
}

.service-card:hover .service-bg {
  transform: scale(1.12);
}

.service-card:hover .service-content {
  transform: translateY(-25px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.35) 60%,
    rgba(0,0,0,0) 100%
  );
}

.service-card:hover p,
.service-card:hover .service-link {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
  .argos-services-row {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    width: 90%;
    max-width: 360px;
    opacity: 1;
    transform: none;
  }

  .service-card::before {
    opacity: 0.5;
  }

  .service-content p,
  .service-link {
    opacity: 1;
    transform: none;
  }
}

/* =========================
   Como funciona (estático)
   ========================= */

.argos-trust {
  padding: 0;
}

.argos-trust-container {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

/* TEXTO */
.argos-trust-line {
  font-family: "Nunito", sans-serif;
  font-size: 28px;
  line-height: 1.5;
  color: #3e5055;
  margin: 0;

  opacity: 1;
  transform: none;
}

/* espaço entre linhas */
.argos-trust-line + .argos-trust-line {
  margin-top: 10px;
}

/* destaque final */
.argos-trust-highlight {
  font-weight: 600;
  color: #111;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .argos-trust-line {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Numbers (refinado final)
--------------------------------------------------------------*/

.numbers-section {
  padding: 70px 0; /* diminui um pouco o respiro geral */
  background: transparent;
}

/* CAIXA */
.numbers-box {
  background: radial-gradient(circle at top left, #9d2fd1, #6A0392);
  border-radius: 24px;
  padding: 50px 40px 60px 40px; /* menos espaço em cima */
  color: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
  text-align: center;
}

/* GARANTE BRANCO */
.numbers-box * {
  color: #fff !important;
}

/* TÍTULO (SUBIDO) */
.numbers-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 15px; /* diminui espaço abaixo */
  margin-top: -5px; /* puxa levemente pra cima */
}

/* GRID */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  align-items: center;
}

/* ITEM */
.number-item {
  padding: 10px;
}

/* NÚMERO */
.number-item h3 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -1px;
}

/* TEXTO (AUMENTADO) */
.number-item p {
  font-size: 16.5px; /* era ~15 → mais presença */
  opacity: 0.95;
  font-weight: 400;
}

/* RESPONSIVO */
@media (max-width: 992px) {
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .numbers-grid {
    grid-template-columns: 1fr;
  }

  .numbers-box {
    padding: 35px 20px 45px 20px;
  }

  .numbers-title {
    margin-top: 0;
  }

  .number-item h3 {
    font-size: 30px;
  }

  .number-item p {
    font-size: 15px;
  }
}

/* =========================
   PROVA (NÚMEROS + CLIENTES)
   ========================= */

.argos-proof {
  display: block;
  padding: 10px 0;
  background: transparent;

  position: relative;
  z-index: 1;
  overflow: visible;
}

.argos-proof-container {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

/* TEXTO */
.argos-proof-line {
  font-family: "Nunito", sans-serif;
  font-size: 28px;
  line-height: 1.5;
  color: #3e5055;
  margin: 0;

  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.argos-proof-line + .argos-proof-line {
  margin-top: 16px;
}

.argos-proof-highlight {
  font-weight: 600;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .argos-proof-line {
    font-size: 22px;
  }
}

/* BOTÃO i */
.metric-text {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Botão com ⓘ */
.info-tooltip {
  background: none;
  border: none;
  padding: 0;
  margin-left: 4px;

  font-size: 14px;       /* maior pra ficar legível */
  line-height: 1;
  color: #fff;           /* branco (se fundo for roxo) */

  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  /* melhora renderização */
  -webkit-font-smoothing: antialiased;
}

/* Tooltip (continua embaixo) */
.tooltip-box {
  position: absolute;
  top: 140%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);

  width: 240px;
  padding: 10px 12px;

  background: #111;
  color: #fff;
  font-size: 13px;
  line-height: 1.4;

  border-radius: 8px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 10;
}

/* Setinha */
.tooltip-box::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);

  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #111 transparent;
}

/* Estado ativo */
.tooltip-box.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}


/* DEPOIMENTOS E LOGOS */
/* ===== RESET ===== */
.argos-quotes, .argos-quotes * {
  box-sizing: border-box;
}

/* ===== BLOCO ===== */
.argos-quotes {
  padding: 100px 20px;
}

.argos-quotes-box {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: 60px;

  display: grid;
  grid-template-columns: 30% 70%;
  gap: 40px;

  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

/* ===== TEXTO ===== */
.argos-quotes-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
  word-break: break-word;
}

/* ===== BALÕES ===== */
.argos-quotes-bubbles {
  position: relative;
  min-height: 320px;
}

.argos-q-bubble-wrap {
  position: absolute;
  max-width: 270px;
  width: 100%;

  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.b1 { top: 0; left: 6%; }
.b2 { bottom: 0; right: 6%; }

/* BALÃO */
.argos-q-bubble {
  position: relative;
  background: linear-gradient(
    to bottom,
    rgba(138,5,190,0.06),
    rgba(138,5,190,0.14)
  );
  border-radius: 16px;
  padding: 16px 18px 20px;
}

/* TEXTO */
.argos-q-bubble p {
  font-style: italic;
  font-size: 14.8px;
  line-height: 1.6;
}

/* ASPA */
.q-mark {
  position: absolute;
  top: 6px;
  left: 10px;
  font-size: 28px;
  color: #8A05BE;
  opacity: 0.15;
}

/* TRIÂNGULO */
.argos-q-bubble::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 20px;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid rgba(138,5,190,0.14);
}

/* AUTOR */
.q-author {
  margin-top: 6px;
  font-size: 12px;
  color: #666;
}

/* ANIMAÇÃO */
.argos-quotes.reveal.active .argos-q-bubble-wrap {
  opacity: 1;
  transform: translateY(0);
}

.argos-quotes.reveal.active .b1 {
  animation: floatA 5s ease-in-out infinite;
}

.argos-quotes.reveal.active .b2 {
  animation: floatB 6s ease-in-out infinite;
}

@keyframes floatA {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes floatB {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== LOGOS ===== */

.argos-logos {
  grid-column: 1 / -1;
  margin-top: 0px;
  overflow: hidden;
}

.argos-logos .logos {
  padding: 0;
  position: relative;
}

/* máscara com fade */
.logos-mask {
  overflow: hidden;
  width: 100%;

  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 25%,
    black 75%,
    transparent 100%
  );

  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 25%,
    black 75%,
    transparent 100%
  );
}

/* track */
.logos-track {
  display: flex;
  align-items: center;
  width: max-content;

  animation: scroll 60s linear infinite;
}

/* pausa no hover */
.logos:hover .logos-track {
  animation-play-state: paused;
}

/* logos */
.logos-track img {
  height: 50px;
  max-width: 160px;
  object-fit: contain;

  margin-right: 80px;
  flex-shrink: 0;

  filter: grayscale(100%);
  opacity: 0.7;

  transition: all 0.3s ease;

  animation: float 6s ease-in-out infinite;
}

/* hover */
.logos-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* animação horizontal */
@keyframes scroll {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-33%,0,0); }
}

/* micro movimento */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

/* variação */
.logos-track img:nth-child(2n) { animation-delay: 1s; }
.logos-track img:nth-child(3n) { animation-delay: 2s; }
.logos-track img:nth-child(4n) { animation-delay: 3s; }

/* ===== RESPONSIVO ===== */

@media (max-width: 1024px) {

  .argos-quotes-box {
    display: flex;
    flex-direction: column;
  }

  .argos-quotes-bubbles {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .argos-q-bubble-wrap {
    position: relative;
    max-width: 100%;
    padding: 0 18px; /* 🔥 resolve o problema */
    opacity: 1;
    transform: none;
    animation: none;
  }

}

@media (max-width: 768px) {
  .logos-track img {
    height: 35px;
    max-width: 120px;
    margin-right: 40px;
  }
}

@media (max-width: 600px) {

  .argos-quotes-box {
    padding: 20px;
  }

}

/*--------------------------------------------------------------
# CTA FINAL
--------------------------------------------------------------*/
/* =========================
   CTA FINAL (coerente com trust)
   ========================= */

.argos-cta-final {
  padding: 0px 20px 40px; 
  text-align: center;

  transition:
    opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.argos-cta-container {
  max-width: 850px;
  margin: 0 auto;
}

/* Pergunta (mesmo padrão do trust) */
.argos-cta-question {
  font-family: "Nunito", sans-serif;
  font-size: 28px;
  line-height: 1.5;
  color: #3e5055;
  margin: 0;
}

/* Texto de apoio (igual destaque final) */
.argos-cta-support {
  font-family: "Nunito", sans-serif;
  font-size: 28px;
  line-height: 1.5;
  font-weight: 600;
  color: #111;
  margin-top: 10px;
}

/* Botão */
/* BOTÃO CTA (link estilizado como botão) */
.argos-cta-button {
  margin-top: 28px;

  font-family: "Nunito", sans-serif;
  font-size: 18px;
  font-weight: 600;

  background: linear-gradient(135deg, #8A05BE 0%, #9d1fd1 100%);
  color: #fff;
  text-decoration: none;

  padding: 16px 44px 16px 28px;
  border-radius: 10px;
  border: none;

  display: inline-block;
  position: relative;
  overflow: hidden;

  cursor: pointer;
  transition: all 0.25s ease;
}

/* GARANTE TEXTO BRANCO EM TODOS OS ESTADOS */
.argos-cta-button:visited,
.argos-cta-button:hover,
.argos-cta-button:active {
  color: #fff;
  text-decoration: none;
}

/* HOVER */
.argos-cta-button:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 30px rgba(138, 5, 190, 0.35);
}

/* BRILHO */
.argos-cta-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;

  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 30%,
    rgba(255,255,255,0.25) 50%,
    rgba(255,255,255,0) 70%
  );

  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.5s ease;
}

.argos-cta-button:hover::before {
  opacity: 1;
  transform: translateX(100%);
}

/* SETA */
.argos-cta-button::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;

  width: 8px;
  height: 8px;

  border-right: 2px solid #fff;
  border-top: 2px solid #fff;

  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.25s ease;
}

.argos-cta-button:hover::after {
  transform: translateY(-50%) translateX(4px) rotate(45deg);
}

/* MICROTEXTO */
.argos-cta-micro {
  font-family: "Nunito", sans-serif;
  font-size: 13px;
  color: #3e5055;
  margin-top: 12px;
  opacity: 0.8;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .argos-cta-question,
  .argos-cta-support {
    font-size: 22px;
  }
}






/*--------------------------------------------------------------
# Recrutamento seleção
--------------------------------------------------------------*/
/* =========================================================
   RECRUTAMENTO E SELEÇÃO
========================================================= */

.argos-rs{
  width:100%;
  overflow:hidden;
}

/* =========================================================
   HERO
========================================================= */

.argos-rs-hero{
  position:relative;

  width:100%;
  height:620px;

  overflow:hidden;

  border-radius:0 0 32px 32px;
}

.argos-rs-hero img{
  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  display:block;

  object-fit:cover;

  /* foco nos rostos (superior-direita) */
  object-position:78% 18%;

  -webkit-user-drag:none;
}

.argos-rs-hero-overlay{
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.72) 0%,
      rgba(0,0,0,0.48) 42%,
      rgba(0,0,0,0.14) 100%
    );
}

.argos-rs-hero-content{
  position:relative;
  z-index:2;

  width:min(620px,90%);

  padding-top:220px;
  padding-left:5vw;
}

.argos-rs-tag{
  display:inline-flex;
  align-items:center;

  padding:8px 14px;

  border-radius:999px;

  background:rgba(255,255,255,0.08);

  border:1px solid rgba(255,255,255,0.12);

  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);

  color:#fff;

  font-size:11px;
  font-weight:600;
  letter-spacing:1.4px;

  margin-bottom:20px;
}

.argos-rs-hero-content h1{
  color:#fff;

  font-family:var(--heading-font);

  font-size:clamp(36px,4vw,56px);

  line-height:1.08;

  letter-spacing:-1.5px;

  margin-bottom:20px;
}

.argos-rs-hero-content p{
  color:#ececec;

  font-size:clamp(16px,1vw,19px);

  line-height:1.6;

  max-width:580px;
}

/* =========================================================
   ESTRUTURA
========================================================= */

.argos-rs-container{
  width:100%;
  max-width:1100px;

  margin:0 auto;

  padding-left:24px;
  padding-right:24px;
}

.argos-rs-section{
  padding:90px 0;
}

.argos-rs-alt{
  background:#f8f8fb;
}

.argos-rs-section-label{
  display:inline-block;

  margin-bottom:14px;

  color:#8A05BE;

  font-size:12px;
  font-weight:700;
  letter-spacing:1.6px;
}

.argos-rs-section h2{
  font-size:clamp(30px,3vw,42px);

  line-height:1.2;

  letter-spacing:-1px;

  font-weight:700;

  margin-bottom:22px;

  color:#3e5055;

  font-family:var(--heading-font);
}

.argos-rs-section p{
  font-size:17px;
  line-height:1.7;

  color:#3d4348;
}

/* =========================================================
   INTRO
========================================================= */

.argos-rs-intro{
  max-width:760px;

  margin:90px auto 0;

  text-align:center;

  font-family:"Nunito",sans-serif;

  font-size:28px;
  line-height:1.5;

  color:#3e5055;

  font-weight:400;
}

/* =========================================================
   GRID
========================================================= */

.argos-rs-grid-2{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));

  gap:70px;
  align-items:center;
}

.argos-rs-image{
  width:100%;
}

.argos-rs-image img{
  width:100%;
  max-width:100%;

  display:block;

  object-fit:contain;
}

/* =========================================================
   TIMELINE
========================================================= */

.argos-rs-timeline{
  position:relative;

  margin-top:60px;

  display:flex;
  flex-direction:column;
  gap:24px;
}

.argos-rs-timeline-line{
  position:absolute;

  left:27px;
  top:0;
  bottom:0;

  width:2px;

  background:
    linear-gradient(
      to bottom,
      rgba(138,5,190,0.08),
      rgba(138,5,190,0.35),
      rgba(138,5,190,0.08)
    );
}

.argos-rs-timeline-item{
  position:relative;

  display:flex;
  align-items:flex-start;
  gap:22px;
}

.argos-rs-timeline-number{
  position:relative;
  z-index:2;

  flex-shrink:0;

  width:56px;
  height:56px;

  border-radius:50%;

  background:#8A05BE;
  color:#fff;

  font-size:18px;
  font-weight:700;

  display:flex;
  align-items:center;
  justify-content:center;

  box-shadow:
    0 10px 25px rgba(138,5,190,0.18);
}

.argos-rs-timeline-card{
  flex:1;

  padding:28px;

  border-radius:18px;

  background:#fff;

  border:1px solid rgba(0,0,0,0.05);

  transition:all .25s ease;
}

.argos-rs-timeline-card:hover{
  transform:translateY(-4px);

  box-shadow:
    0 18px 40px rgba(0,0,0,0.06);
}

.argos-rs-timeline-card h3{
  font-size:24px;

  font-weight:700;

  margin-bottom:12px;

  color:#3e5055;

  font-family:var(--heading-font);
}

.argos-rs-timeline-card p{
  margin:0;
}

/* =========================================================
   DIFERENCIAIS
========================================================= */

.argos-rs-diff-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));

  gap:24px;

  margin-top:50px;
}

.argos-rs-diff-card{
  padding:32px;

  border-radius:20px;

  background:#fff;

  border:1px solid rgba(0,0,0,0.05);

  transition:all .25s ease;
}

.argos-rs-diff-card:hover{
  transform:translateY(-4px);

  box-shadow:
    0 18px 40px rgba(0,0,0,0.06);
}

.argos-rs-diff-icon{
  color:#8A05BE;

  font-size:42px;

  line-height:1;

  margin-bottom:26px;
}

.argos-rs-diff-icon i{
  display:block;
}

.argos-rs-diff-card h3{
  font-size:24px;

  font-weight:700;

  color:#3e5055;

  margin-bottom:14px;

  font-family:var(--heading-font);
}

.argos-rs-diff-card p{
  margin:0;
}

/* =========================================================
   CTA
========================================================= */

.argos-rs-cta{
  position:relative;

  padding:110px 0;

  background:
    linear-gradient(
      180deg,
      #f8f8fb 0%,
      #f1f1f4 100%
    );

  text-align:center;

  overflow:hidden;
}

.argos-rs-cta::before{
  content:"";

  position:absolute;

  width:520px;
  height:520px;

  border-radius:50%;

  background:
    radial-gradient(
      rgba(138,5,190,0.06),
      transparent 70%
    );

  top:-260px;
  right:-180px;

  pointer-events:none;
}

.argos-rs-cta h2{
  color:#3e5055;

  font-size:clamp(32px,4vw,48px);

  line-height:1.15;

  letter-spacing:-1px;

  margin-bottom:20px;

  font-weight:700;

  font-family:var(--heading-font);
}

.argos-rs-cta p{
  max-width:720px;

  margin:0 auto 34px;

  color:#3d4348;

  font-size:18px;
  line-height:1.7;
}

/* =========================================================
   BOTÃO CTA PREMIUM
========================================================= */

.argos-rs-btn-cta{
  margin-top:8px;

  font-family:"Nunito",sans-serif;
  font-size:18px;
  font-weight:600;

  background:
    linear-gradient(
      135deg,
      #8A05BE 0%,
      #9d1fd1 100%
    );

  color:#fff !important;
  text-decoration:none;

  padding:16px 44px 16px 28px;

  border-radius:10px;
  border:none;

  display:inline-block;

  position:relative;
  overflow:hidden;

  cursor:pointer;

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.argos-rs-btn-cta:hover{
  transform:scale(1.04);

  box-shadow:
    0 12px 30px rgba(138,5,190,0.35);

  color:#fff !important;
}

/* brilho */

.argos-rs-btn-cta::before{
  content:"";

  position:absolute;
  inset:0;

  border-radius:10px;

  background:
    linear-gradient(
      120deg,
      rgba(255,255,255,0) 30%,
      rgba(255,255,255,0.25) 50%,
      rgba(255,255,255,0) 70%
    );

  opacity:0;

  transform:translateX(-100%);

  transition:
    all .5s ease;
}

.argos-rs-btn-cta:hover::before{
  opacity:1;

  transform:translateX(100%);
}

/* seta */

.argos-rs-btn-cta::after{
  content:"";

  position:absolute;

  right:18px;
  top:50%;

  width:8px;
  height:8px;

  border-right:2px solid #fff;
  border-top:2px solid #fff;

  transform:
    translateY(-50%)
    rotate(45deg);

  transition:
    transform .25s ease;
}

.argos-rs-btn-cta:hover::after{
  transform:
    translateY(-50%)
    translateX(4px)
    rotate(45deg);
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width:991px){

  .argos-rs-hero{
    height:560px;
  }

  .argos-rs-hero img{
    object-position:74% 18%;
  }

  .argos-rs-grid-2{
    grid-template-columns:1fr;

    gap:50px;
  }

  .argos-rs-diff-grid{
    grid-template-columns:1fr;
  }

}

@media (max-width:768px){

  .argos-rs-hero{
    height:520px;

    border-radius:0 0 24px 24px;
  }

  .argos-rs-hero img{
    object-position:70% 18%;
  }

  .argos-rs-hero-content{
    width:90%;

    padding-top:170px;
    padding-left:24px;
    padding-right:24px;
  }

  .argos-rs-hero-content h1{
    font-size:40px;
  }

  .argos-rs-intro{
    font-size:22px;
  }

  .argos-rs-section{
    padding:70px 0;
  }

  .argos-rs-timeline-item{
    gap:16px;
  }

  .argos-rs-timeline-number{
    width:48px;
    height:48px;

    font-size:16px;
  }

  .argos-rs-timeline-line{
    left:23px;
  }

  .argos-rs-timeline-card{
    padding:22px;
  }

  .argos-rs-diff-card{
    padding:24px;
  }

}



/* =========================================================
   TRABALHO TEMPORÁRIO — PREMIUM
========================================================= */

main{
  margin-top:-30px;
}

.argos-temp{
  width:100%;
  overflow:hidden;
}

.argos-temp-container{
  width:100%;
  max-width:1240px;
  margin:0 auto;
  padding-left:24px;
  padding-right:24px;
}

/* =========================================================
   HERO
========================================================= */

.argos-temp-hero{
  position:relative;

  width:100%;
  height:620px;

  overflow:hidden;

  border-radius:0 0 32px 32px;
}

.argos-temp-hero img{
  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  display:block;

  object-fit:cover;

  object-position:78% 18%;

  -webkit-user-drag:none;

  border-radius:0 0 32px 32px;
}

.argos-temp-overlay{
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.72) 0%,
      rgba(0,0,0,0.48) 42%,
      rgba(0,0,0,0.14) 100%
    );

  border-radius:0 0 32px 32px;
}

.argos-temp-glow{
  position:absolute;

  width:700px;
  height:700px;

  border-radius:50%;

  background:
    radial-gradient(
      rgba(138,5,190,0.18),
      transparent 70%
    );

  top:-300px;
  right:-180px;

  filter:blur(40px);
}

.argos-temp-hero-content{
  position:relative;
  z-index:2;

  width:min(1400px,92%);

  padding-top:205px;

  padding-left:5vw;
}

.argos-temp-tag{
  display:inline-flex;
  align-items:center;

  padding:8px 14px;

  border-radius:999px;

  background:rgba(255,255,255,0.08);

  border:1px solid rgba(255,255,255,0.12);

  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);

  color:#fff;

  font-size:11px;
  font-weight:600;
  letter-spacing:1.4px;

  margin-bottom:20px;
}

.argos-temp-hero-content h1{
  color:#fff;

  font-family:var(--heading-font);

  font-size:clamp(36px,4vw,56px);

  line-height:1.08;

  letter-spacing:-1.5px;

  margin-bottom:20px;
}

.argos-temp-hero-content p{
  color:#ececec;

  font-size:clamp(16px,1vw,19px);

  line-height:1.6;

  max-width:720px;
}

/* =========================================================
   FLOATING CARDS
========================================================= */

.argos-temp-floating{
  position:relative;
  z-index:20;

  margin-top:-50px;
}

.argos-temp-floating-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);

  gap:24px;
}

.argos-float-card{
  position:relative;

  padding:42px;

  border-radius:28px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.96),
      rgba(255,255,255,0.90)
    );

  backdrop-filter:blur(20px);

  border:1px solid rgba(255,255,255,0.55);

  box-shadow:
    0 25px 80px rgba(0,0,0,0.08);

  overflow:hidden;
}

.argos-float-card::before{
  content:"";

  position:absolute;

  inset:0;

  border-radius:28px;

  pointer-events:none;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.18),
      rgba(255,255,255,0)
    );
}

.argos-float-number{
  font-size:30px;

  letter-spacing:-1px;

  margin-bottom:16px;

  color:#3e5055;

  font-family:var(--heading-font);
}

.argos-float-card p{
  color:#4f5b61;

  line-height:1.8;

  margin:0;
}

/* =========================================================
   BENTO
========================================================= */

.argos-temp-bento-section{
  padding:110px 0 70px;
}

.argos-bento{
  display:grid;

  grid-template-columns:1.2fr 1fr;
  grid-template-rows:auto auto;

  gap:24px;
}

.argos-bento-main{
  grid-row:span 2;

  position:relative;

  overflow:hidden;

  padding:60px;

  border-radius:38px;

  background:
    linear-gradient(
      135deg,
      #8A05BE,
      #6123a0
    );

  box-shadow:
    0 40px 100px rgba(138,5,190,0.28);
}

.argos-bento-main::before{
  content:"";

  position:absolute;

  width:520px;
  height:520px;

  border-radius:50%;

  background:
    radial-gradient(
      rgba(255,255,255,0.14),
      transparent 70%
    );

  top:-260px;
  right:-140px;
}

.argos-bento-main span{
  display:inline-flex;

  padding:8px 16px;

  border-radius:999px;

  background:rgba(255,255,255,0.12);

  color:#fff;

  font-size:12px;
  font-weight:700;
  letter-spacing:1px;

  margin-bottom:34px;
}

.argos-bento-main h2{
  color:#fff;

  font-size:clamp(42px,4vw,58px);

  line-height:0.95;

  letter-spacing:-3px;

  margin-bottom:26px;

  font-family:var(--heading-font);
}

.argos-bento-main p{
  color:rgba(255,255,255,0.84);

  font-size:19px;
  line-height:1.9;

  max-width:540px;
}

.argos-bento-card{
  position:relative;

  overflow:hidden;

  padding:40px;

  border-radius:32px;

  background:#fff;

  box-shadow:
    0 20px 60px rgba(0,0,0,0.06);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.argos-bento-card:hover{
  transform:translateY(-6px);

  box-shadow:
    0 28px 70px rgba(0,0,0,0.08);
}

.argos-bento-card i{
  font-size:36px;

  color:#8A05BE;

  margin-bottom:24px;

  display:inline-block;
}

.argos-bento-card h3{
  font-size:28px;

  line-height:1;

  letter-spacing:-1px;

  margin-bottom:16px;

  color:#3e5055;

  font-family:var(--heading-font);
}

.argos-bento-card p{
  color:#4f5b61;

  line-height:1.8;

  margin:0;
}

/* =========================================================
   VISUAL
========================================================= */

.argos-visual{
  padding:50px 0 70px;
}

.argos-visual-grid{
  display:grid;
  grid-template-columns:1fr 1fr;

  gap:90px;
  align-items:center;
}

.argos-visual-text span,
.argos-process-header span{
  display:inline-block;

  color:#8A05BE;

  font-size:12px;
  font-weight:700;
  letter-spacing:2px;

  margin-bottom:18px;
}

.argos-visual-text h2,
.argos-process-header h2{
  font-size:clamp(34px,4vw,52px);

  line-height:1.02;

  letter-spacing:-2px;

  margin-bottom:24px;

  color:#3e5055;

  font-family:var(--heading-font);
}

.argos-visual-text p{
  color:#4f5b61;

  font-size:18px;
  line-height:1.9;
}

.argos-visual-image{
  position:relative;
}

.argos-visual-image::before{
  content:"";

  position:absolute;

  inset:10%;

  border-radius:50%;

  background:
    radial-gradient(
      rgba(138,5,190,0.12),
      transparent 70%
    );

  filter:blur(50px);
}

.argos-visual-image img{
  position:relative;
  z-index:2;

  width:100%;
  display:block;
}

/* =========================================================
   PROCESSO
========================================================= */

.argos-process{
  padding:60px 0 120px;

  background:
    linear-gradient(
      180deg,
      #fafafd,
      #f2f2f7
    );
}

.argos-process-grid{
  position:relative;

  margin-top:70px;

  display:grid;

  gap:26px;
}

.process-5{
  grid-template-columns:repeat(5,1fr);
}

.argos-process-grid::before{
  content:"";

  position:absolute;

  top:34px;
  left:6%;
  right:6%;

  height:2px;

  background:
    linear-gradient(
      90deg,
      rgba(138,5,190,0.12),
      rgba(138,5,190,0.5),
      rgba(138,5,190,0.12)
    );

  z-index:0;
}

.argos-process-card{
  position:relative;
  z-index:2;

  padding:42px 32px;

  border-radius:28px;

  background:#fff;

  box-shadow:
    0 20px 60px rgba(0,0,0,0.05);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.argos-process-card:hover{
  transform:translateY(-6px);

  box-shadow:
    0 28px 70px rgba(0,0,0,0.08);
}

.argos-process-card::before{
  content:attr(data-step);

  position:absolute;

  top:18px;
  right:22px;

  font-size:72px;
  font-weight:800;

  color:rgba(138,5,190,0.05);

  font-family:var(--heading-font);

  line-height:1;
}

.argos-process-dot{
  position:relative;

  width:22px;
  height:22px;

  border-radius:50%;

  background:#8A05BE;

  margin-bottom:34px;

  box-shadow:
    0 0 0 12px rgba(138,5,190,0.08);

  z-index:3;
}

.argos-process-dot::after{
  content:"";

  position:absolute;

  inset:-10px;

  border-radius:50%;

  border:1px solid rgba(138,5,190,0.25);

  animation:pulseDot 2.6s infinite;
}

.argos-process-card h3{
  font-size:24px;

  line-height:1.1;

  letter-spacing:-1px;

  margin-bottom:16px;

  color:#3e5055;

  font-family:var(--heading-font);
}

.argos-process-card p{
  color:#4f5b61;

  line-height:1.8;

  margin:0;
}

@keyframes pulseDot{

  0%{
    transform:scale(.8);
    opacity:0;
  }

  40%{
    opacity:1;
  }

  100%{
    transform:scale(1.5);
    opacity:0;
  }

}

/* =========================================================
   CTA
========================================================= */

.argos-temp-cta{
  position:relative;

  padding:110px 0;

  background:
    linear-gradient(
      180deg,
      #f8f8fb 0%,
      #f1f1f4 100%
    );

  text-align:center;

  overflow:hidden;
}

.argos-temp-cta::before{
  content:"";

  position:absolute;

  width:520px;
  height:520px;

  border-radius:50%;

  background:
    radial-gradient(
      rgba(138,5,190,0.06),
      transparent 70%
    );

  top:-260px;
  right:-180px;

  pointer-events:none;
}

.argos-temp-cta h2{
  color:#3e5055;

  font-size:clamp(32px,4vw,48px);

  line-height:1.15;

  letter-spacing:-1px;

  margin-bottom:20px;

  font-weight:700;

  font-family:var(--heading-font);
}

.argos-temp-cta p{
  max-width:720px;

  margin:0 auto 34px;

  color:#3d4348;

  font-size:18px;
  line-height:1.7;
}

.argos-temp-btn{
  margin-top:8px;

  font-family:"Nunito",sans-serif;
  font-size:18px;
  font-weight:600;

  background:
    linear-gradient(
      135deg,
      #8A05BE 0%,
      #9d1fd1 100%
    );

  color:#fff !important;
  text-decoration:none;

  padding:16px 44px 16px 28px;

  border-radius:10px;
  border:none;

  display:inline-block;

  position:relative;
  overflow:hidden;

  cursor:pointer;

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.argos-temp-btn:hover{
  transform:scale(1.04);

  box-shadow:
    0 12px 30px rgba(138,5,190,0.35);

  color:#fff !important;
}

.argos-temp-btn::before{
  content:"";

  position:absolute;
  inset:0;

  border-radius:10px;

  background:
    linear-gradient(
      120deg,
      rgba(255,255,255,0) 30%,
      rgba(255,255,255,0.25) 50%,
      rgba(255,255,255,0) 70%
    );

  opacity:0;

  transform:translateX(-100%);

  transition:
    all .5s ease;
}

.argos-temp-btn:hover::before{
  opacity:1;

  transform:translateX(100%);
}

.argos-temp-btn::after{
  content:"";

  position:absolute;

  right:18px;
  top:50%;

  width:8px;
  height:8px;

  border-right:2px solid #fff;
  border-top:2px solid #fff;

  transform:
    translateY(-50%)
    rotate(45deg);

  transition:
    transform .25s ease;
}

.argos-temp-btn:hover::after{
  transform:
    translateY(-50%)
    translateX(4px)
    rotate(45deg);
}

/* =========================================================
   REVEAL
========================================================= */

.reveal{
  opacity:0;

  transform:translateY(40px);

  transition:
    opacity .7s ease,
    transform .7s ease;
}

.reveal.active{
  opacity:1;

  transform:none;
}

.delay-1{
  transition-delay:.1s;
}

.delay-2{
  transition-delay:.2s;
}

.delay-3{
  transition-delay:.3s;
}

.delay-4{
  transition-delay:.4s;
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width:1200px){

  .process-5{
    grid-template-columns:repeat(2,1fr);
  }

}

@media (max-width:991px){

  .argos-temp-hero{
    height:560px;
  }

  .argos-temp-hero img{
    object-position:74% 18%;
  }

  .argos-temp-floating-grid,
  .argos-visual-grid{
    grid-template-columns:1fr 1fr;
  }

  .argos-bento{
    grid-template-columns:1fr;
  }

  .argos-bento-main{
    grid-row:auto;
  }

}

@media (max-width:768px){

  .argos-temp-hero{
    height:520px;

    border-radius:0 0 24px 24px;
  }

  .argos-temp-hero img{
    object-position:70% 18%;

    border-radius:0 0 24px 24px;
  }

  .argos-temp-overlay{
    border-radius:0 0 24px 24px;
  }

  .argos-temp-hero-content{
    width:90%;

    padding-top:170px;
    padding-left:24px;
    padding-right:24px;
  }

  .argos-temp-hero-content h1{
    font-size:40px;
  }

  .argos-temp-floating-grid,
  .argos-visual-grid,
  .process-5{
    grid-template-columns:1fr;
  }

  .argos-bento-main{
    padding:44px 34px;
  }

}


/* =========================================================
   TERCEIRIZAÇÃO — PREMIUM
========================================================= */

main{
  margin-top:-30px;
}

.argos-outsourcing{
  width:100%;
  overflow:hidden;
}

.argos-outsourcing-container{
  width:100%;
  max-width:1240px;
  margin:0 auto;
  padding-left:24px;
  padding-right:24px;
}

/* =========================================================
   HERO
========================================================= */

.argos-outsourcing-hero{
  position:relative;
  width:100%;
  height:620px;
  overflow:hidden;
  border-radius:0 0 32px 32px;
}

.argos-outsourcing-hero img{
  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  object-fit:cover;
  object-position:center;

  border-radius:0 0 32px 32px;
}

.argos-outsourcing-overlay{
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.528),
      rgba(0, 0, 0, 0.304),
      rgba(0, 0, 0, 0.106)
    );
}

.argos-outsourcing-glow{
  position:absolute;

  width:700px;
  height:700px;

  border-radius:50%;

  background:
    radial-gradient(
      rgba(138,5,190,.18),
      transparent 70%
    );

  top:-300px;
  right:-180px;

  filter:blur(40px);
}

.argos-outsourcing-hero-content{
  position:relative;
  z-index:2;

  width:min(1400px,92%);

  padding-top:205px;
  padding-left:5vw;
}

.argos-outsourcing-tag{
  display:inline-flex;

  padding:8px 14px;

  border-radius:999px;

  background:rgba(255,255,255,.08);

  border:1px solid rgba(255,255,255,.12);

  backdrop-filter:blur(10px);

  color:#fff;

  font-size:11px;
  font-weight:600;
  letter-spacing:1.4px;

  margin-bottom:20px;
}

.argos-outsourcing-hero-content h1{
  color:#fff;

  font-size:clamp(36px,4vw,56px);

  line-height:1.08;

  letter-spacing:-1.5px;

  margin-bottom:20px;

  font-family:var(--heading-font);
}

.argos-outsourcing-hero-content p{
  color:#ececec;

  font-size:clamp(16px,1vw,19px);

  line-height:1.7;

  max-width:720px;
}

/* =========================================================
   INTRO
========================================================= */

.argos-outsourcing-intro{
  padding:110px 0 80px;
}

.argos-outsourcing-intro-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
}

.argos-outsourcing-intro-left span,
.argos-outsourcing-benefits-left span{
  display:inline-block;

  color:#8A05BE;

  font-size:12px;
  font-weight:700;
  letter-spacing:2px;

  margin-bottom:20px;
}

.argos-outsourcing-intro-left h2,
.argos-outsourcing-benefits-left h2{
  color:#3e5055;

  font-size:clamp(38px,4vw,56px);

  line-height:1;

  letter-spacing:-2px;

  font-family:var(--heading-font);
}

.argos-outsourcing-intro-right{
  padding-top:52px;
}

.argos-outsourcing-intro-right p{
  color:#4f5b61;

  font-size:18px;

  line-height:1.9;

  margin-bottom:0;
}

/* =========================================================
   STRUCTURE
========================================================= */

.argos-outsourcing-structure{
  padding:20px 0 110px;
}

.argos-outsourcing-structure-grid{
  display:grid;
  grid-template-columns:1.15fr 1fr 1fr;
  gap:24px;
}

.argos-outsourcing-main-card{
  grid-row:span 2;

  padding:52px;

  border-radius:36px;

  background:
    linear-gradient(
      135deg,
      #8A05BE,
      #6123a0
    );

  box-shadow:
    0 40px 100px rgba(138,5,190,.24);
}

.argos-outsourcing-main-icon{
  margin-bottom:34px;
}

.argos-outsourcing-main-icon i{
  color:#fff;
  font-size:46px;
}

.argos-outsourcing-main-card h3{
  color:#fff;

  font-size:42px;

  line-height:1;

  letter-spacing:-2px;

  margin-bottom:34px;

  font-family:var(--heading-font);
}

.argos-outsourcing-main-card ul{
  list-style:none;
  padding:0;
  margin:0;
}

.argos-outsourcing-main-card li{
  display:flex;
  align-items:center;
  gap:14px;

  color:#fff;

  padding:14px 0;

  border-bottom:1px solid rgba(255,255,255,.12);
}

.argos-outsourcing-main-card li i{
  font-size:18px;
}

.argos-outsourcing-mini-card{
  padding:34px;

  border-radius:30px;

  background:#fff;

  box-shadow:
    0 20px 60px rgba(0,0,0,.05);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.argos-outsourcing-mini-card:hover{
  transform:translateY(-6px);

  box-shadow:
    0 28px 70px rgba(0,0,0,.08);
}

.argos-outsourcing-mini-card i{
  color:#8A05BE;

  font-size:34px;

  margin-bottom:24px;

  display:inline-block;
}

.argos-outsourcing-mini-card h3{
  color:#3e5055;

  font-size:26px;

  line-height:1.1;

  letter-spacing:-1px;

  margin-bottom:16px;

  font-family:var(--heading-font);
}

.argos-outsourcing-mini-card p{
  color:#4f5b61;

  line-height:1.8;
}

/* =========================================================
   BENEFITS
========================================================= */

.argos-outsourcing-benefits{
  padding:10px 0 110px;
}

.argos-outsourcing-benefits-grid{
  display:grid;

  grid-template-columns:
    minmax(0,1fr)
    minmax(0,1fr);

  gap:80px;

  align-items:center;
}

.argos-outsourcing-benefits-left{
  width:100%;
  min-width:0;
}

.argos-outsourcing-benefits-image{
  width:100%;
  min-width:0;

  position:relative;

  display:flex;
  align-items:center;
  justify-content:center;
}

.argos-outsourcing-benefits-left span{
  display:inline-block;

  color:#8A05BE;

  font-size:12px;
  font-weight:700;
  letter-spacing:2px;

  margin-bottom:20px;
}

.argos-outsourcing-benefits-left h2{
  color:#3e5055;

  font-size:clamp(34px,3vw,48px);

  line-height:1.05;

  letter-spacing:-2px;

  margin-bottom:42px;

  max-width:none;

  font-family:var(--heading-font);
}

.argos-outsourcing-benefit-item{
  display:flex;
  gap:22px;

  margin-bottom:26px;
}

.argos-outsourcing-benefit-item:last-child{
  margin-bottom:0;
}

.argos-outsourcing-check{
  width:48px;
  height:48px;

  flex-shrink:0;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  background:#8A05BE;

  margin-top:2px;
}

.argos-outsourcing-check i{
  color:#fff;
  font-size:22px;
}

.argos-outsourcing-benefit-item h3{
  color:#3e5055;

  font-size:24px;

  margin-bottom:8px;

  letter-spacing:-1px;

  line-height:1.1;

  font-family:var(--heading-font);
}

.argos-outsourcing-benefit-item p{
  color:#4f5b61;

  line-height:1.7;

  margin:0;
}

.argos-outsourcing-benefits-image::before{
  content:"";

  position:absolute;

  inset:10%;

  border-radius:50%;

  background:
    radial-gradient(
      rgba(138,5,190,.12),
      transparent 70%
    );

  filter:blur(50px);
}

.argos-outsourcing-benefits-image img{
  position:relative;
  z-index:2;

  width:100%;
  max-width:560px;

  display:block;
}

/* =========================================================
   CTA
========================================================= */

.argos-outsourcing-cta{
  position:relative;

  padding:110px 0;

  background:
    linear-gradient(
      180deg,
      #f8f8fb 0%,
      #f1f1f4 100%
    );

  text-align:center;

  overflow:hidden;
}

.argos-outsourcing-cta::before{
  content:"";

  position:absolute;

  width:520px;
  height:520px;

  border-radius:50%;

  background:
    radial-gradient(
      rgba(138,5,190,0.06),
      transparent 70%
    );

  top:-260px;
  right:-180px;

  pointer-events:none;
}

.argos-outsourcing-cta h2{
  color:#3e5055;

  font-size:clamp(32px,4vw,48px);

  line-height:1.15;

  letter-spacing:-1px;

  margin-bottom:20px;

  font-weight:700;

  font-family:var(--heading-font);
}

.argos-outsourcing-cta p{
  max-width:720px;

  margin:0 auto 34px;

  color:#3d4348;

  font-size:18px;
  line-height:1.7;
}

.argos-outsourcing-btn{
  margin-top:8px;

  font-family:"Nunito",sans-serif;
  font-size:18px;
  font-weight:600;

  background:
    linear-gradient(
      135deg,
      #8A05BE 0%,
      #9d1fd1 100%
    );

  color:#fff !important;
  text-decoration:none;

  padding:16px 44px 16px 28px;

  border-radius:10px;
  border:none;

  display:inline-block;

  position:relative;
  overflow:hidden;

  cursor:pointer;

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.argos-outsourcing-btn:hover{
  transform:scale(1.04);

  box-shadow:
    0 12px 30px rgba(138,5,190,0.35);

  color:#fff !important;
}

.argos-outsourcing-btn::before{
  content:"";

  position:absolute;
  inset:0;

  border-radius:10px;

  background:
    linear-gradient(
      120deg,
      rgba(255,255,255,0) 30%,
      rgba(255,255,255,0.25) 50%,
      rgba(255,255,255,0) 70%
    );

  opacity:0;

  transform:translateX(-100%);

  transition:
    all .5s ease;
}

.argos-outsourcing-btn:hover::before{
  opacity:1;

  transform:translateX(100%);
}

.argos-outsourcing-btn::after{
  content:"";

  position:absolute;

  right:18px;
  top:50%;

  width:8px;
  height:8px;

  border-right:2px solid #fff;
  border-top:2px solid #fff;

  transform:
    translateY(-50%)
    rotate(45deg);

  transition:
    transform .25s ease;
}

.argos-outsourcing-btn:hover::after{
  transform:
    translateY(-50%)
    translateX(4px)
    rotate(45deg);
}

/* =========================================================
   REVEAL
========================================================= */

.reveal{
  opacity:0;

  transform:translateY(40px);

  transition:
    opacity .7s ease,
    transform .7s ease;
}

.reveal.active{
  opacity:1;
  transform:none;
}

.delay-1{
  transition-delay:.1s;
}

.delay-2{
  transition-delay:.2s;
}

.delay-3{
  transition-delay:.3s;
}

.delay-4{
  transition-delay:.4s;
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width:1100px){

  .argos-outsourcing-structure-grid{
    grid-template-columns:1fr 1fr;
  }

}

@media (max-width:991px){

  .argos-outsourcing-intro-grid,
  .argos-outsourcing-structure-grid,
  .argos-outsourcing-benefits-grid{
    grid-template-columns:1fr;
  }

}

@media (max-width:768px){

  .argos-outsourcing-hero{
    height:520px;
  }

  .argos-outsourcing-hero-content{
    padding-top:170px;
    padding-left:24px;
    padding-right:24px;
  }

  .argos-outsourcing-hero-content h1{
    font-size:40px;
  }

  .argos-outsourcing-main-card,
  .argos-outsourcing-mini-card{
    padding:30px;
  }

  .argos-outsourcing-main-card h3{
    font-size:34px;
  }

  .argos-outsourcing-benefit-item{
    flex-direction:column;
    gap:18px;
  }

}

/* =========================================================
QUEM SOMOS - ARGOS
========================================================= */

.argos-about-page{
  width:100%;
  overflow:hidden;
}

/* CONTAINER */

.argos-about-page .argos-about-container{
  width:100%;
  max-width:1280px;
  margin:0 auto;
}

/* =========================================================
HERO
========================================================= */

.argos-about-page .argos-about-hero{
  position:relative;

  padding:140px 24px 110px;

  overflow:hidden;

  background:
    linear-gradient(
      180deg,
      #f8f7fa 0%,
      #f5f3f8 100%
    );
}

.argos-about-page .argos-about-hero::before{
  content:"";

  position:absolute;

  width:900px;
  height:900px;

  border-radius:50%;

  background:
    radial-gradient(
      rgba(138,5,190,0.08),
      transparent 70%
    );

  top:-420px;
  right:-260px;

  pointer-events:none;
}

.argos-about-page .argos-about-hero-grid{
  display:grid;

  grid-template-columns:1fr 1fr;

  align-items:center;

  gap:64px;
}

.argos-about-page .argos-about-hero-content{
  position:relative;

  z-index:2;
}

.argos-about-page .argos-about-tag{
  display:inline-flex;

  align-items:center;

  padding:10px 18px;

  border-radius:999px;

  background:rgba(138,5,190,0.10);

  color:#8A05BE;

  font-size:13px;
  font-weight:700;

  letter-spacing:1.5px;

  margin-bottom:24px;
}

.argos-about-page .argos-about-hero h1{
  color:#111111;

  font-size:clamp(36px,4vw,56px);

  line-height:1.08;

  letter-spacing:-1.5px;

  font-weight:700;

  font-family:var(--heading-font);

  max-width:720px;
}

/* IMAGEM */

.argos-about-page .argos-about-hero-image{
  position:relative;
}

.argos-about-page .argos-about-hero-image::after{
  content:"";

  position:absolute;
  inset:0;

  background:
    linear-gradient(
      90deg,
      rgba(245,243,248,0.65) 0%,
      rgba(245,243,248,0.18) 18%,
      rgba(245,243,248,0) 40%
    ),
    linear-gradient(
      180deg,
      rgba(245,243,248,0) 72%,
      rgba(245,243,248,0.42) 90%,
      rgba(245,243,248,0.92) 100%
    );

  pointer-events:none;
}

.argos-about-page .argos-about-hero-image img{
  width:100%;

  display:block;

  object-fit:cover;

  border-radius:32px;

  box-shadow:
    0 30px 80px rgba(0,0,0,0.08);
}

/* =========================================================
SECTION HEADER
========================================================= */

.argos-about-page .argos-about-section-header{
  max-width:760px;

  margin-bottom:70px;
}

.argos-about-page .argos-about-section-header span{
  display:inline-block;

  margin-bottom:18px;

  color:#8A05BE;

  font-size:13px;
  font-weight:700;

  letter-spacing:1.6px;
}

.argos-about-page .argos-about-section-header h2{
  color:#111111;

  font-size:clamp(34px,4vw,54px);

  line-height:1.08;

  letter-spacing:-1.5px;
}

/* =========================================================
TIMELINE
========================================================= */

.argos-about-page .argos-about-history{
  padding:0 24px 150px;
}

.argos-about-page .argos-about-timeline{
  position:relative;

  display:flex;
  flex-direction:column;

  gap:50px;

  max-width:980px;
}

.argos-about-page .argos-about-timeline-progress{
  position:absolute;

  left:39px;
  top:0;
  bottom:0;

  width:2px;

  background:
    linear-gradient(
      180deg,
      rgba(138,5,190,0),
      rgba(138,5,190,0.8),
      rgba(138,5,190,0)
    );
}

.argos-about-page .argos-about-timeline-step{
  position:relative;

  display:flex;

  align-items:flex-start;

  gap:34px;
}

.argos-about-page .argos-about-timeline-marker{
  position:relative;

  width:80px;

  display:flex;

  justify-content:center;

  flex-shrink:0;
}

.argos-about-page .argos-about-timeline-glow{
  position:absolute;

  width:54px;
  height:54px;

  border-radius:50%;

  background:rgba(138,5,190,0.15);

  filter:blur(12px);

  top:-3px;
}

.argos-about-page .argos-about-timeline-circle{
  position:relative;

  width:48px;
  height:48px;

  border-radius:50%;

  background:#ffffff;

  border:2px solid #8A05BE;

  z-index:2;

  box-shadow:
    0 10px 30px rgba(138,5,190,0.16);
}

.argos-about-page .argos-about-timeline-circle::before{
  content:"";

  position:absolute;

  width:14px;
  height:14px;

  border-radius:50%;

  background:#8A05BE;

  top:50%;
  left:50%;

  transform:translate(-50%,-50%);
}

.argos-about-page .argos-about-timeline-card{
  flex:1;

  background:#ffffff;

  border:1px solid rgba(138,5,190,0.08);

  border-radius:32px;

  padding:42px;

  box-shadow:
    0 25px 60px rgba(0,0,0,0.04);
}

.argos-about-page .argos-about-timeline-card span{
  display:inline-block;

  margin-bottom:14px;

  color:#8A05BE;

  font-size:12px;
  font-weight:700;

  letter-spacing:2px;
}

.argos-about-page .argos-about-timeline-card h3{
  color:#111111;

  font-size:32px;

  margin-bottom:18px;
}

.argos-about-page .argos-about-timeline-card p{
  color:#5f5f5f;

  font-size:17px;

  line-height:1.9;
}

/* =========================================================
VÍDEO INSTITUCIONAL
========================================================= */

.argos-about-page .argos-about-video{
  padding:0 24px 150px;
}

.argos-about-page .argos-about-video .argos-about-section-header p{
  margin-top:20px;

  color:#5f5f5f;

  font-size:18px;

  line-height:1.8;

  max-width:700px;
}

.argos-about-page .argos-about-video-wrapper{
  overflow:hidden;

  border-radius:32px;

  background:#ffffff;

  border:1px solid rgba(138,5,190,0.08);

  box-shadow:
    0 30px 80px rgba(0,0,0,0.08);
}

.argos-about-page .argos-about-video-wrapper iframe{
  width:100%;

  aspect-ratio:16/9;

  display:block;

  border:0;
}

/* =========================================================
VALUES
========================================================= */

.argos-about-page .argos-about-values{
  padding:0 24px 150px;
}

.argos-about-page .argos-about-values-grid{
  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:28px;
}

.argos-about-page .argos-about-value-card{
  background:#fafafa;

  border:1px solid #ededed;

  border-radius:30px;

  padding:42px;

  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.argos-about-page .argos-about-value-card:hover{
  transform:translateY(-6px);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.06);
}

.argos-about-page .argos-about-value-card h3{
  color:#111111;

  font-size:28px;

  margin-bottom:20px;
}

.argos-about-page .argos-about-value-card p{
  color:#5f5f5f;

  font-size:16px;

  line-height:1.8;
}

/* =========================================================
ANIMAÇÃO
========================================================= */

.fade-up{
  opacity:0;

  transform:translateY(40px);

  animation:argosFadeUp .9s ease forwards;
}

@keyframes argosFadeUp{

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

}

/* =========================================================
RESPONSIVO
========================================================= */

@media(max-width:980px){

  .argos-about-page .argos-about-hero{
    padding:120px 24px 80px;
  }

  .argos-about-page .argos-about-hero-grid{
    grid-template-columns:1fr;

    gap:50px;
  }

  .argos-about-page .argos-about-hero h1{
    max-width:100%;
  }

  .argos-about-page .argos-about-values-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:680px){

  .argos-about-page .argos-about-hero{
    padding:110px 20px 70px;
  }

  .argos-about-page .argos-about-hero h1{
    font-size:clamp(32px,8vw,44px);

    line-height:1.05;

    letter-spacing:-1px;
  }

  .argos-about-page .argos-about-hero-image img{
    border-radius:24px;
  }

  .argos-about-page .argos-about-timeline-step{
    gap:18px;
  }

  .argos-about-page .argos-about-timeline-marker{
    width:54px;
  }

  .argos-about-page .argos-about-timeline-card,
  .argos-about-page .argos-about-value-card{
    padding:28px;
  }

  .argos-about-page .argos-about-video{
    padding:0 20px 120px;
  }

  .argos-about-page .argos-about-video-wrapper{
    border-radius:24px;
  }

  .argos-about-page .argos-about-video .argos-about-section-header p{
    font-size:16px;
  }

}

@media(max-width:480px){

  .argos-about-page .argos-about-hero h1{
    font-size:30px;
  }

  .argos-about-page .argos-about-section-header h2{
    font-size:30px;
  }

  .argos-about-page .argos-about-timeline-card h3{
    font-size:24px;
  }

}


/* =========================================================
SOLUTIONS PAGE
========================================================= */

.solutions-hero {
  padding: 190px 0 120px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(138, 5, 190, 0.10), transparent 30%),
    radial-gradient(circle at bottom left, rgba(138, 5, 190, 0.07), transparent 35%);
}

.solutions-hero-content {
  max-width: 920px;
}

.solutions-label {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(138, 5, 190, 0.08);
  color: #8A05BE;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.solutions-hero h1 {
  font-size: clamp(2.5rem, 4.4vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #141414;
  margin-bottom: 32px;
  max-width: 900px;
}

.solutions-hero p {
  max-width: 760px;
  font-size: 1.18rem;
  line-height: 1.9;
  color: #5f5f5f;
  margin-bottom: 22px;
}

.solutions-hero p:last-child {
  margin-bottom: 0;
}

/* SOLUTION SECTION */

.solution-section {
  padding-bottom: 110px;
}

.solution-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.solution-layout.reverse .solution-image-wrapper {
  order: 2;
}

.solution-layout.reverse .solution-text {
  order: 1;
}

.solution-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
}

.solution-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.solution-image-wrapper:hover .solution-image {
  transform: scale(1.03);
}

.solution-text {
  max-width: 540px;
}

.solution-text h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #141414;
  margin-bottom: 24px;
}

.solution-text p {
  font-size: 1.08rem;
  line-height: 1.9;
  color: #5f5f5f;
  margin-bottom: 38px;
}

/* BOTÕES */

.solution-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.solution-primary-btn,
.solution-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

/* BOTÃO ROXO */

.solution-primary-btn {
  background: #8A05BE;
  color: #ffffff;
}

.solution-primary-btn:hover {
  transform: translateY(-2px);
  background: #7a04a8;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(138, 5, 190, 0.18);
}

/* BOTÃO SECUNDÁRIO */

.solution-secondary-btn {
  border: 1px solid #d9d9d9;
  background: transparent;
  color: #141414;
}

.solution-secondary-btn:hover {
  transform: translateY(-2px);
  border-color: #8A05BE;
  color: #141414;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* RESPONSIVO */

@media (max-width: 1100px) {

  .solution-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .solution-layout.reverse .solution-image-wrapper,
  .solution-layout.reverse .solution-text {
    order: initial;
  }

  .solution-image {
    height: 420px;
  }

}

@media (max-width: 768px) {

  .solutions-hero {
    padding: 150px 0 80px;
  }

  .solution-section {
    padding-bottom: 80px;
  }

  .solution-image {
    height: 340px;
  }

  .solution-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .solution-primary-btn,
  .solution-secondary-btn {
    width: 100%;
  }

}


/* =========================================================
   POLÍTICA DE PRIVACIDADE
========================================================= */

.privacy-policy {
  background: #ffffff;
}

.privacy-policy__container {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}

.privacy-policy__hero {
  padding: 140px 0 80px;
  background:
    linear-gradient(
      180deg,
      rgba(138, 5, 190, 0.08) 0%,
      rgba(138, 5, 190, 0.02) 100%
    );
  border-bottom: 1px solid #ececec;
}

.privacy-policy__tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(138, 5, 190, 0.12);
  color: #6b21a8;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.privacy-policy__title {
  margin: 0 0 16px;
  font-size: clamp(42px, 5vw, 58px);
  line-height: 1.05;
  font-weight: 700;
  color: #111827;
}

.privacy-policy__subtitle {
  max-width: 720px;
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #6b7280;
}

.privacy-policy__content {
  padding: 60px 0 80px;
}

.privacy-policy__section {
  margin-bottom: 26px;
}

.privacy-policy__section h2 {
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  color: #111827;
}

.privacy-policy__section p {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
}

.privacy-policy__section ul {
  margin: 14px 0;
  padding-left: 22px;
}

.privacy-policy__section li {
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
}

.privacy-policy__contact-box {
  margin-top: 18px;
  padding: 22px;
  border-radius: 18px;
  background: #f8f5fc;
  border: 1px solid rgba(138, 5, 190, 0.12);
}

.privacy-policy__contact-box p {
  margin-bottom: 4px;
}

.privacy-policy__contact-box p:last-child {
  margin-bottom: 0;
}

.privacy-policy__updated {
  margin-top: 18px;
  font-size: 14px !important;
  color: #9ca3af !important;
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 768px) {

  .privacy-policy__hero {
    padding: 120px 0 65px;
  }

  .privacy-policy__content {
    padding: 50px 0 70px;
  }

  .privacy-policy__title {
    font-size: 42px;
  }

  .privacy-policy__subtitle,
  .privacy-policy__section p,
  .privacy-policy__section li {
    font-size: 15px;
  }

  .privacy-policy__section h2 {
    font-size: 24px;
  }

  .privacy-policy__section {
    margin-bottom: 22px;
  }

}


/* =========================================================
   TERMOS DE USO
========================================================= */

.terms-page {
  background: #ffffff;
}

.terms-page__container {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}

.terms-page__hero {
  padding: 140px 0 80px;
  background:
    linear-gradient(
      180deg,
      rgba(138, 5, 190, 0.08) 0%,
      rgba(138, 5, 190, 0.02) 100%
    );
  border-bottom: 1px solid #ececec;
}

.terms-page__tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(138, 5, 190, 0.12);
  color: #6b21a8;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.terms-page__title {
  margin: 0 0 16px;
  font-size: clamp(42px, 5vw, 58px);
  line-height: 1.05;
  font-weight: 700;
  color: #111827;
}

.terms-page__subtitle {
  max-width: 720px;
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #6b7280;
}

.terms-page__content {
  padding: 60px 0 80px;
}

.terms-page__section {
  margin-bottom: 26px;
}

.terms-page__section h2 {
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  color: #111827;
}

.terms-page__section p {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
}

.terms-page__section ul {
  margin: 14px 0;
  padding-left: 22px;
}

.terms-page__section li {
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
}

.terms-page__contact-box {
  margin-top: 18px;
  padding: 22px;
  border-radius: 18px;
  background: #f8f5fc;
  border: 1px solid rgba(138, 5, 190, 0.12);
}

.terms-page__contact-box p {
  margin-bottom: 4px;
}

.terms-page__contact-box p:last-child {
  margin-bottom: 0;
}

.terms-page__updated {
  margin-top: 18px;
  font-size: 14px !important;
  color: #9ca3af !important;
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 768px) {

  .terms-page__hero {
    padding: 120px 0 65px;
  }

  .terms-page__content {
    padding: 50px 0 70px;
  }

  .terms-page__title {
    font-size: 42px;
  }

  .terms-page__subtitle,
  .terms-page__section p,
  .terms-page__section li {
    font-size: 15px;
  }

  .terms-page__section h2 {
    font-size: 24px;
  }

  .terms-page__section {
    margin-bottom: 22px;
  }

}

/* =========================================================
CONTACT PAGE
========================================================= */

.contact-hero {
  padding: 190px 0 120px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(138, 5, 190, 0.10), transparent 30%),
    radial-gradient(circle at bottom left, rgba(138, 5, 190, 0.07), transparent 35%);
}

.contact-hero-content {
  max-width: 860px;
}

.contact-label {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(138, 5, 190, 0.08);
  color: #8A05BE;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.contact-hero h1 {
  font-size: clamp(2.5rem, 4.5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: #141414;
  margin-bottom: 30px;
  max-width: 760px;
}

.contact-hero p {
  max-width: 760px;
  font-size: 1.18rem;
  line-height: 1.9;
  color: #5f5f5f;
}

/* CONTACT SECTION */

.contact-section {
  padding-bottom: 120px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}

/* INFO */

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contact-info-block {
  padding-bottom: 28px;
  border-bottom: 1px solid #ececec;
}

.contact-info-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.contact-icon {
  color: #8A05BE;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: #8A05BE;
}

.contact-info-link {
  font-size: 1.12rem;
  line-height: 1.7;
  color: #141414;
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-info-link:hover {
  color: #8A05BE;
}

.contact-info-text {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #5f5f5f;
}

.contact-map {
  margin-top: 22px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #ececec;
}

.contact-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}

/* FORM */

.contact-form-wrapper {
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 32px;
  padding: 42px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-field {
  display: flex;
  flex-direction: column;
}

.contact-field label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #141414;
  margin-bottom: 12px;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid #dddddd;
  border-radius: 18px;
  padding: 18px 20px;
  font-size: 1rem;
  font-family: inherit;
  color: #141414;
  background: #ffffff;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: #8A05BE;
  box-shadow: 0 0 0 4px rgba(138, 5, 190, 0.08);
}

.contact-field textarea {
  resize: vertical;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 999px;
  padding: 18px 30px;
  background: #8A05BE;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  background: #7a04a8;
  box-shadow: 0 12px 30px rgba(138, 5, 190, 0.18);
}

/* RESPONSIVO */

@media (max-width: 1100px) {

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

}

@media (max-width: 768px) {

  .contact-hero {
    padding: 150px 0 80px;
  }

  .contact-section {
    padding-bottom: 80px;
  }

  .contact-form-wrapper {
    padding: 28px;
    border-radius: 24px;
  }

}


/* ==================================================
   Holerite Web
================================================== */

.holerite-page {
  padding: 220px 0 100px;
}

.holerite-hero {
  max-width: 1050px;
  margin: 0 auto;
  text-align: center;
}

.holerite-hero h1 {
  margin-bottom: 36px;
  line-height: 1.3;
}

.holerite-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 16px 32px;

  background: #8A05BE;
  color: #fff;

  border-radius: 12px;

  text-decoration: none;
  font-weight: 600;

  transition: .25s ease;
}

.holerite-btn:hover {
  background: #7304a0;
  color: #fff;
  transform: translateY(-2px);
}

.holerite-btn i {
  font-size: 16px;
  opacity: .9;
}

.holerite-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;

  margin-top: 80px;
}

.step-card {
  background: #fff;

  border: 1px solid rgba(0, 0, 0, .06);

  border-radius: 18px;

  padding: 24px;

  text-align: center;

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.step-card:hover {
  transform: translateY(-4px);

  box-shadow:
    0 12px 35px rgba(0, 0, 0, .06);
}

.step-number {
  width: 52px;
  height: 52px;

  margin: 0 auto 18px;

  border-radius: 999px;

  background: #8A05BE;

  color: #fff;

  font-size: 16px;
  font-weight: 700;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 8px 20px rgba(138, 5, 190, .25);
}

.step-image {
  width: 100%;

  margin-bottom: 22px;
}

.step-image img {
  width: 80%;
  max-width: 260px;

  margin: 0 auto;

  display: block;

  border-radius: 12px;

  border: 1px solid rgba(0, 0, 0, .08);

  box-shadow:
    0 8px 25px rgba(0, 0, 0, .05);
}

.step-card h3 {
  margin-bottom: 10px;

  font-size: 1.1rem;
}

.step-card p {
  margin: 0;

  color: #666;

  line-height: 1.7;
}

.holerite-help {
  max-width: 900px;

  margin: 70px auto 0;

  padding: 40px;

  text-align: center;

  background: #fafafa;

  border-radius: 18px;
}

.holerite-help h2 {
  margin-bottom: 12px;
}

.holerite-help p {
  margin-bottom: 24px;

  color: #666;

  line-height: 1.8;
}

.help-btn {
  display: inline-flex;

  padding: 14px 26px;

  border: 1px solid #8A05BE;

  border-radius: 12px;

  color: #8A05BE;

  text-decoration: none;

  font-weight: 600;

  transition: .25s ease;
}

.help-btn:hover {
  background: #8A05BE;

  color: #fff;
}

/* Tablet */

@media (max-width: 991px) {

  .holerite-page {
    padding: 180px 0 80px;
  }

  .holerite-steps {
    grid-template-columns: 1fr;
  }

  .step-image img {
    width: 70%;
    max-width: 300px;
  }
}

/* Mobile */

@media (max-width: 767px) {

  .holerite-page {
    padding: 150px 0 70px;
  }

  .step-card {
    padding: 18px;
  }

  .step-image img {
    width: 75%;
    max-width: 260px;
  }

  .holerite-help {
    padding: 28px 20px;
  }
}










/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {
  background: #8A05BE;
  color: #ffffff;
  font-size: 14px;
  position: relative;
  padding-bottom: 40px;
}

.footer .footer-top {
  padding-top: 60px;
}

.footer .logo {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 24px;
}

.footer .sitename {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.footer .footer-contact {
  color: #ffffff;
}

.footer .footer-contact div {
  margin-bottom: 8px;
  line-height: 1.7;
}

.footer .social-title {
  display: block;
  margin-top: 48px;
  margin-bottom: 16px;
  padding: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.footer .social-links {
  display: flex;
  align-items: center;
}

.footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: 16px;
  text-decoration: none;
  color: rgba(255,255,255,0.85);

  transition:
    color .2s ease,
    transform .2s ease;
}

.footer .social-links a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.footer .social-links i {
  font-size: 28px;
  line-height: 1;
}

.footer .footer-links-solutions {
  padding-left: 40px;
}

.footer h4 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links li {
  margin-bottom: 10px;
}

.footer .footer-links a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  transition: color .2s ease;
}

.footer .footer-links a:hover {
  color: #ffffff;
}

.footer .copyright {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.footer .copyright p {
  margin: 0;
  color: #ffffff;
}

.footer .credits {
  margin-top: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
}

/* Tablet */

@media (max-width: 991.98px) {

  .footer .footer-about {
    margin-bottom: 40px;
  }

  .footer .footer-links-solutions {
    padding-left: 12px;
  }
}

/* Mobile */

@media (max-width: 767.98px) {

  .footer .footer-top {
    padding-top: 50px;
  }

  .footer .footer-about {
    margin-bottom: 40px;
  }

  .footer .footer-links {
    margin-bottom: 32px;
  }

  .footer .footer-links-solutions {
    padding-left: 12px;
  }

  .footer .social-title {
    margin-top: 36px;
  }

  .footer .sitename {
    font-size: 22px;
  }
}