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

:root {
    /* Cores do Design System */
    --primary-blue-900: #0A1E3A;
    --primary-blue-800: #0F2A4F;
    --primary-blue-700: #1A3A6B;
    --primary-blue-600: #2A4F8C;
    --primary-blue-500: #3D6BB3;
    --primary-blue-400: #5A8FD9;
    --primary-blue-300: #7BA8E6;
    --primary-blue-200: #A3C4F0;
    --primary-blue-100: #C7DDF5;
    
    --neutral-white: #FFFFFF;
    --neutral-grey-50: #F9FAFB;
    --neutral-grey-100: #F3F4F6;
    --neutral-grey-200: #E5E7EB;
    --neutral-grey-300: #D1D5DB;
    --neutral-grey-400: #9CA3AF;
    --neutral-grey-500: #6B7280;
    --neutral-grey-600: #4B5563;
    --neutral-grey-700: #374151;
    --neutral-grey-800: #1F2937;
    --neutral-grey-900: #111827;
    
    /* Tipografia */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

body {
    font-family: var(--font-primary);
    color: var(--neutral-grey-800);
    line-height: 1.6;
    background-color: var(--neutral-white);
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background-color: var(--neutral-white);
    border-bottom: 1px solid var(--neutral-grey-200);
    z-index: 1000;
    padding: 1rem 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0 auto;
}

.nav-links a {
    text-decoration: none;
    color: var(--neutral-grey-700);
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.3s, font-weight 0.3s;
}

.nav-links a:hover {
    color: var(--primary-blue-600);
}

.nav-links a.active {
    font-weight: 700;
    color: var(--primary-blue-900);
}

/* Desktop: prevent nav link underline (ex.: "Contato") */
@media (min-width: 768px) {
  .nav-links a,
  .nav-links a:link,
  .nav-links a:visited,
  .nav-links a:hover,
  .nav-links a:active,
  .nav-links a:focus,
  .nav-links a:focus-visible,
  .nav-links a * {
    text-decoration: none !important;
  }
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary-blue-900);
    color: var(--neutral-white);
}

.btn-primary:hover {
    background-color: var(--primary-blue-800);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 30, 58, 0.3);
}

.btn-icon {
    width: 18px;
    height: 18px;
}

.btn-diagnostico {
    border-radius: 32px;
    background-color: #001184;
}

.btn-diagnostico:hover {
    background-color: #0015a0;
}

.btn-solucoes {
    border-radius: 32px;
    background-color: #7C828D;
    color: var(--neutral-white);
    border: none;
}

.btn-solucoes:hover {
    background-color: #6a7079;
    color: var(--neutral-white);
}

.btn-contato {
    border-radius: 32px;
    background-color: var(--neutral-white);
    color: #183047;
    border: 1px solid #7C828D;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-contato:hover {
    background-color: #7C828D;
    color: var(--neutral-white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-blue-900);
    border: 1px solid var(--primary-blue-900);
}

.btn-secondary:hover {
    background-color: var(--primary-blue-900);
    color: var(--neutral-white);
}

.btn-ghost {
    background-color: transparent;
    color: var(--primary-blue-900);
}

.btn-ghost:hover {
    background-color: var(--neutral-grey-100);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    padding: 30px 0 10px 0;
    background: linear-gradient(135deg, var(--neutral-white) 0%, var(--neutral-grey-50) 100%);
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-left {
    max-width: 605px;
}

.tagline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue-600);
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--primary-blue-900);
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line-1 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

.title-line-2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

.title-icon {
    width: 40px;
    height: 40px;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.title-icon-folder {
    width: 45px;
    height: 45px;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.title-line-2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--neutral-grey-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stat-icons {
    display: flex;
    gap: 3px;
    align-items: center;
}

.stat-icon {
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue-400), var(--primary-blue-600));
}

.stat-state-icon {
    width: 36px;
    height: 36px;
}

.stat-specialist-icon {
    width: 33px;
    height: 33px;
    border-radius: 50%;
}

.stat-icon-project {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-project:first-child {
    background-color: #A9F8FF !important;
}

.stat-icon-project:nth-child(2) {
    background-color: #5EDCFF !important;
}

.stat-icon-project:nth-child(3) {
    background-color: #29C3FF !important;
}

.stat-icon-project img {
    width: 20px;
    height: 20px;
}

.stat-icon-project-circle {
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background-color: #29C3FF;
    border: 2px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.stat-icon-project-circle img {
    width: 20px;
    height: 20px;
}

.stat-content {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.stat-bar {
    width: 12px;
    height: 80px;
    background: linear-gradient(180deg, var(--primary-blue-500), var(--primary-blue-700));
    border-radius: var(--radius-sm);
}

.stat-bar-gradient {
    background: linear-gradient(180deg, #2052CB 0%, #29C3FF 50%, #FFFFFF 100%);
}

.stat-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue-900);
    margin-bottom: 0.25rem;
}

.stat-text p {
    font-size: 0.875rem;
    color: var(--neutral-grey-600);
}

/* Hero Right Visual */
.hero-right {
    position: relative;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 856px;
    background: linear-gradient(180deg, #0331B4 0%, #38A6F9 100%);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
    gap: 1.5rem;
    align-content: start;
    overflow: visible;
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: visible;
}

.conn-line {
    stroke: white;
    stroke-width: 1.5;
    stroke-dasharray: 5, 5;
    opacity: 0.6;
}

.conn-circle {
    fill: white;
}

.visual-card {
    background: var(--neutral-white);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.card-large {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    width: 270px;
    height: 210px;
    border-radius: 24px;
    justify-self: start;
}

.card-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-large h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neutral-white);
    margin-bottom: 4px;
    text-align: center;
}

.card-large p {
    color: var(--neutral-white);
    margin-bottom: 4px;
    font-size: 18px;
    text-align: center;
    font-weight: 600;
}

.card-separator {
    width: 100%;
    height: auto;
    margin: 0;
}

.card-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
    justify-content: space-between;
}

.card-icons {
    display: flex;
    gap: 1px;
}

.btn-portfolio {
    border-radius: 32px;
    background-color: var(--neutral-white);
    color: var(--primary-blue-900);
    border: none;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-portfolio:hover {
    background-color: var(--neutral-grey-100);
}

.card-icons {
    display: flex;
    gap: 1px;
    align-items: center;
}

.card-icon {
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(32, 82, 203, 1) 0%, rgba(41, 195, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
}

.card-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.card-solutions {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    background: #7FCAFF;
    width: 280px;
    height: 300px;
    border-radius: 12px;
    justify-self: center;
    align-self: start;
}

.card-solutions h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue-900);
    margin-bottom: 1rem;
}

.solutions-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.solutions-list li {
    height: 36px;
    padding: 0 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    color: var(--neutral-grey-700);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 232px;
}

.solutions-list li .arrow {
    position: absolute;
    right: 0.75rem;
    color: var(--neutral-grey-700);
}

.card-certificate {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    width: 130px;
    height: 60px;
    border-radius: 12px;
    justify-self: end;
    align-self: center;
    padding: 0.75rem;
}

.cert-icon-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #C5DFF1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cert-icon-img {
    width: 16px;
    height: 16px;
}

.card-certificate span {
    color: var(--primary-blue-900);
    font-size: 0.7rem;
    font-weight: 500;
    line-height: 1.2;
    flex: 1;
    min-width: 0;
}

.card-sectors {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    background: rgba(255, 255, 255, 0.95);
    width: 310px;
    height: 180px;
    border-radius: 12px;
    justify-self: start;
    align-self: start;
    justify-content: flex-start;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
}

.sectors-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 12px;
}

.sectors-header span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue-900);
}

.sectors-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #041746;
}

.sectors-tags {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0;
}

.sectors-row {
    display: flex;
    gap: 0.5rem;
    width: 100%;
}

.sectors-row span {
    flex: 1;
    min-width: 0;
}

.sectors-tags span {
    padding: 0.5rem 1rem;
    background: #FFFFFF;
    border-radius: 1rem;
    font-size: 0.875rem;
    color: var(--primary-blue-500);
    text-align: center;
    display: block;
    border: 1px solid #005AB5;
}

.card-consultoria {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: #0C123F;
    color: var(--neutral-white);
    width: 120px;
    height: 130px;
    border-radius: 12px;
    justify-self: end;
    align-self: start;
}

.card-consultoria span {
    color: var(--neutral-white);
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
}

.consultoria-icon-img {
    width: 28px;
    height: 28px;
}

/* Partners Section */
.partners {
    padding: 4rem 0;
    background: var(--neutral-white);
    margin-top: 0;
}

.separator-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    width: 100%;
}

.separator-bottom {
    margin-top: 3rem;
    margin-bottom: 0;
}

.separator-img {
    width: min(100%, 1152px);
    max-width: 1152px;
    height: clamp(14px, 4.5vw, 42px);
    object-fit: contain;
    display: block;
}

.separator-line {
    width: min(100%, 1152px);
    max-width: 1152px;
    height: clamp(14px, 4.5vw, 42px);
    object-fit: contain;
    display: block;
}

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

.partners-title {
    font-size: 0.875rem;
    color: var(--neutral-grey-500);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    width: auto;
}

/* Section Styles */
.section-title {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue-900);
    text-align: center;
    margin-bottom: 1.5rem;
}

.cases .section-title {
    font-family: var(--font-primary);
    font-weight: 800;
    color: #183047;
}

.section-description {
    font-size: 1.125rem;
    color: var(--neutral-grey-600);
    line-height: 1.7;
    max-width: 733px;
    margin: 0 auto 2rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--neutral-grey-600);
    text-align: center;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.link-arrow {
    color: var(--primary-blue-600);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.link-arrow:hover {
    color: var(--primary-blue-800);
}

/* About Section */
.about {
    padding: 1rem 0 5.25rem 0;
    background: var(--neutral-white);
}

.about-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 260px 1fr 360px;
    grid-template-rows: auto auto;
    gap: 3rem;
    align-items: center;
    justify-items: center;
    width: 100%;
}

.about {
    padding: 1rem 0 5.25rem 0;
    background: var(--neutral-white);
}

.about .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.differentiators .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-content-center {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    text-align: center;
    max-width: 600px;
    padding: 2rem;
    margin: 0 auto;
    justify-self: center;
    width: 100%;
}

/* Responsividade para Quem Somos - sempre centralizado */
@media (max-width: 1199.98px) {
    .about-title {
        font-size: 2.25rem;
    }
    
    .about-description {
        font-size: 0.9375rem;
    }
    
    .about-content-center {
        max-width: 100%;
        padding: 1.5rem;
    }
}

@media (max-width: 991.98px) {
    .about-title {
        font-size: 2rem;
    }
    
    .about-description {
        font-size: 0.875rem;
    }
    
    .about-content-center {
        padding: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .about-title {
        font-size: 1.75rem;
    }
    
    .about-description {
        font-size: 0.8125rem;
    }
    
    .about-content-center {
        padding: 1rem;
    }
}

@media (max-width: 575.98px) {
/* Hero Sobre (12+ / 99%) — prevent overlap with the hero text on small screens */
.hero-sobre-content {
    padding-bottom: 0;
}

.stats-cards-mobile {
    position: static;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 18px;
    justify-content: center;
    box-sizing: border-box;
}

.stat-card-left-mobile,
.stat-card-right-mobile {
    position: static;
    left: auto;
    right: auto;
}

.stat-card-mobile {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    box-sizing: border-box;
}

    .about-title {
        font-size: 1.5rem;
    }
    
    .about-description {
        font-size: 0.75rem;
    }
    
    .about-content-center {
        padding: 0.75rem;
    }
}

/* ---------- SERVICES: card fixes (responsive) ---------- */

/* Card 3 (Segurança Eletrônica & Automação): keep the icon circle perfectly round */
.card-eletronica .icon-circle {
  width: clamp(72px, 18vw, 120px);
  height: clamp(72px, 18vw, 120px);
  aspect-ratio: 1 / 1;
  flex: 0 0 auto;
}

.card-eletronica .icon-circle img {
  width: clamp(32px, 7vw, 48px);
  height: clamp(32px, 7vw, 48px);
  object-fit: contain;
}

/* Card 2 (Proteção Residencial e Executiva): give title/text more usable width on smaller screens */
@media (max-width: 1199.98px) {
  .card-protecao-content {
    max-width: min(520px, 78%);
  }
}

@media (max-width: 575.98px) {
  .card-protecao-content {
    max-width: 100%;
  }
}

/* Card 5 (Prevenção de Perdas na Cadeia Logística): keep text + image inside the card as it narrows */
@media (max-width: 991.98px) {
  .card-prevencao {
    height: auto;
    min-height: 670px;
  }

  .card-prevencao-inner {
    height: auto;
  }

  .inner-text {
    font-size: clamp(1.05rem, 2.6vw, 1.25rem);
  }

  .icon-prevencao {
    height: clamp(220px, 50vw, 320px);
  }
}

.about-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 500;
    color: #1D6AD6;
    margin-bottom: 1.5rem;
}

.about-description {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 400;
    color: var(--neutral-grey-700);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-description strong {
    font-weight: 600;
}

.about-link {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: #1D6AD6;
    text-decoration: none;
    margin-top: 1rem;
    transition: opacity 0.3s;
}

.about-link:hover {
    opacity: 0.8;
}

.about-image-container {
    position: relative;
}

.about-image-container.top-left {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    justify-self: start;
}

.about-image-container.top-right {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    justify-self: end;
}

.about-image-container.bottom-left {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    justify-self: start;
}

.about-image-container.bottom-right {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    justify-self: end;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 32px;
    object-fit: cover;
}

.about-image-container.top-left .about-img {
    width: 320px;
    height: 205px;
}

.about-image-container.top-right .about-img {
    width: 240px;
    height: 370px;
}

.about-image-container.bottom-left .about-img {
    width: 350px;
    height: 225px;
}

.about-image-container.bottom-right .about-img {
    width: 360px;
    height: 240px;
}

.about-icon-badge {
    position: absolute;
    background-color: #2055CD;
    border-radius: 32px;
    border: 16px solid #FFFFFF;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-container.top-left .about-icon-badge {
    width: 78px;
    height: 78px;
    top: -20px;
    left: -20px;
}

.about-image-container.top-left .about-icon-badge img {
    width: 24px;
    height: 24px;
}

.about-image-container.top-right .about-icon-badge {
    width: 60px;
    height: 60px;
    bottom: -15px;
    right: -15px;
}

.about-image-container.top-right .about-icon-badge img {
    width: 24px;
    height: 24px;
}

.about-image-container.bottom-left .about-icon-badge {
    width: 72px;
    height: 72px;
    bottom: -18px;
    right: -18px;
}

.about-image-container.bottom-left .about-icon-badge img {
    width: 24px;
    height: 24px;
}

.about-image-container.bottom-right .about-icon-badge {
    width: 64px;
    height: 64px;
    top: -16px;
    left: -16px;
}

.about-image-container.bottom-right .about-icon-badge img {
    width: 20px;
    height: 14px;
}

/* Differentiators Section */
.differentiators {
    padding: 6rem 0;
    background: #F3F8FF;
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.diff-card {
    background: var(--neutral-white);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    position: relative;
}

.diff-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.diff-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.diff-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 120px;
    height: 40px;
    background: #F3F8FF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 800;
    color: #183047;
}

.diff-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue-900);
    margin: 1.5rem 2rem 1rem 2rem;
}

.diff-card p {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    color: var(--neutral-grey-600);
    line-height: 1.6;
    margin: 0 2rem 2rem 2rem;
}

.btn-differentiators {
    border-radius: 32px;
    background-color: #001184;
    color: var(--neutral-white);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-primary);
}

.btn-differentiators:hover {
    background-color: #000d5c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 17, 132, 0.3);
}

.diff-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue-900);
    margin-bottom: 1rem;
}

.diff-card p {
    color: var(--neutral-grey-600);
    line-height: 1.7;
}

/* Services Section */
.services {
    padding: 3.75rem 0;
    background: linear-gradient(180deg, #F3F8FF 0%, #EAF3FF 50%, #FFFFFF 100%);
}

.services-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}

.services-title-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.services-label {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    color: #1D6AD6;
    margin-bottom: 0.5rem;
}

.services-main-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 500;
    color: #183047;
    line-height: 1.3;
}

.services-link {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    color: #1D6AD6;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.3s;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.services-link:hover {
    opacity: 0.8;
}

.services-separator {
    margin-top: 4rem;
    margin-bottom: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 2rem;
}

.services-column-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.services-column-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Card 1: Projetos de Segurança */
.card-projetos {
    background: #284655;
    border-radius: var(--radius-2xl);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 600px;
    height: 425px;
}

.card-projetos-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: auto;
}

.card-projetos-title .regular {
    font-weight: 400;
    background: linear-gradient(90deg, #FFFFFF 0%, #999999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
}

.card-projetos-title .extra-bold {
    font-weight: 800;
    background: linear-gradient(90deg, #FFFFFF 0%, #999999 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
}

.card-projetos-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.5rem;
    margin-top: 50px;
}

.card-projetos-icon {
    width: 180px;
    height: 180px;
    flex-shrink: 0;
    align-self: center;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.card-projetos-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 400;
    background: linear-gradient(90deg, #FFFFFF 0%, #999999 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.5;
    width: 340px;
    max-width: 100%;
    flex: 1;
}

/* Card 2: Proteção Residencial */
.card-protecao {
    background: #011620;
    border-radius: var(--radius-2xl);
    padding: 2rem;
    position: relative;
    height: 375px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.card-protecao-content {
    position: relative;
    z-index: 3;
    max-width: 60%;
}

.icon-pessoas {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: clamp(48px, 12vw, 120px);
    height: clamp(48px, 12vw, 120px);
    z-index: 2;
}

.card-protecao-title {
    font-family: var(--font-primary);
    font-size: 32px;
    line-height: 1.2;
    color: var(--neutral-white);
    margin-bottom: 0px;
    width: 400px;
}

.card-protecao-title .extra-bold {
    font-weight: 800;
}

.card-protecao-title .regular {
    font-weight: 400;
    width: 400px;
    height: 100px;
}

.card-protecao-text {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    color: var(--neutral-white);
    line-height: 1.4;
    width: 420px;
    height: 90px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.card-protecao-text strong {
    font-weight: 800;
}

.icon-maleta {
    position: absolute;
    bottom: 3rem;
    left: 2rem;
    width: 100px;
    height: 100px;
    z-index: 1;
}

.icon-casa {
    position: absolute;
    bottom: 0;
    right: -10px;
    width: clamp(110px, 34vw, 275px);
    height: auto;
    z-index: 1;
}

/* Card 3: Segurança Eletrônica */
.card-eletronica {
    background: radial-gradient(circle at top, #94D9FB 0%, #0655FF 100%);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 600px;
    height: 310px;
}

.icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(180deg, #0787FF 0%, #0655FF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.icon-circle img {
    width: 48px;
    height: 48px;
}

.card-eletronica-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-white);
    margin-bottom: 1rem;
}

.card-eletronica-text {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--neutral-white);
    line-height: 1.6;
}

/* Card 4: Riscos Logísticos */
.card-riscos {
    background: url('icones/solucoes/Riscos Logísticos.png') center/cover;
    border-radius: var(--radius-2xl);
    padding: 2rem;
    position: relative;
    width: 600px;
    height: 270px;
    display: flex;
    flex-direction: column;
}

.card-riscos-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    line-height: 1.3;
    color: var(--neutral-white);
}

.card-riscos-title .regular {
    font-weight: 400;
}

.card-riscos-title .extra-bold {
    font-weight: 800;
}

.icon-logistico {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 59px;
    height: 62px;
}

/* Card 5: Prevenção de Perdas */
.card-prevencao {
    background: radial-gradient(ellipse at top, #29C3FF 0%, #143264 50%);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    position: relative;
    height: 670px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card-prevencao-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    line-height: 1.3;
    color: var(--neutral-white);
    margin-bottom: 2rem;
}

.card-prevencao-title .extra-bold {
    font-weight: 800;
}

.card-prevencao-title .regular {
    font-weight: 400;
}

.card-prevencao-inner {
    background: var(--neutral-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 480px;
}

.inner-text {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--neutral-grey-700);
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.icon-prevencao {
    width: 100%;
    height: 320px;
    object-fit: contain;
}

/* Cases Section */
.cases {
    padding: 0;
    background: var(--neutral-white);
}

.cases-header {
    text-align: center;
    margin-bottom: 4rem;
}

.cases-label {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    color: #1D6AD6;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.cases-description {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 200;
    color: #183047;
    max-width: 1091px;
    margin: 1.5rem auto 0;
    line-height: 1.7;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.cases .case-card {
    background: var(--neutral-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.cases .case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cases .case-image {
    width: 100%;
    height: 259px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
}

.cases .case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.cases .case-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cases .case-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--neutral-grey-200);
}

.cases .case-logo {
    font-weight: 600;
    color: var(--neutral-grey-700);
    display: flex;
    align-items: center;
}

.cases .case-logo img {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.cases .case-logo-power {
    font-weight: 700;
    color: var(--primary-blue-600);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
}

.cases .case-logo-power img {
    height: 20px;
    width: auto;
    object-fit: contain;
}

.cases .case-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue-900);
    margin-bottom: 0.75rem;
}

.cases .case-content p {
    color: var(--neutral-grey-600);
    line-height: 1.7;
    font-size: 0.9375rem;
    display: block;
}



/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--neutral-grey-50);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.faq-item {
    background: var(--neutral-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
    cursor: pointer;
}

.faq-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.faq-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-blue-500);
    color: var(--neutral-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-question h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--neutral-grey-800);
    line-height: 1.5;
}

.faq-answer {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--neutral-grey-600);
    line-height: 1.7;
    margin-top: 1rem;
    margin-left: 2rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--neutral-white);
}

.cta-banner {
    background: linear-gradient(180deg, #5295BF 0%, #66A2C6 35%, #79AAD2 58%, #9DB8D5 100%);
    border-radius: 50px;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 32px rgba(0, 0, 0, 0.13);
    height: 400px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-content {
    z-index: 2;
}

.cta-content h2 {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 400;
    color: #183047;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    color: #183047;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-cta {
    border-radius: 14px;
    background-color: #1D6AD6;
    color: var(--neutral-white);
    border: none;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cta:hover {
    background-color: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 106, 214, 0.3);
}

.cta-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 400px;
}

.cta-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    text-align: left;
}

/* Footer */
.footer {
    background: #000000;
    color: var(--neutral-grey-300);
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 0px;
}

.footer-brand {
    height: 120px;
    width: 100%;
    max-width: 400px;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand .logo img {
    height: 40px;
    width: auto;
}

.footer-brand p {
    color: var(--neutral-grey-300);
    line-height: 1.7;
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 0.875rem;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.footer-bottom {
    border-top: 1px solid var(--neutral-grey-800);
    padding: 1.5rem 0;
    width: 100%;
}

.copyright {
    color: var(--neutral-grey-500);
    font-size: 0.875rem;
    font-family: var(--font-primary);
    font-weight: 200;
    text-align: center;
    margin: 0;
    width: 100%;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--neutral-white);
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-primary);
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--neutral-grey-400);
    text-decoration: none;
    font-size: 0.875rem;
    font-family: var(--font-primary);
    font-weight: 400;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--neutral-white);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.social-icon:hover {
    opacity: 0.7;
}

.phone {
    color: var(--neutral-grey-400);
    font-size: 0.875rem;
    font-family: var(--font-primary);
    font-weight: 400;
}

/* Responsive - Breakpoints: sm: ≥576px, md: ≥768px, lg: ≥992px, xl: ≥1200px, xxl: ≥1400px */

/* XXL - Large Desktops (≥1400px) - Default styles apply */

/* XL - Desktops (<1400px) */
@media (max-width: 1399.98px) {
    .container {
        max-width: 1200px;
    }
    
    /* Hero Section - Reduzir espaços e cards adjacentes proporcionalmente */
    .hero-visual {
        width: 450px;
        height: 700px;
    }
    
    .visual-card {
        padding: 1.25rem;
        font-size: 0.875rem;
    }
    
    .card-sectors {
        width: 280px;
        height: 160px;
        font-size: 0.8125rem;
    }
    
    .card-certificate {
        width: 115px;
        height: 55px;
    }
    
    .card-certificate span {
        font-size: 0.65rem;
    }
    
    /* Card Projetos - Responsivo */
    .card-projetos-title .regular,
    .card-projetos-title .extra-bold {
        font-size: 2rem;
    }
    
    .card-projetos-text {
        font-size: 1.25rem;
        width: 300px;
        max-width: 100%;
    }
    
    .card-projetos-icon {
        width: 150px;
        height: 150px;
        max-width: 100%;
    }
    
    .card-projetos-bottom {
        flex-wrap: wrap;
    }
    
    /* Diferenciais - 2 colunas */
    .differentiators-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Cases - 2 colunas */
    .cases .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Hero Stats - Reduzir tamanho */
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-item {
        gap: 0.5rem;
    }
    
    .stat-text h3 {
        font-size: 2rem;
    }
    
    .stat-text p {
        font-size: 0.875rem;
    }
}

/* LG - Laptops, Small Desktops (<1200px) */
@media (max-width: 1199.98px) {
    /* Hero Section - Esconder retângulo direito */
    .hero-visual {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
    
    .hero-left {
        max-width: 100%;
    }
    
    /* Hero Stats - Responsivo */
    .hero-stats {
        gap: 1.25rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stat-item {
        min-width: 150px;
    }
    
    .stat-text h3 {
        font-size: 1.75rem;
    }
    
    .stat-text p {
        font-size: 0.8125rem;
    }
    
    /* Empresas Parceiras - Logos menores */
    .partners-logos {
        gap: 2rem;
    }
    
    .partner-logo {
        width: 120px;
        height: 60px;
    }
    
    /* Quem Somos - Apenas texto e botão */
    .about-image-container {
        display: none;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
    }
    
    .about-center {
        max-width: 100%;
    }
    
    .about-content-center {
        text-align: center;
        padding: 2rem;
    }
    
    /* Diferenciais - Cards menores */
    .differentiators-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 90%;
        margin: 0 auto;
    }
    
    /* Serviços - Centralizar cards */
    .services-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 1.5rem;
        max-width: 90%;
        margin: 0 auto;
    }
    
    .services-column-left,
    .services-column-right {
        width: 100%;
        align-items: center;
    }
    
    .service-card {
        max-width: 500px;
    }
    
    /* Cases - Cards menores */
    .cases .cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 90%;
        margin: 0 auto 3rem;
    }
    
    /* CTA - Responsivo (sem width fixo) */
    .cta-banner {
        grid-template-columns: 1fr 1fr;
        height: auto;
        min-height: 350px;
        padding: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

/* MD - Tablets, iPads (<992px) */
@media (max-width: 991.98px) {
    /* Hero Stats - Ainda menor */
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 130px;
    }
    
    .stat-text h3 {
        font-size: 1.5rem;
    }
    
    .stat-text p {
        font-size: 0.75rem;
    }
    
    /* Empresas Parceiras - Logos ainda menores */
    .partner-logo {
        width: 100px;
        height: 50px;
    }
    
    .partners-logos {
        gap: 1.5rem;
    }
    
    /* Card Projetos - Responsivo */
    .card-projetos-title .regular,
    .card-projetos-title .extra-bold {
        font-size: 1.75rem;
    }
    
    .card-projetos-text {
        font-size: 1.125rem;
        width: 280px;
        max-width: 100%;
    }
    
    .card-projetos-icon {
        width: 130px;
        height: 130px;
    }
    
    /* Diferenciais - 1 coluna */
    .differentiators-grid {
        grid-template-columns: 1fr;
        max-width: 85%;
    }
    
    /* Cases - 1 coluna */
    .cases .cases-grid {
        grid-template-columns: 1fr;
        max-width: 85%;
    }
    
    .cases .case-card {
        max-width: 600px;
    }
    
    /* CTA - Esconder imagem */
    .cta-image {
        display: none;
    }
    
    .cta-banner {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        text-align: center;
        min-height: 300px;
    }
    
    .cta-content {
        max-width: 100%;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    /* CTA Soluções - Texto responsivo */
    .cta-solucoes-content h2 {
        font-size: 2rem;
    }
    
    .cta-solucoes-content p {
        font-size: 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* SM - Small devices, landscape phones (<768px) */
@media (max-width: 767.98px) {
    /* Header - Sempre completo, diminuir progressivamente */
    .header {
        padding: 0.75rem 0;
    }
    
    .logo img {
        height: 50px;
    }
    
    /* Manter nav-links visível, apenas diminuir */
    .nav-links {
        gap: 1.25rem;
        font-size: 0.875rem;
    }
    
    .nav-link {
        font-size: 0.875rem;
    }
    
    .btn-contato {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .btn-contato svg {
        width: 22px;
        height: 22px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Hero Stats - Mobile */
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 110px;
        flex: 0 0 auto;
    }
    
    .stat-text h3 {
        font-size: 1.25rem;
    }
    
    .stat-text p {
        font-size: 0.6875rem;
    }
    
    .stat-icons {
        gap: 2px;
    }
    
    .stat-icon {
        width: 28px;
        height: 28px;
    }
    
    .stat-state-icon,
    .stat-specialist-icon {
        width: 26px;
        height: 26px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    /* Empresas Parceiras - Layout mobile */
    .partner-logo {
        width: 80px;
        height: 40px;
    }
    
    .partners-logos {
        gap: 1rem;
        justify-content: center;
    }
    
    /* Diferenciais e Cases - Mobile */
    .differentiators-grid,
    .services-grid,
    .cases .cases-grid {
        max-width: 95%;
        padding: 0 1rem;
    }
    
    .differentiators-card,
    .service-card,
    .cases .case-card {
        max-width: 100%;
    }
    
    /* CTA - Mobile */
    .cta-banner {
        padding: 2rem 1rem;
        min-height: 250px;
        border-radius: 30px;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 0.9375rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Extra Small - Mobile phones (<576px) */
@media (max-width: 575.98px) {
    /* Header - Logo mínima, mas mantendo informações completas */
    .header {
        padding: 0.5rem 0;
    }
    
    .logo img {
        height: 40px;
    }
    
    /* Manter nav-links visível, apenas diminuir mais */
    .nav-links {
        gap: 0.75rem;
        font-size: 0.8125rem;
    }
    
    .nav-link {
        font-size: 0.8125rem;
    }
    
    .btn-contato {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .btn-contato svg {
        width: 18px;
        height: 18px;
    }
    
    /* Card Projetos - Mobile */
    .card-projetos-title .regular,
    .card-projetos-title .extra-bold {
        font-size: 1.25rem;
    }
    
    .card-projetos-text {
        font-size: 0.9375rem;
        width: 100%;
        max-width: 200px;
    }
    
    .card-projetos-icon {
        width: 100px;
        height: 100px;
    }
    
    .card-projetos-bottom {
        flex-direction: column;
        align-items: center;
    }
    
    /* Container mobile */
    .container {
        padding: 0 1rem;
    }
    
    /* Hero mobile */
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    /* Hero Stats - Extra small */
    .hero-stats {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 200px;
    }
    
    .stat-text h3 {
        font-size: 1.125rem;
    }
    
    .stat-text p {
        font-size: 0.625rem;
    }
    
    /* Títulos mobile */
    .section-title {
        font-size: 1.5rem;
    }
    
    /* Empresas Parceiras - Logos bem pequenas */
    .partner-logo {
        width: 60px;
        height: 30px;
    }
    
    .partners-logos {
        gap: 0.75rem;
    }
    
    /* Cards mobile */
    .differentiators-card,
    .service-card,
    .cases .case-card {
        padding: 1.25rem;
    }
    
    /* CTA mobile */
    .cta-banner {
        padding: 1.5rem 1rem;
        min-height: 200px;
        border-radius: 25px;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 0.875rem;
    }
}

/* ========================================
   PÁGINA SOBRE NÓS - ESTILOS
   ======================================== */

/* Hero Section Sobre */
.hero-sobre {
    padding: 18px 0 36px 0;
    background: #F9F9F9;
    position: relative;
    min-height: 591px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-sobre-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 60px;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.hero-sobre-content {
    text-align: center;
    max-width: 557px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.tag-sobre {
    background: var(--neutral-white);
    padding: 4px 9px;
    border-radius: 32px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: #1D6AD6;
    display: inline-block;
}

.hero-sobre-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: #183047;
    text-align: center;
    margin: 0;
}

.hero-sobre-title .gradient-text {
    background: linear-gradient(156.67deg, #29C3FF 40.92%, #2052CB 80.94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    width: 100%;
    max-width: 100%;
}

.hero-sobre-description {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: #183047;
    text-align: center;
    max-width: 413px;
    line-height: 1.6;
}

.stat-card-sobre {
    background: var(--neutral-white);
    border-radius: 12px;
    padding: 20px 10px;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-shrink: 0;
}

/* Cards mobile - escondidos por padrão */
.stats-cards-mobile {
    display: none;
}

.stat-card-mobile {
    background: white;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-number-mobile {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 700;
    color: #1D6AD6;
    margin-bottom: 8px;
}

.stat-divider-mobile {
    width: 60px;
    height: 1px;
    background: #B9BEC7;
    margin: 8px 0;
}

.stat-label-mobile {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    color: #183047;
    text-align: center;
}

.stat-card-left {
    align-self: center;
    margin-right: 30px;
    margin-left: -30px;
}

.stat-card-right {
    align-self: center;
    margin-left: 30px;
    margin-right: -30px;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    color: #1D6AD6;
    line-height: 40px;
}

.stat-divider {
    width: 89px;
    height: 1px;
    background: #B9BEC7;
}

.stat-label {
    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 500;
    color: #311E1E;
    text-align: center;
    line-height: 20px;
}

/* Diferencial Section */
.diferencial-section {
    background: var(--neutral-white);
    padding: 30px 0;
}

.diferencial-content {
    display: flex;
    gap: 24px;
    align-items: center;
}

.diferencial-left {
    flex: 1;
    max-width: 587px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tag-diferencial {
    background: #E5F0FF;
    padding: 5px 18px;
    border-radius: 32px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: #1D6AD6;
    display: inline-block;
    width: fit-content;
}

.diferencial-title {
    font-family: var(--font-primary);
    font-size: clamp(1.75rem, 4.2vw, 3rem);
    font-weight: 700;
    color: #183047;
    line-height: 1.2;
    margin: 0;
}

.diferencial-text {
    font-family: var(--font-primary);
    font-size: clamp(1rem, 1.6vw, 1.125rem);
    font-weight: 500;
    color: #183047;
    line-height: 1.6;
}

.diferencial-actions {
    display: flex;
    gap: 24px;
    flex-wrap: nowrap;
}


.diferencial-actions .btn {
    white-space: nowrap;
    justify-content: center;
    text-align: center;

}

.diferencial-actions .btn-diagnostico {
    background-color: #1D6AD6;
}

.diferencial-actions .btn-diagnostico:hover {
    background-color: #1557b0;
}

.diferencial-actions .btn-solucoes {
    border-color: #1D6AD6;
    color: #183047;
}

.diferencial-actions .btn-solucoes:hover {
    background-color: #1D6AD6;
    color: var(--neutral-white);
}

.diferencial-right {
    flex: 1;
    position: relative;
}

.diferencial-image-grid {
    position: relative;
    width: 100%;
    max-width: 822px;
}

.diferencial-main-img {
    width: 100%;
    height: 548px;
    object-fit: cover;
    border-radius: 24px;
}

/* Informações Section */
.informacoes-section {
    background: var(--neutral-white);
    padding: 36px 60px;
}

.informacoes-header {
    display: flex;
    gap: 331px;
    align-items: center;
    margin-top: 60px;
    margin-bottom: 60px;
}

.informacoes-title {
    font-family: var(--font-primary);
    font-size: clamp(1.75rem, 4.6vw, 3rem);
    font-weight: 400;
    color: #183047;
    max-width: 585px;
    line-height: 1.2;
}

.informacoes-title .text-primary {
    color: #1D6AD6;
}

.informacoes-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(0.9375rem, 2.1vw, 1.25rem);
    font-weight: 400;
    color: #7C828D;
    max-width: 404px;
    line-height: 1.5;
}

.informacoes-grid {
    display: grid;
    grid-template-columns: repeat(4, 312px);
    gap: 24px;
    justify-content: start;
}

.info-card {
    padding: 60px 18px;
    border-radius: 12px;
    height: 316px;
    display: flex;
    flex-direction: column;
    gap: 90px;
}

.info-card h3 {
    font-family: var(--font-primary);
    font-size: clamp(28px, calc(2.7vw + 9px), 48px);
    font-weight: 600;
    color: var(--neutral-white);
    margin: 0;
}

.info-card p {
    font-family: var(--font-primary);
    font-size: clamp(12px, calc(1.1vw + 4px), 20px);
    font-weight: 300;
    color: var(--neutral-white);
    line-height: 1.4;
    margin: 0;
}

.info-card-dark {
    background: #0E162A;
}

.info-card-blue {
    background: #2571FB;
}

.info-card-offset {
    margin-top: 86px;
}

/* Missão, Visão e Valores Section */
.mvv-section {
    background: #0E162A;
    padding: 60px 57px;
}

.mvv-header {
    display: flex;
    gap: clamp(30px, 10vw, 220px);
    margin-bottom: 30px;
}

.mvv-main-title {
    font-family: var(--font-primary);
    font-size: clamp(1.75rem, 4.2vw, 3rem);
    font-weight: 400;
    color: var(--neutral-white);
    max-width: 556px;
    line-height: 1.2;
}

.mvv-description {
    font-family: var(--font-primary);
    font-size: clamp(1rem, 2.2vw, 1.5rem);
    font-weight: 300;
    color: #7C828D;
    max-width: 506px;
    line-height: 1.4;
}

.mvv-content {
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.mvv-item {
    display: flex;
    gap: 21px;
    align-items: center;
}

.mvv-left {
    justify-content: flex-start;
    padding-left: 24px;
}

.mvv-right {
    justify-content: flex-start;
    padding-left: 120px;
}

.mvv-image-container {
    position: relative;
    flex-shrink: 0;
}

.mvv-img {
    width: 446px;
    height: 325px;
    object-fit: cover;
    border-radius: 48px;
}

.mvv-badge {
    position: absolute;
    background: var(--neutral-white);
    border: 16px solid #0E162A;
    border-radius: 36px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mvv-badge img {
    width: 48px;
    height: 48px;
}

.mvv-left .mvv-badge {
    bottom: -22px;
    right: -22px;
}

.mvv-right .mvv-badge {
    bottom: -22px;
    right: -22px;
}

.mvv-text-content {
    max-width: 658px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mvv-text-content h3 {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 400;
    color: var(--neutral-white);
    margin: 0;
}

.mvv-text-content p {
    font-family: var(--font-primary);
    font-size: clamp(1rem, 2.2vw, 1.5rem);
    font-weight: 300;
    color: #7C828D;
    line-height: 1.5;
    margin: 0;
}

/* CTA Section Sobre */
.cta-section-sobre {
    background: var(--neutral-white);
    padding: clamp(56px, 7vw, 90px) clamp(16px, 5vw, 70px) clamp(40px, 5vw, 60px);
}

.cta-sobre-banner {
    background: #ECF1F8;
    border-radius: clamp(24px, 5vw, 50px);
    box-shadow: 0px 24px 32px 0px rgba(0, 0, 0, 0.13);
    padding: 0;
    height: 480px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-sobre-content {
    padding: clamp(40px, 6vw, 82px) clamp(20px, 5vw, 77px);
    max-width: 730px;
    z-index: 2;
}

.cta-sobre-content h2 {
    font-family: var(--font-primary);
    font-size: clamp(1.75rem, 4.2vw, 3rem);
    font-weight: 600;
    color: #183047;
    line-height: 1.2;
    margin-bottom: 24px;
}

.cta-sobre-content p {
    font-family: var(--font-primary);
    font-size: clamp(1rem, 2.2vw, 1.5rem);
    font-weight: 600;
    color: #7C828D;
    line-height: 1.25;
    margin-bottom: 48px;
}

.btn-cta-sobre {
    background: #29C3FF;
    color: var(--neutral-white);
    border: none;
    padding: 7px 6px;
    border-radius: 14px;
    font-family: var(--font-primary);
    font-size: clamp(0.75rem, 1.4vw, 1rem);
    font-weight: 600;
    letter-spacing: clamp(1.5px, 0.5vw, 3.2px);
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    width: min(100%, 300px);
    height: 50px;
}

.btn-cta-sobre:hover {
    background: #1AB0E8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 195, 255, 0.3);
}

.cta-sobre-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 493px;
    height: 491px;
}

.cta-sobre-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Sobre Nós */
/* LG - Laptops, Small Desktops (<1200px) */
@media (max-width: 1199.98px) {
    .hero-sobre-wrapper {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    
    /* Esconder cards 12+ e 99% originais */
    .stat-card-sobre {
        display: none;
    }
    
    /* Cards 12+ e 99% abaixo do texto, lado a lado */
    .hero-sobre-content {
        order: -1;
        text-align: center;
        margin-bottom: 30px;
        width: 100%;
        position: relative;
    }
    
    /* Novos cards responsivos - posicionados nas pontas */
    .hero-sobre-content {
        padding-bottom: 120px;
    }
    
    .stats-cards-mobile {
        display: flex;
        justify-content: space-between;
        width: 100%;
        max-width: 100%;
        margin-top: 30px;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 0 5%;
        gap: 5%;
    }
    
    .stat-card-mobile {
        background: white;
        border-radius: 16px;
        padding: 20px;
        flex: 0 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: 150px;
    }
    
    .stat-card-left-mobile {
        position: absolute;
        left: 5%;
    }
    
    .stat-card-right-mobile {
        position: absolute;
        right: 5%;
    }
    
    /* Distanciamento de 30px da próxima seção */
    .diferencial-section {
        margin-top: 30px;
    }
    
    .diferencial-content {
        flex-direction: column;
    }

    /* Diferencial - imagem sem corte em telas menores */
    .diferencial-main-img {
        height: auto;
        object-fit: contain;
    }
    
    .informacoes-header {
        flex-direction: column;
        gap: 30px;
    }
    
    .informacoes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mvv-header {
        flex-direction: column;
        gap: 30px;
    }
    
    .mvv-item {
        flex-direction: column;
    }
    
    /* Esconder imagens de Missão, Visão e Valores */
    .mvv-image-container {
        display: none;
    }
    
    /* Box Visão na mesma horizontal que Missão e Valores */
    .mvv-item {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
    }
    
    .mvv-left,
    .mvv-right {
        padding-left: 0;
        justify-content: center;
    }
    
    .mvv-text-content {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        text-align: left;
    }
    
    /* Cards 1500+, 100+, 24×7, 20+ - 2 lado a lado em tablets */
    .informacoes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-content: center;
    }
    
    .info-card {
        padding: 40px 15px;
        height: auto;
        min-height: 250px;
        text-align: center;
    }
    
    .info-card h3 {
        font-size: clamp(28px, calc(2.7vw + 9px), 48px);
    }
    
    .info-card p {
        font-size: clamp(12px, calc(1.1vw + 4px), 20px);
    }
    
    .info-card-offset {
        margin-top: 0;
    }
    
    .cta-sobre-banner {
        flex-direction: column;
        height: auto;
    }
    
    /* Esconder imagem do CTA */
    .cta-sobre-image {
        display: none;
    }
    
    .cta-sobre-content {
        padding: 60px 40px;
        max-width: 100%;
        text-align: center;
    }
    
    /* CTA texto responsivo */
    .cta-sobre-content h2 {
        font-size: 2rem;
    }
    
    .cta-sobre-content p {
        font-size: 1rem;
    }
}

/* MD - Tablets, iPads (<992px) */
@media (max-width: 991.98px) {
    .hero-sobre-wrapper {
        gap: 30px;
    }
    
    /* Esconder cards originais */
    .stat-card-sobre {
        display: none;
    }
    
    /* Mostrar cards mobile */
    .stats-cards-mobile {
        display: flex;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* Cards 1500+, 100+, 24×7, 20+ - 2 lado a lado */
    .informacoes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        justify-content: center;
    }
    
    .info-card {
        padding: 30px 12px;
        min-height: 200px;
        text-align: center;
    }
    
    .info-card h3 {
        font-size: clamp(28px, calc(2.7vw + 9px), 48px);
    }
    
    .info-card p {
        font-size: clamp(12px, calc(1.1vw + 4px), 20px);
    }
    
    /* CTA texto responsivo */
    .cta-sobre-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-sobre-content p {
        font-size: 0.9375rem;
    }
}

/* SM - Small devices, landscape phones (<768px) */
@media (max-width: 767.98px) {
    .hero-sobre-wrapper {
        gap: 20px;
    }
    
    /* Esconder cards originais */
    .stat-card-sobre {
        display: none;
    }
    
    /* Mostrar cards mobile */
    .stats-cards-mobile {
        display: flex;
    }
    
    .stats-cards-mobile {
        padding: 0 3%;
        gap: 3%;
    }
    
    .stat-card-left-mobile {
        left: 3%;
    }
    
    .stat-card-right-mobile {
        right: 3%;
    }
    
    .stat-card-mobile {
        padding: 15px;
        min-width: 120px;
        max-width: 140px;
    }
    
    .stat-number-mobile {
        font-size: 28px;
    }
    
    .stat-label-mobile {
        font-size: 12px;
    }
    
    .stat-divider-mobile {
        width: 50px;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.6875rem;
    }
    
    .hero-sobre-title {
        font-size: 2rem;
    }
    
    .hero-sobre-description {
        font-size: 0.9375rem;
    }
    
    /* Cards 1500+, 100+, 24×7, 20+ - 2 lado a lado em phones */
    .informacoes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        justify-content: center;
    }
    .info-card {
        padding: 18px 12px;
        min-height: 0;
        aspect-ratio: 1 / 1;
        gap: 12px;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .info-card h3 {
        font-size: clamp(28px, calc(2.7vw + 9px), 48px);
    }
    
    .info-card p {
        font-size: clamp(12px, calc(1.1vw + 4px), 20px);
    }
    
    .cta-sobre-content {
        padding: 40px 20px;
    }
    
    .cta-sobre-content h2 {
        font-size: 1.75rem;
    }
    
    /* Card Projetos - Responsivo */
    .card-projetos-title .regular,
    .card-projetos-title .extra-bold {
        font-size: 1.5rem;
    }
    
    .card-projetos-text {
        font-size: 1rem;
        width: 100%;
        max-width: 250px;
    }
    
    .card-projetos-icon {
        width: 120px;
        height: 120px;
    }
    
    .card-projetos-bottom {
        flex-direction: column;
        gap: 1rem;
        margin-top: 30px;
    }
    
    /* CTA Soluções - Texto responsivo */
    .cta-solucoes-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-solucoes-content p {
        font-size: 0.9375rem;
    }
}

/* Extra Small - Mobile phones (<576px) */
@media (max-width: 575.98px) {
    /* Esconder cards originais */
    .stat-card-sobre {
        display: none;
    }
    
    /* Mostrar cards mobile */
    .stats-cards-mobile {
        display: flex;
    }
    
    .stats-cards-mobile {
        padding: 0 2%;
        gap: 2%;
    }
    
    .stat-card-left-mobile {
        left: 2%;
    }
    
    .stat-card-right-mobile {
        right: 2%;
    }
    
    .stat-card-mobile {
        padding: 12px;
        min-width: 90px;
        max-width: 110px;
    }
    
    .stat-number-mobile {
        font-size: 22px;
    }
    
    .stat-label-mobile {
        font-size: 10px;
    }
    
    .stat-divider-mobile {
        width: 40px;
    }
    
    .stat-number {
        font-size: 1.125rem;
    }
    
    .stat-label {
        font-size: 0.625rem;
    }
    
    .hero-sobre-title {
        font-size: 1.5rem;
    }
    
    .cta-sobre-content {
        padding: 30px 15px;
    }
    
    .cta-sobre-content h2 {
        font-size: 1.35rem;
        line-height: 1.15;
        margin-bottom: 16px;
    }

    .cta-sobre-content p {
        font-size: 0.875rem;
        line-height: 1.35;
        margin-bottom: 24px;
    }

    .btn-cta-sobre {
        font-size: 0.75rem;
        padding: 10px 14px;
        letter-spacing: 2.4px;
    }

    /* Botões \"Solicitar Diagnóstico\" e \"Conhecer Soluções\" sempre na mesma linha (mobile) */
    .diferencial-actions {
        gap: 12px;
        flex-wrap: nowrap;
    }

    .diferencial-actions .btn {
        flex: 1 1 0;
        min-width: 0;
        padding: 0.65rem 0.85rem;
        font-size: 0.85rem;
    }
}

/* ========================================
   PÁGINA SOLUÇÕES - ESTILOS
   ======================================== */

/* Hero Section Soluções */
.hero-solucoes {
    padding: 54px 0;
    background: linear-gradient(180deg, #F3F8FF 0%, #F3F8FF 50%, #FFFFFF 100%);
    min-height: 771px;
    display: flex;
    align-items: center;
}

.hero-solucoes-content {
    display: flex;
    gap: 48px;
    align-items: center;
    justify-content: space-between;
}

.hero-solucoes-left {
    flex: 0 0 630px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.hero-solucoes-left .btn-diagnostico {
    width: 210px;
}

.tag-solucoes {
    background: #E5F0FF;
    padding: 5px 18px;
    border-radius: 32px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: #1D6AD6;
    display: inline-block;
    width: fit-content;
}

.hero-solucoes-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.hero-solucoes-title .text-dark {
    color: #183047;
}

.gradient-text-solucoes {
    background: linear-gradient(159.12deg, #29C3FF 40.92%, #2052CB 80.94%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-solucoes-description {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    color: #183047;
    line-height: 1.6;
    max-width: 508px;
}

.metricas-solucoes {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-top: 42px;
}

.metrica-item {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.metrica-item h3 {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    color: #1D6AD6;
    line-height: 40px;
    margin: 0;
}

.metrica-item p {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    color: #183047;
    line-height: 1.3;
    margin: 0;
}

.metrica-divider {
    width: 2px;
    height: 104px;
    background: #B9BEC7;
    border-radius: 2px;
}

/* Hero Soluções - Images Right */
.hero-solucoes-right {
    flex: 0 0 627px;
}

.solucoes-images {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.image-top {
    position: relative;
    height: 222px;
    border-radius: 16px;
    overflow: hidden;
}

.image-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    bottom: 44px;
    left: 48px;
    background: white;
    border-radius: 32px;
    padding: 25px 23px;
    width: 240px;
    box-shadow: 0px 1px 1px 0px rgba(255, 255, 255, 0.13);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-number-small {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    color: #1D6AD6;
    line-height: 40px;
}

.stat-divider-small {
    width: 134px;
    height: 1px;
    background: #B9BEC7;
}

.stat-label-small {
    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 500;
    color: #311E1E;
    text-align: center;
    line-height: 20px;
}

.images-bottom {
    display: flex;
    gap: 6px;
}

.img-bottom-left {
    width: 263px;
    height: 144px;
    object-fit: cover;
    border-radius: 16px;
}

.img-bottom-right {
    width: 358px;
    height: 144px;
    object-fit: cover;
    border-radius: 16px;
}

/* Principais Soluções Section */
.principais-solucoes {
    background: white;
    padding: 60px 0;
}

.section-title-solucoes {
    font-family: var(--font-primary);
    font-size: clamp(24px, 4.5vw, 48px);
    font-weight: 500;
    color: #183047;
    text-align: center;
    margin-bottom: 45px;
}

.principais-solucoes-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 416px));
    gap: 24px;
    justify-content: center;
    width: 100%;
}

.solucao-card {
    border-radius: 16px;
    padding: clamp(16px, 2vw, 26px);
    display: flex;
    flex-direction: column;
    gap: clamp(18px, 2.2vw, 30px);
    height: auto;
    min-height: 414px;
}

.card-gradient-bottom {
    background: linear-gradient(180deg, #FFFFFF 0%, #D3E8FE 100%);
    justify-content: flex-end;
}

.card-gradient-top {
    background: linear-gradient(0deg, #FFFFFF 0%, #D3E8FE 100%);
    justify-content: flex-start;
}

.solucao-icon {
    background: #FAFCFF;
    border: 1px solid #FDFFFF;
    border-radius: clamp(10px, 2.6vw, 12px);
    width: clamp(35px, 6vw, 60px);
    height: clamp(35px, 6vw, 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(4px, 1.4vw, 6px);
    flex-shrink: 0;
}

.solucao-icon img,
.solucao-icon svg {
    width: clamp(20px, 4.8vw, 48px);
    height: clamp(20px, 4.8vw, 48px);
}

.solucao-card h3 {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 500;
    color: #183047;
    line-height: 1.2;
    margin: 0;
}

.solucao-card p {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    color: #7C828D;
    line-height: 1.5;
    margin: 0;
}

/* Todas as Soluções Section */
.todas-solucoes {
    background: white;
    padding: 60px 0;
}

.todas-solucoes-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 416px));
    gap: 24px;
    justify-content: center;
    width: 100%;
}

/* Timeline Section */
.timeline-solucoes {
    background: white;
    padding: 60px 0;
}

.timeline-header {
    text-align: center;
    margin-bottom: 60px;
}

.timeline-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(14px, 3.4vw, 18px);
    font-weight: 400;
    color: #183047;
    margin-top: 30px;
}

.timeline-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 47px;
    position: relative;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: min(366px, 100%);
}

.timeline-icon {
    background: #FAFCFF;
    border: 1px solid #D3D3D3;
    border-radius: clamp(12px, 3.5vw, 16px);
    width: clamp(56px, 12vw, 85px);
    height: clamp(56px, 12vw, 85px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(4px, 1.5vw, 6px);
}

.timeline-icon img,
.timeline-icon svg {
    width: clamp(28px, 7vw, 48px);
    height: clamp(28px, 7vw, 48px);
}

.timeline-item h3 {
    font-family: var(--font-primary);
    font-size: clamp(18px, 4.2vw, 28px);
    font-weight: 500;
    color: #183047;
    line-height: 1.2;
    margin: 0;
}

.timeline-item p {
    font-family: var(--font-primary);
    font-size: clamp(13px, 3.2vw, 16px);
    font-weight: 400;
    color: #183047;
    line-height: 1.5;
    margin: 0;
}

.timeline-connector {
    width: 2px;
    height: 260px;
    background: linear-gradient(180deg, #FFFFFF 0%, #1D6AD6 50%, #FFFFFF 100%);
    margin-top: 18px;
    flex-shrink: 0;
}

/* CTA Section Soluções */
.cta-section-solucoes {
    background: white;
    padding: 75px 0;
}

.cta-solucoes-banner {
    background: #D2E8FE;
    border-radius: 50px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.cta-solucoes-content {
    padding: 0 77px;
    max-width: 730px;
    z-index: 2;
}

.cta-solucoes-content h2 {
    font-family: var(--font-primary);
    /* Mantém o texto no DOM (acessibilidade), mas força a quebra exata em 2 linhas */
    font-size: 0;
    line-height: 0;
    margin-bottom: 24px;
}

.cta-solucoes-content h2::before,
.cta-solucoes-content h2::after {
    display: block;
    font-family: var(--font-primary);
    font-size: clamp(18px, 7vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    color: #183047;
    white-space: nowrap;
}

.cta-solucoes-content h2::before { content: "Pronto para Fortalecer"; }
.cta-solucoes-content h2::after  { content: "Sua Segurança?"; }


.cta-solucoes-content p {
    font-family: var(--font-primary);
    font-size: clamp(14px, 2.8vw, 24px);
    font-weight: 600;
    color: #7C828D;
    line-height: 1.25;
    margin-bottom: 48px;
}

.btn-cta-solucoes {
    background: #29C3FF;
    color: white;
    border: none;
    padding: 7px 6px;
    border-radius: 14px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 251px;
    height: 50px;
}

.btn-cta-solucoes:hover {
    background: #1AB0E8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 195, 255, 0.3);
}

.cta-solucoes-image {
    width: 320px;
    height: 480px;
    flex-shrink: 0;
    border-radius: 0 50px 50px 0;
    overflow: hidden;
}

.cta-solucoes-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Soluções */
/* LG - Laptops, Small Desktops (<1200px) */
@media (max-width: 1199.98px) {
    .hero-solucoes-content {
        flex-direction: column;
    }
    
    /* Esconder imagens da hero section */
    .hero-solucoes-right {
        display: none;
    }
    
    /* Tornar texto responsivo */
    .hero-solucoes-title {
        font-size: 42px;
    }
    
    .hero-solucoes-description {
        font-size: 16px;
    }
    
    /* Métricas responsivas */
    .metricas-solucoes {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: clamp(10px, 2.2vw, 20px);
        width: 100%;
    }

    .metrica-item {
        flex: 1 1 0;
        min-width: 0;
        gap: clamp(10px, 2.2vw, 20px);
    }

    .metrica-divider {
        flex: 0 0 2px;
        height: clamp(40px, 12vw, 104px);
    }
    
    .metrica-item h3 {
        font-size: 28px;
    }
    
    .metrica-item p {
        font-size: 14px;
    }
    
    .principais-solucoes-grid,
    .todas-solucoes-grid {
        grid-template-columns: 1fr;
    }

    /* Cards - permitir crescer no mobile (sem cortar conteúdo) */
    .solucao-card {
        height: auto;
        min-height: 414px;
    }
    
    .timeline-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .timeline-connector {
        width: 260px;
        height: 2px;
        background: linear-gradient(90deg, #FFFFFF 0%, #1D6AD6 50%, #FFFFFF 100%);
    }
    
    .cta-solucoes-banner {
        flex-direction: column;
        height: auto;
    }
}

/* MD - Tablets, iPads (<992px) */
@media (max-width: 991.98px) {
    /* Hero Soluções - texto ainda mais responsivo */
    .hero-solucoes-title {
        font-size: 36px;
    }
    
    .hero-solucoes-description {
        font-size: 15px;
    }
    
    /* Métricas menores */
    .metricas-solucoes {
        gap: 15px;
    }
    
    .metrica-item h3 {
        font-size: 24px;
    }
    
    .metrica-item p {
        font-size: 13px;
    }
    
    /* Principais soluções - cards menores */
    .principais-solucoes-grid {
        gap: 1.5rem;
    }
    
    .solucao-card {
        padding: 1.5rem;
    }
    
    .solucao-icon {
        width: clamp(35px, 6vw, 60px);
        height: clamp(35px, 6vw, 60px);
    }
    
    .solucao-card h3 {
        font-size: 1.125rem;
    }
    
    .solucao-card p {
        font-size: 0.875rem;
    }
    
    /* Esconder imagem do CTA */
    .cta-solucoes-image {
        display: none;
    }
    
    .cta-solucoes-content {
        padding: 60px 40px;
        max-width: 100%;
        text-align: center;
    }
    
    .cta-solucoes-banner {
        justify-content: center;
    }
}

/* SM - Small devices, landscape phones (<768px) */
@media (max-width: 767.98px) {
    /* Hero Soluções - iPhone 14 Pro Max size */
    .hero-solucoes-title {
        font-size: 28px;
    }
    
    .hero-solucoes-description {
        font-size: 14px;
    }
    
    /* Métricas menores */
    .metricas-solucoes {
        gap: 12px;
    }
    
    .metrica-item h3 {
        font-size: 20px;
    }
    
    .metrica-item p {
        font-size: 12px;
    }
    
    /* Principais soluções - ainda menores */
    .solucao-card {
        padding: 1.25rem;
    }
    
    .solucao-icon {
        width: clamp(35px, 6vw, 60px);
        height: clamp(35px, 6vw, 60px);
    }
    
    .solucao-card h3 {
        font-size: 1rem;
    }
    
    .solucao-card p {
        font-size: 0.8125rem;
    }
    
    .cta-solucoes-content {
        padding: 40px 20px;
    }
    
    .cta-solucoes-content h2 {
        font-size: 0;
        line-height: 0;
    }

    /* CTA - botão fluido no mobile (sem quebrar / sem overflow) */
    .btn-cta-solucoes {
        width: 100%;
        max-width: 360px;
        min-width: 0;
        letter-spacing: clamp(1.6px, 0.8vw, 3.2px);
    }
}

/* Extra Small - Mobile phones (<576px) */
@media (max-width: 575.98px) {
    /* Hero Soluções - mobile pequeno */
    .hero-solucoes-title {
        font-size: 24px;
    }
    
    .hero-solucoes-description {
        font-size: 13px;
    }
    
    /* Métricas menores */
    .metricas-solucoes {
        gap: 10px;
    }
    
    .metrica-item h3 {
        font-size: 18px;
    }
    
    .metrica-item p {
        font-size: 11px;
    }
    
    /* Principais soluções - mobile pequeno */
    .solucao-card {
        padding: 1rem;
    }
    
    .solucao-icon {
        width: clamp(35px, 6vw, 60px);
        height: clamp(35px, 6vw, 60px);
    }
    
    .solucao-card h3 {
        font-size: 0.9375rem;
    }
    
    .solucao-card p {
        font-size: 0.75rem;
    }
    
    .cta-solucoes-content {
        padding: 30px 15px;
    }
    
    .cta-solucoes-content h2 {
        font-size: 0;
        line-height: 0;
    }

    /* CTA - botão fluido no mobile pequeno (sem quebrar / sem overflow) */
    .btn-cta-solucoes {
        width: 100%;
        max-width: 320px;
        min-width: 0;
        letter-spacing: clamp(1.4px, 0.9vw, 3.2px);
    }
}

/* ========================================
   PÁGINA CLIENTES - ESTILOS
   ======================================== */

/* Hero Section Clientes */
.hero-clientes {
    background: linear-gradient(180deg, #F3F8FF 0%, #FFFFFF 100%);
    padding: 52px 0 75px 0;
    position: relative;
}

.hero-clientes-wrapper {
    position: relative;
    min-height: 601px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-clientes-background {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1040px;
    height: 440px;
    border-radius: 50px;
    overflow: hidden;
    background: linear-gradient(135deg, #29C3FF 0%, #1D6AD6 100%);
}

.hero-clientes-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}

.hero-clientes-content {
    position: absolute;
    left: 50%;
    top: calc(50% - 130px);
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 597px;
    z-index: 2;
    text-align: center;
    align-items: center;
}

.tag-clientes {
    background: white;
    padding: 4px 18px;
    border-radius: 32px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: #7C828D;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tag-clientes-mobile {
    display: none;
}

.tag-clientes svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.hero-clientes-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 600;
    color: white;
    line-height: 1.2;
    margin: 0;
    text-align: center;
    width: 800px;
}

.hero-clientes-stats {
    background: white;
    border-radius: 30px;
    padding: 7px 79px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: absolute;
    bottom: calc(45px + 60px);
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    max-width: 90%;
    z-index: 10;
    margin: 0 auto;
}


.stats-title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    color: #183047;
    text-align: center;
    margin: 0 0 51px 0;
}

.stats-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 19px;
    margin-bottom: 12px;
    text-align: center;
}

.stats-labels span {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: #183047;
}

.stats-divider {
    width: 100%;
    height: 2px;
    background: #E5E5E5;
    margin-bottom: 13px;
}

.stats-values {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin-bottom: 16px;
}

.stats-values span {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: #183047;
}

/* Casos de Sucesso Section */
.casos-sucesso {
    background: white;
    padding: 60px 0 75px 0;
    margin-top: 30px;
}

.casos-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 60px;
}

.section-title-clientes {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 500;
    color: #183047;
    line-height: 1.2;
    margin: 58px 0 0 0;
    max-width: 1378px;
    text-align: left;
}

.section-description-clientes {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    color: #183047;
    line-height: 1.6;
    max-width: 610px;
    margin: 0;
}

/* Responsividade para Nossos Casos de Sucesso */
@media (max-width: 1199.98px) {
    .section-title-clientes {
        font-size: 40px;
    }
    
    .section-description-clientes {
        font-size: 16px;
    }
    
    .casos-sucesso .case-content h3 {
        font-size: 32px;
    }
    
    .casos-sucesso .case-content p {
        font-size: 16px;
    }
    
    .casos-sucesso .case-image {
        width: 100%;
        max-width: 400px;
        height: 280px;
    }
}

@media (max-width: 991.98px) {
    .section-title-clientes {
        font-size: 32px;
    }
    
    .section-description-clientes {
        font-size: 15px;
    }
    
    .casos-sucesso .case-content h3 {
        font-size: 28px;
    }
    
    .casos-sucesso .case-content p {
        font-size: 15px;
    }
    
    .casos-sucesso .case-image {
        max-width: 350px;
        height: 250px;
    }
    
    .case-tag {
        font-size: 14px;
        padding: 4px 14px;
    }
}

@media (max-width: 767.98px) {
    .section-title-clientes {
        font-size: 28px;
    }
    
    .section-description-clientes {
        font-size: 14px;
    }
    
    .casos-sucesso .case-content h3 {
        font-size: 24px;
    }
    
    .casos-sucesso .case-content p {
        font-size: 14px;
    }
    
    .casos-sucesso .case-image {
        max-width: 100%;
        height: 220px;
    }
    
    .case-tag {
        font-size: 12px;
        padding: 3px 12px;
    }
}

@media (max-width: 575.98px) {
    .section-title-clientes {
        font-size: 24px;
    }
    
    .section-description-clientes {
        font-size: 13px;
    }
    
    .casos-sucesso .case-content h3 {
        font-size: 20px;
    }
    
    .casos-sucesso .case-content p {
        font-size: 13px;
    }
    
    .casos-sucesso .case-image {
        height: 200px;
    }
    
    .case-tag {
        font-size: 11px;
        padding: 3px 10px;
    }
}

.casos-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.casos-sucesso .case-card {
    display: flex;
    gap: 21px;
    align-items: center;
}

.casos-sucesso .case-card.case-left {
    justify-content: flex-start;
    padding-left: 24px;
}

.casos-sucesso .case-card.case-right {
    justify-content: flex-end;
    padding-right: 120px;
}

.casos-sucesso .case-image {
    position: relative;
    width: 446px;
    height: 325px;
    border-radius: 30px;
    overflow: hidden;
    flex-shrink: 0;
}

.casos-sucesso .case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.casos-sucesso .case-logo {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.casos-sucesso .case-logo img {
    max-width: 180px;
    max-height: 50px;
    width: auto;
    height: auto;
    border-radius: 0;
}

.casos-sucesso .case-logo-icon {
    padding: 10px;
}

.casos-sucesso .case-content {
    max-width: 658px;
}

.casos-sucesso .case-card.case-right .case-content {
    max-width: 694px;
}

.case-tag {
    display: inline-block;
    background: #E5F0FF;
    padding: 5px 18px;
    border-radius: 32px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    color: #1D6AD6;
    margin: 0;
    vertical-align: middle;
}

.casos-sucesso .case-content h3 {
    font-family: var(--font-primary);
    font-size: 40px;
    font-weight: 500;
    color: #183047;
    margin: 0 12px 0 0;
    display: inline-block;
    vertical-align: middle;
}

.casos-sucesso .case-content p {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    color: #183047;
    line-height: 1.6;
    margin: 0;
}

/* Nossos Parceiros Section */
.parceiros {
    background: #F3F8FF;
    padding: 60px 0 75px 0;
}

.parceiros-header {
    text-align: center;
    margin-bottom: 60px;
}

.parceiros-subtitle {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    color: #183047;
    margin-top: 24px;
    text-align: left;
    max-width: 100%;
}

.section-subtitle-clientes {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    color: #183047;
    margin-top: 24px;
}

.parceiros-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    max-width: 1258px;
    margin: 0 auto;
}

.parceiro-logo {
    background: white;
    border: 1px solid #E5E5E5;
    border-radius: 20px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s;
}

.parceiro-logo:hover {
    border-color: #1D6AD6;
    box-shadow: 0 4px 12px rgba(29, 106, 214, 0.15);
    transform: translateY(-4px);
}

.parceiro-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* CTA Clientes Section */
.cta-clientes {
    background: white;
    padding: 75px 0;
}

.cta-clientes-wrapper {
    background: #D2E8FE;
    border-radius: 50px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding: 0 60px;
}

.cta-clientes-content {
    padding: 60px 0;
    max-width: 800px;
    margin: 0;
}

.cta-clientes-content h2 {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 600;
    color: #183047;
    line-height: 1.4;
    margin: 0 0 25px 0;
    width: 600px;
}

.cta-clientes-content p {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 600;
    color: #7C828D;
    line-height: 1.25;
    margin: 0 0 48px 0;
    width: 690px;
}

.cta-clientes-content .btn {
    min-width: 260px;
    height: 50px;
}

.btn-cta-clientes {
    background: #29C3FF;
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: 0.2em;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta-clientes:hover {
    background: #1FAAE6;
    transform: translateY(-2px);
}

.cta-clientes-image {
    width: 600px;
    height: 480px;
    flex-shrink: 0;
    margin-left: 120px;
    margin-right: 120px;
}

.cta-clientes-image img {
    width: 600px;
    height: 100%;
    object-fit: cover;
    border-radius: 0 50px 50px 0;
}

/* Responsive Clientes */
/* LG - Laptops, Small Desktops (<1200px) */
@media (max-width: 1199.98px) {
    /* Card hero-clientes responsivo e centralizado */
    .hero-clientes-background {
        max-width: 95%;
        height: 400px;
    }
    
    .hero-clientes-content {
        max-width: 90%;
    }
    
    .hero-clientes-title {
        font-size: 40px;
        width: 100%;
        max-width: 700px;
    }
    
    .hero-clientes-stats {
        width: 90%;
        max-width: 700px;
        padding: 7px 50px;
        left: 50%;
        transform: translateX(-50%);
        position: absolute;
        bottom: calc(45px + 60px);
    }
    
    /* Manter distância relativa - subir 60px quando tela diminuir */
    .hero-clientes-content {
        top: calc(50% - 130px - 60px);
    }
    
    /* Hero Clientes - Remover imagem e título branco */
    .hero-clientes-background img {
        display: none;
    }
    
    .hero-clientes-background {
        display: none;
    }
    
    .hero-clientes-title {
        display: none;
    }
    
    .tag-clientes {
        display: none;
    }
    
    .tag-clientes-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: white;
        padding: 4px 18px;
        border-radius: 32px;
        font-family: var(--font-primary);
        font-size: 16px;
        font-weight: 400;
        color: #7C828D;
        margin: 12px 0;
    }
    
    .tag-clientes-mobile svg {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }
    
    .stats-title {
        font-size: 18px;
    }
    
    /* Casos de Sucesso - Imagem abaixo do texto */
    .casos-sucesso .case-card {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0;
    }
    
    .casos-sucesso .case-card.case-left,
    .casos-sucesso .case-card.case-right {
        justify-content: center;
        padding-left: 0;
        padding-right: 0;
    }
    
    .casos-sucesso .case-content {
        order: -1;
        max-width: 100%;
        text-align: center;
    }
    
    .casos-sucesso .case-content h3 {
        display: inline-block;
        margin-right: 12px;
    }
    
    .casos-sucesso .case-tag {
        margin-bottom: 0;
        margin-right: 12px;
    }
    
    .casos-sucesso .case-image {
        order: 2;
        width: 100%;
        max-width: 446px;
    }
    
    /* Hero Clientes - Remover imagem e colocar área azul */
    .hero-clientes-background img {
        display: none;
    }
    
    .hero-clientes-background {
        display: none;
    }
    
    /* CTA - Box azul no lugar da imagem */
    .cta-clientes-image {
        display: none;
    }
    
    .cta-clientes-wrapper {
        background: #D2E8FE;
        flex-direction: row;
        justify-content: center;
        padding: 0 40px;
    }
    
    .cta-clientes-content {
        max-width: 100%;
        text-align: center;
    }
    
    .cta-clientes-content h2 {
        font-size: 36px;
        width: 100%;
    }
    
    .cta-clientes-content p {
        font-size: 20px;
        width: 100%;
    }
}

/* MD - Tablets, iPads (<992px) */
@media (max-width: 991.98px) {
    .hero-clientes-background {
        max-width: 90%;
        height: 350px;
    }
    
    .hero-clientes-content {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        text-align: center;
        align-items: center;
        margin-top: 30px;
        max-width: 100%;
    }
    
    .hero-clientes-title {
        font-size: 32px;
    }
    
    .hero-clientes-stats {
        position: absolute;
        bottom: calc(30px + 60px);
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 600px;
        padding: 7px 30px;
    }
    
    /* Manter distância relativa - subir 60px quando tela diminuir */
    .hero-clientes-content {
        top: calc(50% - 130px - 60px);
    }
    
    /* Hero Clientes - Remover imagem e título branco */
    .hero-clientes-background img {
        display: none;
    }
    
    .hero-clientes-background {
        display: none;
    }
    
    .hero-clientes-title {
        display: none;
    }
    
    .tag-clientes {
        display: none;
    }
    
    .tag-clientes-mobile {
        display: flex;
    }
    
    .stats-title {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .casos-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .section-title-clientes {
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .section-description-clientes {
        text-align: center;
        max-width: 100%;
        margin: 1.5rem auto 0;
    }
    
    .case-card {
        flex-direction: column;
        padding: 0 !important;
    }
    
    .case-card.case-right {
        flex-direction: column;
    }
    
    .parceiros-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cta-clientes-wrapper {
        background: #D2E8FE;
        flex-direction: column;
        height: auto;
        padding: 40px 30px;
    }
    
    .cta-clientes-content h2 {
        font-size: 28px;
    }
    
    .cta-clientes-content p {
        font-size: 18px;
    }
}

/* SM - Small devices, landscape phones (<768px) */
@media (max-width: 767.98px) {
    .hero-clientes-background {
        height: 300px;
    }
    
    .hero-clientes-title {
        font-size: 24px;
    }
    
    .hero-clientes-stats {
        width: 95%;
        padding: 7px 20px;
        left: 50%;
        transform: translateX(-50%);
        position: absolute;
        bottom: calc(20px + 60px);
    }
    
    /* Manter distância relativa - subir 60px quando tela diminuir */
    .hero-clientes-content {
        top: calc(50% - 130px - 60px);
    }
    
    /* Hero Clientes - Remover imagem e título branco */
    .hero-clientes-background img {
        display: none;
    }
    
    .hero-clientes-background {
        display: none;
    }
    
    .hero-clientes-title {
        display: none;
    }
    
    .tag-clientes {
        display: none;
    }
    
    .tag-clientes-mobile {
        display: flex;
        font-size: 14px;
        padding: 3px 14px;
    }
    
    .tag-clientes-mobile svg {
        width: 20px;
        height: 20px;
    }
    
    .stats-title {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .cta-clientes-wrapper {
        background: #D2E8FE;
        padding: 30px 20px;
        border-radius: 30px;
    }
    
    .cta-clientes-content h2 {
        font-size: 24px;
    }
    
    .cta-clientes-content p {
        font-size: 16px;
    }
}

/* ========================================
   PÁGINA CONTATO - ESTILOS
   ======================================== */

/* Contato Hero Section */
.contato-hero {
    background: white;
    padding: 54px 0 75px 0;
}

.contato-header {
    text-align: center;
    margin-bottom: 60px;
}

.contato-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 600;
    color: #183047;
    line-height: 1.2;
    margin: 0 0 24px 0;
}

.contato-subtitle {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 400;
    color: #8D8D8D;
    line-height: 1.5;
    max-width: 666px;
    margin: 0 auto;
}

/* Contato Wrapper */
.contato-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.13);
    border-radius: 16px;
    overflow: hidden;
}

/* Informações de Contato - Lado Esquerdo */
.contato-info {
    background: #183047;
    padding: 32px 30px;
    width: 481px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contato-info-title {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 600;
    color: white;
    line-height: 1.2;
    margin: 0 0 120px 0;
}

.contato-detalhes {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 212px;
}

.contato-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.contato-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contato-item p {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: white;
    line-height: 1.5;
    margin: 0;
}

.contato-sociais {
    display: flex;
    gap: 24px;
    align-items: center;
}

.contato-sociais .social-icon {
    width: 22px;
    height: 22px;
}

.contato-sociais .social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Formulário - Lado Direito */
.contato-form-wrapper {
    background: white;
    border: 1px solid #E0E0E0;
    padding: 42px 30px;
    width: 719px;
    display: flex;
    align-items: flex-end;
}

.contato-form {
    width: 100%;
    max-width: 607px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: flex;
    gap: 36px;
    width: 100%;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 500;
    color: #183047;
    line-height: 1.5;
}

.form-group input {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: #8D8D8D;
    background: white;
    border: none;
    border-bottom: 1px solid #E0E0E0;
    padding: 8px 3px;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-bottom-color: #183047;
    color: #183047;
}

.form-group input::placeholder {
    color: #8D8D8D;
}

/* Assunto */
.form-group-assunto {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.assunto-label {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: #011C2A;
    line-height: 1.5;
}

.radio-group {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.radio-item input[type="radio"] {
    appearance: none;
    width: 13px;
    height: 13px;
    border: 2px solid #D1D5DB;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.radio-item input[type="radio"]:checked {
    background: #29C3FF;
    border-color: #29C3FF;
}

.radio-item span {
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 400;
    color: #011C2A;
    line-height: 1.5;
}

/* Mensagem */
.form-group-mensagem {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 561px;
}

.form-group-mensagem label {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: #183047;
    line-height: 1.5;
}

.form-group-mensagem textarea {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: #183047;
    background: white;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    padding: 12px;
    outline: none;
    resize: vertical;
    min-height: 139px;
    transition: border-color 0.3s;
}

.form-group-mensagem textarea:focus {
    border-color: #183047;
}

.form-group-mensagem textarea::placeholder {
    color: #8D8D8D;
}

/* Botão Enviar */
.btn-enviar-mensagem {
    background: #29C3FF;
    color: white;
    border: none;
    padding: 6px 7px;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    width: 190px;
    height: 33px;
    align-self: flex-end;
}

.btn-enviar-mensagem:hover {
    background: #1AB0E8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 195, 255, 0.3);
}

/* Responsive Contato */
@media (max-width: 1024px) {
    .contato-wrapper {
        flex-direction: column;
    }
    
    .contato-info,
    .contato-form-wrapper {
        width: 100%;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .radio-group {
        gap: 30px;
    }
}


/* =========================================================
   Responsive & UX patches (v7)
   - One-column safety on tablets/landscape
   - Robust infinite carousel for "Empresas Parceiras"
   - FAQ: multi-open, larger click target, centered +/−
   ========================================================= */

/* ---------- HERO: safer stacking + buttons ---------- */
@media (max-width: 1199.98px) {
  .hero-content {
    justify-items: start;
    text-align: left;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: flex-start;
  }
}

/* Phones: buttons stacked, stats always side-by-side */
@media (max-width: 575.98px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Keep 3 stats side-by-side even on very narrow screens */
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    justify-content: initial;
    align-items: start;
    width: 100%;
  }

  .stat-item {
    min-width: 0;
  }

  .stat-content {
    gap: 0.5rem;
  }

  .stat-bar {
    width: 8px;
    height: 56px;
    flex: 0 0 auto;
  }

  .stat-text h3 {
    font-size: clamp(1.25rem, 5.6vw, 2rem);
    line-height: 1.1;
    margin-bottom: 0.25rem;
  }

  .stat-text p {
    font-size: clamp(0.65rem, 2.8vw, 0.85rem);
  }

  /* Optional: remove small emoji icons above stats to save space */
  .stat-icons {
    display: none;
  }

  /* Left-align hero text on small screens */
  .hero-description,
  .hero-subtitle,
  .hero-title {
    text-align: left;
  }
}

/* Ultra narrow (Galaxy Fold, etc): reduce title/icon sizes to keep 2 lines */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.65rem;
  }

  .title-icon {
    width: 28px;
    height: 28px;
  }

  .title-icon-folder {
    width: 30px;
    height: 30px;
  }

  .title-line-1,
  .title-line-2 {
    gap: 0.35rem;
  }
}

/* Landscape on tablets/compact devices: force one-column everywhere (simple & safe) */
@media (orientation: landscape) and (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    justify-items: start;
    text-align: left;
  }

  .hero-visual {
    height: clamp(360px, 65vh, 520px);
  }
}

/* ---------- SERVICES: remove fixed widths that break narrow/landscape ---------- */
.card-protecao-title,
.card-protecao-text,
.card-projetos,
.card-eletronica,
.card-riscos,
.card-prevencao {
  width: min(600px, 100%);
  max-width: 100%;
}

.card-protecao,
.card-prevencao {
    width: clamp(0px, 100%, 600px);
    max-width: 100%;
}


.card-protecao-title,
.card-protecao-text {
  width: min(420px, 100%);
  max-width: 100%;
  height: auto;
}

.card-riscos {
  min-height: clamp(220px, 40vw, 270px);
  height: auto;
}

@media (max-width: 1199.98px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-column-left,
  .services-column-right {
    width: 100%;
  }

  .card-projetos,
  .card-eletronica,
  .card-riscos,
  .card-prevencao,
  .card-protecao {
    width: 100%;
    max-width: 100%;
  }
}

/* On small screens: remove maleta icon to prevent text overlap */
@media (max-width: 575.98px) {
  .icon-maleta {
    display: none !important;
  }
}

/* ---------- ABOUT: match left padding with hero content ---------- */
@media (max-width: 575.98px) {
  .about-content-center {
    padding-left: 0;
    padding-right: 0;
    text-align: left;
  }

  .about-description {
    text-align: left;
  }
}

/* ---------- SEPARATORS: 3x size on small screens ---------- */
@media (max-width: 575.98px) {
  .separator-img,
  .separator-line {
    width: clamp(240px, 92vw, 100%);
    max-width: 100%;
    height: clamp(16px, 4vw, 42px);
    object-fit: contain;
  }
}

/* ---------- PARTNERS: robust infinite carousel ---------- */
.partners-content {
  overflow: hidden; /* prevent any tiny subpixel overflow */
}

.partners-carousel {
  --partners-gap: clamp(1.25rem, 3vw, 3rem);
  /* logo height: min equals "Quem Somos" on mobile (~1.5rem) */
  --partners-logo-h: clamp(1.5rem, 3.2vw, 3rem);
  --partners-logo-max-w: clamp(7rem, 22vw, 14rem);
  /* 60% slower than the original fast carousel for smoother motion */
  --partners-scroll-duration: 70s;

  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0.5rem 0;

  /* Fade edges via overlay gradients (cheaper than mask-image and avoids
     Safari/iOS glitches that can freeze or blank long-running animations). */
  --partners-fade: clamp(1.25rem, 5vw, 4rem);
  contain: layout paint;
}

/* Edge fades */
.partners-carousel::before,
.partners-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: var(--partners-fade);
  pointer-events: none;
  z-index: 2;
}

.partners-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--neutral-white), rgba(255, 255, 255, 0));
}

.partners-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--neutral-white), rgba(255, 255, 255, 0));
}

.partners-track {
  display: flex;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  animation: partners-scroll var(--partners-scroll-duration) linear infinite;
  animation-play-state: paused; /* only start after width is measured */
}

.partners-track.is-ready {
  animation-play-state: running;
}

.partners-track.use-js {
  animation: none !important;
  animation-play-state: running;
}

.partners-group {
  display: flex;
  align-items: center;
  gap: var(--partners-gap);
  padding-right: var(--partners-gap); /* spacing at the seam */
  flex: 0 0 auto;
}

.partner-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo-img {
  height: var(--partners-logo-h);
  width: auto;
  max-width: var(--partners-logo-max-w);
  min-width: 48px; /* hard min so it never becomes a "trace" */
  opacity: 0.65;
  transition: opacity 200ms ease;
}

.partner-logo-img:hover,
.partner-logo-img:focus-visible {
  opacity: 0.9;
}

@keyframes partners-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(calc(-1 * var(--partners-shift, 50%)), 0, 0); }
}

@-webkit-keyframes partners-scroll {
  from { -webkit-transform: translate3d(0, 0, 0); }
  to   { -webkit-transform: translate3d(calc(-1 * var(--partners-shift, 50%)), 0, 0); }
}

/* Mobile: ensure logos are clearly visible (bigger) */
@media (max-width: 575.98px) {
  .partners-carousel {
    --partners-logo-h: clamp(1.5rem, 6vw, 2.5rem);
    --partners-logo-max-w: clamp(8rem, 36vw, 16rem);
    mask-image: none;
  }

  .partner-logo-img {
    opacity: 0.75;
    min-width: 56px;
  }
}

/* Reduced motion: keep the carousel running (just slower) so it doesn't look "broken".
   If you ever want to fully disable motion, do it with a dedicated class (ex.: .no-motion). */
@media (prefers-reduced-motion: reduce) {
  .partners-carousel {
    --partners-scroll-duration: 80s;
  }
}

/* ---------- FAQ: bigger clickable area, multi-open, centered +/− ---------- */
.faq-item {
  padding: 0; /* button handles padding */
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
}

.faq-question h4 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.35;
}

.faq-icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-blue-600);
  color: white;
  display: grid;
  place-items: center;
  line-height: 1;
  margin-top: 0; /* fix misalignment */
}

.faq-icon-glyph {
  display: block;
  font-size: 16px;
  line-height: 1;
  transform: translateY(-0.5px); /* optical centering */
}

.faq-answer {
  padding: 0 1.5rem 1.25rem 1.5rem;
  margin: 0;
  overflow: hidden;
  transition: max-height 250ms ease;
}

.faq-answer p {
  margin: 0;
  color: var(--primary-blue-700);
  line-height: 1.6;
}

/* Ensure FAQ becomes one column on small screens */
@media (max-width: 767.98px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}



/* Screen-reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ================================
   Mobile Navigation (Hamburger)
   ================================ */
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid var(--neutral-grey-200);
    background: var(--neutral-white);
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.nav-toggle-icon { width: 28px; height: 28px; }

.nav-toggle:active { transform: scale(0.98); }

.nav-toggle:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 17, 132, 0.18);
}

/* Desktop: keep mobile CTA hidden */
.nav-cta-mobile { display: none; }

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.22);
    z-index: 6000;
}

/* Mobile dropdown */
@media (max-width: 767.98px) {
    .nav { position: relative; gap: 0.75rem; }

    /* Hide desktop contact on small screens; use the one inside the menu */
    .nav-cta-desktop { display: none; }

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

    .nav-links {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 0;
        right: 0;

        display: none; /* opens via .header.nav-open */
        flex-direction: column;
        align-items: stretch;

        margin: 0;
        padding: 1rem;
        gap: 0.75rem;

        background: var(--neutral-white, #fff);
        border: 1px solid var(--neutral-grey-200);
        border-radius: 16px;

        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
        z-index: 6001;
    }

    .header.nav-open .nav-links { display: flex; }

    .nav-link { padding: 0.75rem 0.5rem; border-radius: 10px; }

    .nav-link:focus-visible {
        outline: none;
        box-shadow: 0 0 0 4px rgba(0, 17, 132, 0.18);
    }

    /* Mobile CTA visible only inside the dropdown */
    .nav-cta-mobile {
        display: block;
        margin-top: 0.5rem;
    }

    .nav-cta-mobile .btn-contato {
        width: 100%;
        justify-content: center;
    }
}

/* ------------------------------
   Header / Hamburger size
------------------------------ */
.nav-toggle {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  padding: 0;
}

.nav-toggle-icon {
  width: 18px;
  height: 18px;
}

@media (min-width: 768px) {
  .nav-toggle { display: none !important; }
  .nav-cta-mobile { display: none !important; }
  .nav-cta-desktop { display: inline-flex !important; }
}

/* Mobile dropdown sempre branco e por cima de tudo */
@media (max-width: 767.98px) {
  .header { position: sticky; top: 0; z-index: 1000; background: #fff; }
  .nav-links { background: var(--neutral-white, #fff) !important; z-index: 6001; }
}

/* ================================
   Services Section (Cards - v7 recorte)
   ================================ */

/* ------------------------------
   Serviços — título à esquerda + botão abaixo
------------------------------ */
@media (max-width: 767.98px) {
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.75rem;
  }

  .services-title-group {
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }

  .services-main-title {
    text-align: left;
    width: 100%;
  }

  /* “Ver todos” abaixo, alinhado à direita */
  .services-link {
    align-self: flex-end;
    margin-top: 0.25rem;
  }
}

/* =========================
   Requested mobile fixes (Galaxy S8+ / <= 419px)
   1) Wider usable text area in "Proteção Residencial e Executiva"
   2) Prevenção de Perdas: compact height on <=575px (≈ Projetos + 10%)
   3) Hero title: keep 2 phrases below ~419px and avoid overflow
   ========================= */

/* 1) Allow "Proteção personalizada..." text to use full width up to right padding on small screens */
@media (max-width: 575.98px) {
  .card-protecao-content {
    width: 100%;
    max-width: 100%;
  }

  .card-protecao-title,
  .card-protecao-title .regular {
    width: 100%;
  }

  .card-protecao-text {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}

/* 2) Prevenção de Perdas: compact on small screens (target ≈ 468px = 425px * 1.10) */
@media (max-width: 575.98px) {
  .card-prevencao {
    height: 468px;
    min-height: 468px;
    padding: 1.5rem;
  }

  .card-prevencao-title {
    font-size: 1.8rem;
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  .card-prevencao-inner {
    height: auto;
    flex: 1;
    padding: 1.25rem;
    min-height: 0;
  }

  .inner-text {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .icon-prevencao {
    height: clamp(140px, 34vw, 190px);
  }
}

/* (REQ) Button “Conheça todos os diferenciais”: smaller + proportional on small screens */
@media (max-width: 575.98px) {
  .btn-differentiators {
    font-size: clamp(0.85rem, 3.6vw, 0.95rem);
    padding: clamp(0.55rem, 2.8vw, 0.7rem) clamp(0.9rem, 4.5vw, 1.25rem);
    white-space: nowrap;
    max-width: 100%;
  }
}

/* 3) Hero title: exactly 2 lines (phrases) below ~419px, still responsive */
@media (max-width: 419px) {
  .hero-title {
    font-size: clamp(26px, 8.4vw, 40px);
    line-height: 1.15;
  }

  .title-line-1,
  .title-line-2 {
    flex-wrap: nowrap;
    white-space: nowrap;
    max-width: 100%;
  }

  .title-icon {
    width: clamp(20px, 6.5vw, 30px);
    height: clamp(20px, 6.5vw, 30px);
  }

  .title-icon-folder {
    width: clamp(22px, 7vw, 32px);
    height: clamp(22px, 7vw, 32px);
  }

  /* (REQ) Match section titles to Hero title size on small screens (Galaxy S8+ and similar) */
  .about-title,
  .services-main-title {
    font-size: clamp(26px, 8.4vw, 40px);
    line-height: 1.15;
  }

  /* (REQ) Reduce "Segurança Eletrônica & Automação" title by two sizes on small screens */
  .card-eletronica-title {
    font-size: 1.125rem;
  }

}

/* Extra safety for very narrow screens */
@media (max-width: 360px) {
  .hero-title {
    font-size: 24px;
  }

  /* (REQ) Keep these section titles the same size as the Hero title on very narrow screens */
  .about-title,
  .services-main-title {
    font-size: 24px;
    line-height: 1.15;
  }

}
/* =========================================================
   Requested fixes (v8): Hero title + CTA buttons on <=414px
   1) Title keeps exactly 2 fixed phrases:
      - "Descubra uma Nova"
      - "Fronteira da Segurança"
   2) CTA buttons do not overflow on 360/375/390/412/414
   ========================================================= */

@media (max-width: 26rem) {
  /* Prevent the flex parent (.hero) from letting .container grow wider than the viewport  */
  .hero > .container {
    min-width: 0;
    width: 100%;
  }

  /* Allow long inline flex content in the hero header to wrap/shrink instead of widening the page */
  .hero-left {
    min-width: 0;
  }

  .tagline span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .hero-title {
    font-size: clamp(24px, calc(min(100vw, 412px) * 0.068), 34px);
    line-height: 1.12;
    max-width: 100%;
    overflow-x: hidden; /* prevent title from widening the page */
    overflow-y: hidden; /* remove scrollbar/slider UI */
  }
.title-icon {
  width: clamp(20px, calc(min(100vw, 412px) * 0.065), 30px);
  height: clamp(20px, calc(min(100vw, 412px) * 0.065), 30px);
}

.title-icon-folder {
  width: clamp(22px, calc(min(100vw, 412px) * 0.07), 32px);
  height: clamp(22px, calc(min(100vw, 412px) * 0.07), 32px);
}


  .title-line-1,
  .title-line-2 {
    white-space: nowrap;
    flex-wrap: nowrap;
    max-width: 100%;
    overflow-x: hidden; /* safety against 1px/subpixel overflow */
    overflow-y: hidden; /* remove scrollbar/slider UI */
  }

  /* ensure line 2 doesn't behave like shrink-to-fit inline-flex  */
  .title-line-2 {
    display: flex;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero-actions .btn {
    width: 100%;
    box-sizing: border-box; /* prevents width 100% + padding overflow */
    justify-content: center;
    padding: clamp(0.6rem, calc(min(100vw, 412px) * 0.026), 0.75rem) clamp(0.9rem, calc(min(100vw, 412px) * 0.04), 1.25rem);
    font-size: clamp(0.9rem, calc(min(100vw, 412px) * 0.034), 1rem);
  }
}
/* =========================================================
   Requested fixes (Sobre Nós) — very small screens (<=360px)
   1) Prevent horizontal overflow that shifts sections off-screen
   2) Keep "Diferencial" (title/text/buttons) inside the viewport
   3) Prevent 1500+/100+/24×7/20+ card text from overflowing
   ========================================================= */
@media (max-width: 360px) {
  /* Hero Sobre (12+ / 99%) — avoid widening the page */
  .hero-sobre-content {
    padding-bottom: 0;
  }

  .stat-card-left-mobile,
  .stat-card-right-mobile {
    position: static;
  }

  .stats-cards-mobile {
    position: static;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin-top: clamp(12px, 4vw, 18px);
    justify-content: center;
    flex-wrap: nowrap;
    padding: 0 4%;
    gap: 4%;
    box-sizing: border-box;
  }

  .stat-card-mobile {
    min-width: 0;
    flex: 1 1 0;
    padding: 16px 12px;
    box-sizing: border-box;
  }

  .stat-number-mobile {
    font-size: 28px;
  }

  .stat-label-mobile {
    font-size: 12px;
  }

  /* Diferencial section — keep all content within the viewport */
  .diferencial-left {
    max-width: 100%;
  }

  .diferencial-actions {
    width: 100%;
    gap: clamp(6px, 1.8vw, 10px);
  }

  .diferencial-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    box-sizing: border-box;
    padding: clamp(0.55rem, 2.6vw, 0.65rem) clamp(0.45rem, 2.2vw, 0.75rem);
    font-size: clamp(0.64rem, 3.3vw, 0.82rem);
  }

  /* Informações section — restore usable width and keep text inside the cards */
  .informacoes-section {
    padding: 28px 0;
  }

  .informacoes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .info-card {
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 0;
    padding: 14px 10px;
    gap: 10px;
  }

  .info-card h3 {
    font-size: clamp(22px, 9vw, 30px);
    line-height: 1.05;
  }

  .info-card p {
    font-size: clamp(11px, 3.5vw, 13px);
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .info-card-offset {
    margin-top: 0;
  }
}

/* =========================================================
   Requested fixes (Sobre Nós) — small phones (361px–420px)
   1) Keep 1500+/100+/24×7/20+ card text inside the cards
   ========================================================= */
@media (min-width: 361px) and (max-width: 420px) {
    .info-card {
        padding: 18px 10px;
        gap: 14px;
    }

    .info-card h3 {
        font-size: clamp(22px, 8vw, 28px);
        line-height: 1.05;
    }

    .info-card p {
        font-size: clamp(11px, 3.4vw, 12px);
        line-height: 1.25;
        overflow-wrap: anywhere;
        word-break: break-word;
        hyphens: auto;
    }
}

/* Ajuste de espaçamento Hero Clientes -> Casos (mobile, sem background) */
/* Objetivo: reduzir o “vazio” no topo da hero e a distância até a seção "Nossos Casos de Sucesso"
   SOMENTE em telas pequenas, quando a hero perde a imagem de fundo. */
@media (max-width: 767.98px) {
    /* Hero mais “curta” no topo */
    .hero-clientes {
        padding: 28px 0 28px 0; /* antes: 52px 0 75px 0 */
    }

    /* Remove o comportamento de centralização absoluta que cria espaço vazio quando a imagem some */
    .hero-clientes-wrapper {
        min-height: auto; /* antes: 601px */
    }

    .hero-clientes-content {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-top: 0;
    }

    .hero-clientes-stats {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        margin-top: 16px;
        width: 100%;
        max-width: 560px;
    }

    /* Aproxima a seção seguinte da hero */
    .casos-sucesso {
        margin-top: 12px;          /* antes: 30px */
        padding-top: 36px;         /* antes: 60px */
    }
}

@media (max-width: 575.98px) {
    .hero-clientes {
        padding: 22px 0 24px 0;
    }

    .hero-clientes-stats {
        margin-top: 14px;
    }

    .casos-sucesso {
        margin-top: 10px;
        padding-top: 30px;
    }
}
/* END Ajuste de espaçamento Hero Clientes -> Casos (mobile, sem background) */

/* Ajuste (Clientes - Hero Stats) — 320px: evitar labels "grudadas" (Cases/Clientes/Setores) */
@media (max-width: 360px) {
    /* Dá mais “respiro” lateral no card e evita que o conteúdo fique estreito demais */
    .hero-clientes-stats {
        padding: 10px 16px;
    }

    /* Evita que as colunas encostem e “juntem” palavras (ex.: "deClientes") */
    .hero-clientes-stats .stats-labels,
    .hero-clientes-stats .stats-values {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: 12px;
        align-items: start;
        justify-items: center;
    }

    .hero-clientes-stats .stats-labels {
        padding: 0;
        margin-bottom: 10px;
    }

    .hero-clientes-stats .stats-labels span {
        font-size: 14px;
        line-height: 1.15;
        text-align: center;
        overflow-wrap: anywhere;
        word-break: break-word;
        hyphens: auto;
    }

    .hero-clientes-stats .stats-values span {
        font-size: 15px;
        text-align: center;
    }
}
/* END Ajuste (Clientes - Hero Stats) — 320px */
