/* ========================================
  VARIAVEIS CSS
   ======================================== */
:root {
  /* Cores Base */
  --background: hsl(40, 20%, 98%);
  --foreground: hsl(30, 10%, 10%);
  --card: hsl(40, 25%, 97%);
  --card-foreground: hsl(30, 10%, 10%);
  --primary: hsl(35, 80%, 45%);
  --primary-foreground: hsl(40, 20%, 98%);
  --secondary: hsl(30, 15%, 92%);
  --secondary-foreground: hsl(30, 10%, 15%);
  --muted: hsl(35, 10%, 93%);
  --muted-foreground: hsl(30, 10%, 45%);
  --border: hsl(35, 20%, 88%);
  --input: hsl(35, 20%, 88%);
  --ring: hsl(35, 80%, 45%);
  --radius: 0.5rem;

  /* Cores das Marcas */
  --brand-elegance: hsl(35, 80%, 45%);
  --brand-azure: hsl(200, 70%, 45%);
  --brand-verde: hsl(150, 60%, 40%);
  --brand-blush: hsl(340, 70%, 50%);

  /* Gradientes */
  --gradient-gold: linear-gradient(135deg, hsl(35, 80%, 45%), hsl(45, 90%, 55%));
  --gradient-hero: linear-gradient(180deg, hsl(40, 20%, 98%) 0%, hsl(35, 25%, 95%) 100%);
  --gradient-elegance: linear-gradient(135deg, hsl(38, 92%, 50%), hsl(48, 96%, 53%));
  --gradient-azure: linear-gradient(135deg, hsl(206, 84%, 44%), hsl(186, 77%, 50%));
  --gradient-verde: linear-gradient(135deg, hsl(158, 64%, 35%), hsl(142, 71%, 45%));
  --gradient-blush: linear-gradient(135deg, hsl(346, 77%, 50%), hsl(330, 80%, 60%));

  /* Sombras */
  --shadow-soft: 0 4px 20px -4px hsla(35, 30%, 20%, 0.08);
  --shadow-card: 0 8px 32px -8px hsla(35, 30%, 20%, 0.12);
  --shadow-elevated: 0 16px 48px -12px hsla(35, 30%, 20%, 0.15);
}

/* âncoras */
#marcas {
  scroll-margin-top: 200px;
}

#menu {
  scroll-margin-top: 140px;
}

#quem-somos {
  scroll-margin-top: 140px;
}

#one-stop {
  scroll-margin-top: 140px;
}

#blog {
  scroll-margin-top: 140px;
}

#contato {
  scroll-margin-top: 140px;
}

/* Mobile */
@media (max-width: 768px) {

  #menu,
  #quem-somos,
  #one-stop,
  #blog,
  #contato {
    scroll-margin-top: 110px;
  }
}

.anchor-offset {
  display: block;
  position: relative;
  top: -140px;
  height: 0;
  visibility: hidden;
}

/* ========================================
   FONTE MADANI ARABIC
   ======================================== */
@font-face {
  font-family: 'Madani Arabic';
  src: url('../fonts/madani-arabic/MadaniArabic-Regular.woff2') format('woff2'),
    url('../fonts/madani-arabic/MadaniArabic-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'MadaniArabicVariable';
  src: url('MadaniArabicVariable.woff2') format('woff2'),
    url('MadaniArabicVariable.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ========================================
  RESET
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* ========================================
  BASE
======================================== */
body {
  font-family: 'MadaniArabicVariable', sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 3.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  font-family: 'MadaniArabicVariable', sans-serif;
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--muted-foreground);
}

.text-lg {
  font-size: 1.125rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.hidden {
  display: none !important;
}

/* Brand nav links - grayscale por padrão */
.brand-nav-link {
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
}

.brand-nav-link:hover {
  color: var(--brand-color);
}

.brand-nav-link.active {
  text-decoration: underline;
  text-underline-offset: 4px;
}

:root {
  --brand-elegance: #8B7355;
  --brand-azure: #4A90A4;
  --brand-verde: #6B8E6B;
  --brand-blush: #D4A5A5;
  --background: #FFFFFF;
  --foreground: #1A1A1A;
  --border: #103a5c;
  --radius: 0.375rem;
}

/* ========================================
   NAVBAR - NOVO DESIGN
   ======================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: var(--background);
}

.navbar-wrapper {
  position: relative;
}

.nav-link {
  font-weight: 400;
  text-decoration: none;
  color: #333;
}

.nav-link.active {
  font-weight: 700;
  /* negrito */
}

.nav-link.active {
  font-weight: 700;
  border-bottom: 2px solid #000;
}

/* ========================================
   LOGO CONTAINER - CORTE DIAGONAL
   ======================================== */
.logo-container {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  display: none;
}

.logo-title-sub img {
  max-height: 60px;
  /* Ajuste este valor conforme o tamanho desejado da logo */
  width: auto;
  /* Mantém a proporção correta da imagem */
  display: block;
  /* Remove espaços fantasmas abaixo da imagem */
  object-fit: contain;
}

.logo-background {
  background: white;
  height: 120px;
  padding-left: 2rem;
  padding-right: 4rem;
  display: flex;
  align-items: center;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  position: relative;
}

.logo-icon svg {
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.3);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-title-main {
  color: var(--primary-foreground);
}

.logo-title {
  display: flex;
  align-items: center;
  line-height: 1;
  /* Evita que a altura da linha do texto afete a imagem */
}

.logo-tagline {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
  margin-top: -2px;
}

/* ========================================
   TOP BAR - MARCAS
   ======================================== */
.topbar {
  border-bottom: 1px solid var(--border);
  background: hsla(30, 15%, 92%, 0.3);
}

.topbar-container {
  display: flex;
  height: 40px;
  align-items: center;
  justify-content: flex-end;
}

.topbar-nav {
  display: none;
  align-items: center;
}

.topbar-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  padding-right: 1rem;
  margin-right: 1rem;
  border-right: 1px solid var(--border);
}

.topbar-separator {
  width: 1px;
  height: 16px;
  background: var(--border);
  margin: 0 0.5rem;
  display: none;
}

/* --- Botões de marca na topbar --- */
.brand-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 6px;
}

.brand-btn img {
  height: 19px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.3);
  transition: filter 0.25s;
}

.brand-btn:hover img {
  filter: grayscale(0%) brightness(1);
}

/* Topbar visível por padrão (desktop) */
.topbar {
  display: block;
}

/* Esconder a topbar em telas pequenas (mobile) */
@media (max-width: 768px) {
  .topbar {
    display: none;
  }
}

@media (max-width: 900px) {
  .topbar {
    display: none;
  }
}

@media (max-width: 768px) {
  .topbar-nav {
    justify-content: center;
  }

  .brand-btn {
    display: none;
  }

  .brand-center {
    display: block;
  }
}

/* ========================================
   MAIN BAR - NAVEGACAO
   ======================================== */

.mainbar {
  border-bottom: 1px solid var(--border);
  background: #103a5c;
}

.mainbar-container {
  display: flex;
  height: 56px;
  align-items: center;
  justify-content: space-between;
}

/* Mobile Logo - Container */
.mobile-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 100%;
  padding: 8px 0;
  /* Espaçamento vertical */
}

/* ✅ CLASSE QUE FALTAVA - Imagem do Logo */
.mobile-logo-img {
  height: 36px;
  /* Altura fixa para caber na barra de 56px */
  width: auto;
  /* Mantém proporção */
  max-width: 120px;
  /* Largura máxima */
  object-fit: contain;
  /* Preserva aspecto da imagem */
  display: block;
}

/* Ajuste para telas maiores */
@media (min-width: 768px) {
  .mobile-logo-img {
    height: 40px;
    /* Pode ser um pouco maior no desktop */
    max-width: 150px;
  }
}

/* Ajuste para telas muito pequenas */
@media (max-width: 380px) {
  .mobile-logo-img {
    height: 30px;
    max-width: 100px;
  }
}

/* Main Navigation */
.main-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
  /* Branco para combinar com fundo azul */
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: rgba(255, 255, 255, 0.8);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #ffffff;
  /* Branco para combinar com fundo azul */
  cursor: pointer;
  border-radius: 0.375rem;
  transition: background 0.2s ease;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Mostrar navegação no desktop */
@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }
}

/* ========================================
   ESTILOS NOVOS - BRAND SHOWCASE
   ======================================== */

/* Variáveis de Cores baseadas na Imagem */
:root {
  --color-beauty: #e91e63;
  /* Rosa Pink */
  --color-pharma: #3f51b5;
  /* Azul Royal */
  --color-agro: #4caf50;
  /* Verde Folha */
  --color-logistics: #c62828;
  /* Vermelho Escuro */
}

.brand-grid {
  display: grid;
  /* Cria 4 colunas iguais no Desktop */
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  /* Na foto não parece ter espaço entre as imagens, se quiser espaço coloque 10px */
}

/* Responsivo para celular */
@media (max-width: 768px) {
  .brand-grid {
    grid-template-columns: 1fr;
    /* 1 coluna no celular */
  }
}

.brand-item {
  display: flex;
  flex-direction: column;
}

/* --- LOGO HEADER (Barra cinza no topo) --- */
.brand-logo-container {
  background-color: #eaeaea;
  /* O cinza claro da foto */
  padding: 1.5rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  /* Altura fixa para alinhar */
}

.logo-img {
  max-height: 40px;
  /* Ajuste conforme tamanho da sua logo */
  width: auto;
  display: block;
}

/* BRAND SHOWCASE */
.brand-showcase {
  padding: 4rem 0 6rem;
  background: hsla(0, 0%, 100%, 0.5);
}

.brand-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .brand-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.brand-item {
  display: flex;
  flex-direction: column;
}

.brand-logo-container {
  background-color: #ffffff;
  padding: 1.5rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

.logo-img {
  max-height: 40px;
  width: auto;
}

.brand-banner {
  position: relative;
  display: block;
  min-height: 350px;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
}


.brand-banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-banner-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.85;
  z-index: 1;
  transition: opacity 0.3s;
}

.brand-banner:hover .brand-banner-overlay {
  opacity: 0.92;
}

.beauty-overlay {
  background-color: #e91e63b0;
}

.pharma-overlay {
  background-color: #3f51b5e0;
}

.agro-overlay {
  background-color: #4caf50e0;
  ;
}

.logistics-overlay {
  background-color: #c62828d0;
}

.brand-banner-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.brand-banner-title {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.brand-banner-tagline {
  font-size: 0.85rem;
  margin-bottom: 4rem;
  opacity: 0.9;
}

.brand-banner-button {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-icon {
  font-size: 1.5rem;
  color: white;
}

/* ========================================
   BRAND BANNER
   ======================================== */

.full-box.beauty::before {
  background: #e6007e;
}

.full-box.pharma::before {
  background: #3155a6;
}

.full-box.agro::before {
  background: #6ab142;
}

.full-box.logistics::before {
  background: #c62828;
}

.brand-banner {
  pointer-events: none;
  aspect-ratio: 768 / 1376;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.brand-banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.brand-banner:hover .brand-banner-image {
  transform: scale(1.1);
}

/* Overlay colorido transparente */
.brand-banner-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.brand-banner:hover .brand-banner-overlay {
  opacity: 0.3;
}

/* Conteúdo do banner */
.brand-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: white;
  padding: 1.5rem;
  text-align: center;
}

.brand-banner-content .spacer {
  flex: 1;
}

/* Texto centralizado */
.brand-banner-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-banner-title {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .brand-banner-title {
    font-size: 1.5rem;
  }
}

.brand-banner-tagline {
  font-size: 0.75rem;
  opacity: 0.9;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .brand-banner-tagline {
    font-size: 1.1rem;
  }
}

/* Botão na parte inferior */
.brand-banner-button {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  background: transparent;
  border: 1px solid white;
  border-radius: var(--radius);
  cursor: pointer;
  margin-bottom: 1rem;
  transition: all 0.2s ease;
}

.brand-banner-button:hover {
  background: white;
  color: var(--foreground);
}

/* Update the global header-title h2 span for line breaks in multi-line titles */
.header-title h2 span {
  font-weight: 300;
  display: block;
  /* Changed from 'inline' to 'block' */
  color: inherit;
}

/* --- BANNER E IMAGEM --- */
.brand-banner {
  position: none;
  display: block;
  height: 317.6px;
  /* Altura da caixa colorida */
  overflow: hidden;
  text-decoration: none;
}

.brand-banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- OVERLAY COLORIDO (A camada de cor) --- */
.brand-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
  /* Transparência alta para ficar bem colorido como na foto */
  transition: opacity 0.3s ease;
  z-index: 1;
}

/* Cores específicas */
.beauty-overlay {
  background-color: var(--color-beauty);
}

.pharma-overlay {
  background-color: var(--color-pharma);
}

.agro-overlay {
  background-color: var(--color-agro);
}

.logistics-overlay {
  background-color: var(--color-logistics);
}

/* Efeito Hover (opcional: clarear um pouco ao passar o mouse) */
.brand-banner:hover .brand-banner-overlay {
  opacity: 0.92;
}

/* --- CONTEÚDO (Texto e Botão) --- */
.brand-banner-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 108%;
  padding: 42px;
  z-index: 2;
  /* Fica acima do overlay */
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* Centraliza verticalmente */
  align-items: center;
  /* Alinha texto ao centro */
}

.brand-banner-title {
  font-family: 'MadaniArabic', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: capitalize;
}

.brand-banner-tagline {
  line-height: 1.7;
  margin-bottom: 2rem;

  max-width: 520px;
  opacity: 1.0;

  text-align: center;

  color: white;
}


/* --- BOTÃO QUADRADO --- */
.brand-banner-button {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.arrow-icon {
  font-size: 1.5rem;
  color: white;
  line-height: 0;
  margin-bottom: 3px;
  /* Pequeno ajuste ótico */
}

.brand-banner:hover .brand-banner-button {
  background-color: #fff;
}

.brand-banner:hover .arrow-icon {
  color: #333;
  /* Seta fica escura no hover */
}

/* ========================================
   FEATURE BANNER (INTEGRAÇÃO)
   ======================================== */

.feature-banner-section {
  width: 100%;
  background-color: var(--muted);
  /* bg-muted */
}

/* Container Flex para dividir o layout */
.feature-banner-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (min-width: 768px) {
  .feature-banner-container {
    flex-direction: row;
    /* md:flex-row */
  }
}

/* --- Coluna de Texto --- */
.feature-text-side {
  flex: 1;
  /* flex-1 */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  /* p-8 */
}

@media (min-width: 768px) {
  .feature-text-side {
    padding: 4rem;
    /* md:p-16 */
  }
}

.feature-text-content {
  max-width: 32rem;
  /* max-w-lg */
  width: 100%;
}

/* Label superior (Exclusividade) */
.feature-overline {
  font-size: 0.875rem;
  /* text-sm */
  color: var(--primary);
  /* text-primary */
  text-transform: uppercase;
  letter-spacing: 0.15em;
  /* tracking-widest (aprox) */
  margin-bottom: 0.5rem;
  /* mb-2 */
  font-weight: 600;
}

/* Título Principal */
.feature-heading {
  /* A fonte font-display já é herdada do h2 global no seu CSS */
  font-size: 1.875rem;
  /* text-3xl */
  font-weight: 100;
  margin-bottom: 1rem;
  /* mb-4 */
  color: var(--foreground);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .feature-heading {
    font-size: 2.25rem;
    /* md:text-4xl */
  }
}

/* Parágrafo */
.feature-paragraph {
  color: var(--muted-foreground);
  line-height: 1.625;
  /* leading-relaxed */
}

/* --- Coluna de Imagem --- */
.feature-image-side {
  flex: 1;
  /* flex-1 */
  position: relative;
  min-height: 300px;
}

@media (min-width: 768px) {
  .feature-image-side {
    min-height: 400px;
    /* md:min-h-[400px] */
  }
}

/* Imagem absoluta para cobrir a área (object-cover) */
.feature-image-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-menu {
  display: none;
  border-bottom: 1px solid var(--border);
  background: var(--background);
  animation: fadeIn 0.3s ease;
}

.mobile-menu.active {
  display: block;
}

.mobile-brands {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding: 1.5rem 0;
}

.mobile-brand-link {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.75rem;
  background: var(--muted);
  border-radius: var(--radius);
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease;
}

.mobile-brand-link:hover {
  background: hsla(35, 10%, 93%, 0.8);
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 0 1.5rem;
  border-top: 1px solid var(--border);
}

.mobile-nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
  padding: 0.5rem 0;
}

.mobile-nav-link.active {
  color: var(--primary);
}

/* ========================================
  RESPONSIVE - DESKTOP
   ======================================== */
@media (min-width: 768px) {
  .logo-container {
    display: block;
  }

  .topbar-nav {
    display: flex;
  }

  .main-nav {
    display: flex;
  }

  .mainbar-container {
    justify-content: flex-end;
  }

  .mobile-logo {
    display: none;
  }

  .mobile-menu-btn {
    display: none;
  }
}


/* ========================================
  FOOTER
  SITE FOOTER - UNIFICADO
======================================== */
.site-footer {
  background: #2a2a28;
  /* Cor escura preservada */
  color: #d2c7bd;
  /* Cor de texto suave */
  padding: 80px 20px 40px;
  margin-top: 60px;
  font-family: 'MadaniArabicVariable', sans-serif;
  /* Ou a fonte do seu projeto */
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  /* Mobile: 1 coluna */
  gap: 40px;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1.6fr 1fr 1fr;
    /* Desktop: Proporção original */
  }
}

/* Colunas */
.footer-col h3,
.footer-col h4 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-col p {
  line-height: 1.6;
  margin-bottom: 20px;
  color: #cfcfcf;
}

/* Redes Sociais */
.social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social a {
  color: #d2c7bd;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social a:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

/* Navegação (Coluna 2) */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #d2c7bd;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.95rem;
}

.footer-nav a:hover {
  color: #ffffff;
  padding-left: 5px;
  /* Efeito sutil de deslocamento */
}

/* Rodapé Inferior (Copyright) */
.footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  padding-top: 25px;
  border-top: 1px solid #3a3a3a;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #ffffff;
}

/* Ajuste de ícones SVG */
.social svg {
  display: block;
}

/* ========================================
   BOTOES
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background: hsl(35, 80%, 40%);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background: var(--secondary);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

.btn-icon {
  font-size: 1.125rem;
}

/* ========================================
   FORMULARIOS
   ======================================== */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.input,
.textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  color: var(--foreground);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input:focus,
.textarea:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 3px hsla(35, 80%, 45%, 0.1);
}

.input::placeholder,
.textarea::placeholder {
  color: var(--muted-foreground);
}

.textarea {
  resize: vertical;
  min-height: 100px;
}

.form-switch {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.form-switch input[type="checkbox"] {
  width: 2.5rem;
  height: 1.25rem;
  appearance: none;
  background: var(--muted);
  border-radius: 9999px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s ease;
}

.form-switch input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 1rem;
  height: 1rem;
  background: white;
  border-radius: 50%;
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
  transition: left 0.2s ease;
}

.form-switch input[type="checkbox"]:checked {
  background: var(--primary);
}

.form-switch input[type="checkbox"]:checked::before {
  left: calc(100% - 1rem - 2px);
}

.form-actions {
  display: flex;
  gap: 0.75rem;
  padding-top: 1rem;
}

.form-actions .btn {
  flex: 1;
}

/* ========================================
   CAROUSEL DE MARCAS - PROPORÇÃO RESPONSIVA
   ======================================== */

.brand-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.carousel-link {
  display: block;
}

.carousel-image-container {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  overflow: hidden;
  /* MOBILE - Proporção mais quadrada para não cortar */
  min-height: 250px;
  max-height: 400px;
}

.carousel-image {
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
  object-position: center top;
  transition: transform 0.7s ease;
}

/*.carousel-link:hover .carousel-image {
  transform: scale(1.05);
}*/

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2), transparent);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.carousel-prev {
  left: 0.5rem;
}

.carousel-next {
  right: 0.5rem;
}

/* ========================================
   TABLETS (768px ou maior)
   ======================================== */
@media (min-width: 768px) {
  .carousel-image-container {
    aspect-ratio: 16 / 10;
    max-height: 1000px;
  }

  .carousel-image {
    object-position: center;
  }

  .carousel-btn {
    width: 48px;
    height: 48px;
    font-size: 2rem;
  }

  .carousel-prev {
    left: 1.5rem;
  }

  .carousel-next {
    right: 1.5rem;
  }
}

.carousel-content {
  position: absolute;
  inset: 0;
}

/* Bloco geral */
.carousel-actions {
  position: absolute;
  right: 2.5rem;
  bottom: 2.5rem;
  max-width: 360px;
  text-align: right;
}

/* Texto grande */
.carousel-actions-title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.6rem;
}

/* Texto menor */
.carousel-actions-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

/* Botões */
.carousel-buttons {
  display: flex;
  gap: 0.8rem;
  justify-content: flex-end;
}

/* Base */
.btn {
  padding: 0.65rem 1.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.25s ease;
}

/* Branco */
.btn-white {
  background: #ffffff;
  color: #000000;
}

.btn-white:hover {
  background: #f2f2f2;
}

/* Azul */
.btn-blue {
  background: #0d6efd;
  color: #ffffff;
}

.btn-blue:hover {
  background: #0b5ed7;
}

.carousel-actions {
  position: absolute;
  right: 2.5rem;
  bottom: 2.5rem;
  width: 420px;
  /* CONTROLE REAL */
  text-align: right;
}

/* Título */
.carousel-actions-title {
  font-size: 2.2rem;
  line-height: 1.15;
  margin-bottom: 0.6rem;
}

/* Subtítulo — sempre 2 linhas */
.carousel-actions-subtitle {
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 1.4rem;
}


/* ======================================
   CONTAINER BASE DO SLIDE
====================================== */
.carousel-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ======================================
   BLOCO DE TEXTO + BOTÕES
====================================== */
.carousel-actions {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  width: 420px;
  text-align: right;
  z-index: 5;
}

/* TÍTULO */
.carousel-actions-title {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.6rem;
}

/* SUBTÍTULO */
.carousel-actions-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 1.4rem;
}

/* BOTÕES */
.carousel-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
}

/* BOTÃO BASE */
.btn {
  padding: 0.65rem 1.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

/* BOTÃO BRANCO */
.btn-white {
  background: #ffffff;
  color: #000000;
}

.btn-white:hover {
  background: #f2f2f2;
}

/* BOTÃO AZUL */
.btn-blue {
  background: #0d6efd;
  color: #ffffff;
}

.btn-blue:hover {
  background: #0b5ed7;
}

/* ======================================
   RESPONSIVO — MOBILE
====================================== */
@media (max-width: 768px) {
  .carousel-actions {
    right: 1rem;
    bottom: 1rem;
    width: 260px;
  }

  .carousel-actions-title {
    font-size: 1.3rem;
    line-height: 1.2;
  }

  .carousel-actions-subtitle {
    font-size: 0.75rem;
    line-height: 1.4;
    margin-bottom: 0.9rem;
  }

  .carousel-buttons {
    gap: 0.5rem;
  }

  .btn {
    padding: 0.45rem 1rem;
    font-size: 0.7rem;
  }
}

/* ======================================
   DESKTOP GRANDE (OPCIONAL)
====================================== */
@media (min-width: 1024px) {
  .carousel-image-container {
    aspect-ratio: auto;
    max-height: fit-content;
  }
}

/* ======================================
   BOTÃO "VER MAIS" DO CAROUSEL
====================================== */
/* ===============================
   CONTAINER DO BOTÃO
================================ */
.carousel-button {
  position: absolute;
  right: 2rem;
  bottom: 5.2rem;
  z-index: 6;

  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;

  background: none;
  border: none;
  cursor: pointer;
}

/* ===============================
   CAIXA VISUAL DO BOTÃO
================================ */
.carousel-button .btn-box {
  background: rgba(16, 58, 92, 0.85);
  color: #ffffff;

  padding: 0.9rem 2.6rem;
  font-size: 0.95rem;
  font-weight: 600;

  border-radius: 4px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

/* Texto auxiliar */
.carousel-button span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Hover */
.carousel-button:hover .btn-box {
  background: #f2f2f2;
  color: #000;
  transform: translateY(-2px);
}

/* ===============================
   MOBILE (REDUZ APENAS)
================================ */
@media (max-width: 768px) {
  .carousel-button {
    right: 1rem;
    bottom: 1rem;
    gap: 0;
  }

  .carousel-button .btn-box {
    padding: 0.45rem 1.1rem;
    font-size: 0.65rem;
    border-radius: 3px;
  }

  .carousel-button span {
    display: none;
  }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
  background: var(--gradient-hero);
  padding: 4rem 0 6rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: black;
  max-width: 42rem;
  margin: 0 auto;
}

.text-gradient {
  background: #143961;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 6rem 0 8rem;
  }

  .hero-title {
    font-size: 3.75rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }
}

/* ========================================
   BRAND HEADER (Paginas de Marca)
   ======================================== */
.brand-header {
  padding: 6rem 0 8rem;
}

.gradient-elegance {
  background: var(--gradient-elegance);
}

.gradient-azure {
  background: var(--gradient-azure);
}

.gradient-verde {
  background: var(--gradient-verde);
}

.gradient-blush {
  background: var(--gradient-blush);
}

.brand-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.brand-tagline {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

.brand-description {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .brand-title {
    font-size: 4.5rem;
  }

  .brand-tagline {
    font-size: 1.5rem;
  }
}

/* ========================================
   FILTROS DE PRODUTOS
   ======================================== */
.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  color: var(--foreground);
  transition: all 0.2s ease;
}

.filter-btn:hover {
  background: var(--secondary);
}

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-foreground);
}


/* ========================================
   ESTRUTURA GERAL
   ======================================== */
.one-stop-section {
  background-color: #fcfcfc;
  /* Fundo levemente off-white */
  padding: 4rem 1rem;
  color: #333;
  font-family: 'MadaniArabicVariable', sans-serif;
  /* Ajuste para sua fonte */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ========================================
   CABEÇALHO DIVIDIDO (HEADER)
   ======================================== */
.header-split {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  gap: 2rem;
}

.header-title h2 {
  font-size: 2.5rem;
  font-weight: 300;
  /* Fonte mais fina para "One Stop Shop" */
  color: #555;
  line-height: 1.1;
  margin: 0;
}

.header-title h2 span {
  font-weight: 400;
  /* Levemente mais grosso ou igual */
  display: block;
}

.header-desc {
  max-width: 500px;
}

.header-desc p {
  color: #667;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

/* LINHA DIVISÓRIA DOURADA */
.separator-line {
  width: 100%;
  height: 3px;
  background-color: #d4b096;
  /* Cor bege/dourada da imagem */
  margin-bottom: 4rem;
  border-radius: 2px;
}

/* ========================================
   GRID (Reutilizando sua lógica)
   ======================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  /* Mobile: 1 coluna */
  gap: 9rem;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    /* Desktop: 4 colunas */
  }
}

/* ========================================
   HERO – ONE STOP SHOP
   ======================================== */
.hero-one-stop-shop {
  position: relative;
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #ffffff;
  text-align: right;
  overflow: hidden;
}

/* Wrapper da imagem de fundo */
.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Imagem de fundo */
.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

/* Container */
.hero-one-stop-shop .container {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* Conteúdo */
.hero-content-one-stop {
  max-width: 560px;
  padding: 32px;
}

/* Tipografia */
.hero-tagline-one-stop {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-content-one-stop p {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.hero-highlight-one-stop {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
}

/* ========================================
   ONE STOP SOLUTIONS – SECTION
   ======================================== */
.one-stop-solutions-section {
  padding: 96px 0;
  background: #ffffff;
}

.one-stop-solutions-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.header-split {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  text-align: center;
  margin-bottom: 72px;
}

.header-title {
  max-width: 700px;
}

.one-stop-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
}

.header-desc {
  max-width: 1000px;
}

.header-desc p {
  font-size: 24px;
  line-height: 1.75;
}

/* ========================================
   CARDS
   ======================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 14px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* Imagem do card */
.card img {
  width: 100%;
  max-width: 120px;
  margin: 0 auto 28px;
  display: block;
}

/* Texto do card */
.card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 14px;
}

.card p {
  font-size: 18px;
  line-height: 1.6;
}

/* ========================================
   RESPONSIVO
   ======================================== */
@media (max-width: 992px) {
  .hero-one-stop-shop {
    height: 560px;
    text-align: center;
  }

  .hero-one-stop-shop .container {
    justify-content: center;
  }

  .hero-content-one-stop {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-tagline-one-stop {
    font-size: 2.4rem;
  }

  .hero-content-one-stop p {
    font-size: 1.1rem;
  }

  .one-stop-title {
    font-size: 36px;
  }

  .header-desc p {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .hero-one-stop-shop {
    height: auto;
    padding: 80px 0;
  }

  .hero-tagline-one-stop {
    font-size: 2rem;
  }

  .cards-grid {
    gap: 28px;
  }
}


/* ----------------------------------------
    RESPONSIVIDADE HERO ONE STOP SHOP
---------------------------------------- */

@media (max-width: 992px) {
  .hero-one-stop-shop {
    height: 500px;
    text-align: center;
    justify-content: center;
  }

  .hero-one-stop-shop .container {
    justify-content: center;
  }

  .hero-content-one-stop {
    max-width: 90%;
    padding: 20px;
  }

  /* Ajusta posição da imagem em tablets */
  .hero-bg-image {
    object-position: center center;
  }
}

@media (max-width: 768px) {
  .hero-tagline-one-stop {
    font-size: 2em;
  }

  .hero-content-one-stop p {
    font-size: 1em;
  }

  .hero-highlight-one-stop {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .hero-one-stop-shop {
    height: 450px;
  }

  .hero-tagline-one-stop {
    font-size: 1.8em;
  }
}

.header-title h2 {

  font-family: 'MadaniArabicVariable', sans-serif;

  /* Deixa a letra bem fina (Light) igual à imagem */
  font-weight: 300;

  /* Transforma tudo em MAIÚSCULAS automaticamente */
  text-transform: uppercase;

  /* Cor azul marinho escuro da imagem */
  color: #1a2c4e;

  /* Espaçamento largo entre as letras */
  letter-spacing: 4px;

  /* Tamanho da fonte (ajuste conforme necessário) */
  font-size: 2.5rem;

  /* Remove margens extras */
  margin: 0;
  line-height: 1.2;
}

/* Garante que o span (Solutions) tenha o mesmo estilo do resto */
.header-title h2 span {
  font-weight: 300;
  display: inline;
  /* Mantém na mesma linha se houver espaço, ou use 'block' para quebrar */
  color: inherit;
}

/* ========================================
   CARDS DE ÍCONES
   ======================================== */
.icon-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* Estilo dos Ícones */
.icon-wrapper {
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  color: #1a3b5c;
  /* Azul Escuro da imagem */
}

.icon-wrapper i {
  font-size: 4rem;
  /* Tamanho do ícone */
}

/* Ajustes para ícones compostos (ex: Lâmpada + lápis) */
.icon-wrapper .small-icon {
  font-size: 1.5rem;
  position: absolute;
  bottom: 0;
  right: -10px;
}

.icon-wrapper .small-icon-right {
  font-size: 2rem;
  position: absolute;
  bottom: -5px;
  right: -15px;
  background: #fcfcfc;
  /* Borda falsa */
}

/* Título abaixo do ícone */
.icon-title {
  font-size: 0.95rem;
  font-weight: 700;
  /* Negrito */
  color: #1a202c;
  /* Quase preto */
  line-height: 1.4;
  margin: 0;
}

/* Responsividade do Header */
@media (max-width: 768px) {
  .header-split {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .header-desc {
    text-align: center;
  }
}

/* ========================================
   PRODUCT CARD
   ======================================== */
.product-card {
  cursor: pointer;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-card:hover .product-name {
  color: var(--primary);
}

.product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--muted);
  margin-bottom: 1rem;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-image-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background 0.3s ease;
}

.product-card:hover .product-image-overlay {
  background: rgba(0, 0, 0, 0.1);
}

.product-category {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.product-name {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  transition: color 0.2s ease;
}

.product-price {
  color: var(--muted-foreground);
}

.no-products {
  text-align: center;
  padding: 4rem 0;
  color: var(--muted-foreground);
}

/* ========================================
   MODAL
   ======================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.modal.hidden {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .6);
}

.modal-content {
  position: relative;
  background: #fff;
  max-width: 900px;
  max-height: 90vh;
  margin: 5vh auto;
  padding: 32px;
  overflow-y: auto;
  border-radius: 12px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}


/* ========================================
   SOBRE
   ======================================== */
.about-section {
  padding: 4rem 0;
}

.about-content {
  max-width: 48rem;
  margin: 0 auto;
}

.about-block {
  margin-bottom: 2rem;
}

.about-block p {
  color: var(--muted-foreground);
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.value-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.value-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.value-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ========================================
   ANIMACOES
   ======================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.3s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

/* ========================================
  LOADING SKELETON
   ======================================== */
.skeleton {
  background: linear-gradient(90deg, var(--muted) 25%, var(--secondary) 50%, var(--muted) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* ========================================
  BRAND SHOWCASE SECTION
   ======================================== */
.brand-showcase {
  padding: 4rem 0 6rem;
  background: hsl(0, 0%, 100%);
}

.brand-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 576px) {
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .brand-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========================================
  BRAND LOGO - PRETO E BRANCO / COLORIDO NO HOVER
   ======================================== */
.brand-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: white;
  border-bottom: 1px solid var(--border);
}

.brand-logo-link {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.6);
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .brand-logo-link {
    font-size: 1.25rem;
  }
}

.brand-logo-link:hover {
  filter: grayscale(0%);
  color: var(--brand-color);
}

/* =============================================================================
  11. COMO ENTREGAMOS (Cards de entrega) — REFINADO
  ============================================================================= */
.como-entregamos {
  padding: 72px 0;
  background: #f6f7f9;
}

.como-entregamos .header-split {
  margin-bottom: 4rem;
}

.entregamos-text {
  color: #667;
  line-height: 1.7;
}

/* GRID */
.entregamos-grid {
  display: grid;
  gap: 3.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .entregamos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .entregamos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* CARD */
.entrega-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  padding: 40px 28px;

  display: flex;
  flex-direction: column;
  align-items: center;

  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
}

.entrega-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* IMAGEM */
.entrega-img {
  height: clamp(200px, 20vw, 280px);
  width: 100%;
  max-width: 360px;
  object-fit: contain;
  display: block;
  margin: 0 auto 28px;
}

/* TEXTO */
.entrega-info {
  width: 100%;
  text-align: left;
}

.entrega-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #141414;
  line-height: 1.3;
}

.entrega-info p {
  font-size: 1rem;
  line-height: 1.6;
  color: #5a5a5a;
  margin: 0;
}


/* ========================================
   CARD (ESTRUTURA LIMPA)
   ======================================== */
.entrega-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;

  /* Aqui está a mágica: Flexbox em Coluna */
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Centraliza itens horizontalmente */
  text-align: center;
  /* Centraliza o texto */

  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  /* Faz todos os cards terem a mesma altura */
}

.entrega-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* ========================================
   IMAGEM (AJUSTADA)
   ======================================== */
.entrega-img {
  height: clamp(180px, 18vw, 260px);
  /* cresce no desktop e reduz no mobile */
  width: 100%;
  max-width: 320px;
  /* evita ficar gigante demais */
  object-fit: contain;
  display: block;
  margin: 0 auto 20px;
}

/* ========================================
   TEXTO (INFO)
   ======================================== */
.entrega-info {
  background: transparent;
  padding: 0;
  /* O Flexbox do card já cuida do posicionamento */
}

.entrega-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
  line-height: 1.3;
}

.entrega-info p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #667;
  margin: 0;
}

/* ========================================
   VARIAVEIS CSS
   ======================================== */
:root {
  /* Cores Base */
  --background: hsl(40, 20%, 98%);
  --foreground: hsl(30, 10%, 10%);
  --card: hsl(40, 25%, 97%);
  --card-foreground: hsl(30, 10%, 10%);
  --primary: hsl(35, 80%, 45%);
  --primary-foreground: hsl(40, 20%, 98%);
  --secondary: hsl(30, 15%, 92%);
  --secondary-foreground: hsl(30, 10%, 15%);
  --muted: hsl(35, 10%, 93%);
  --muted-foreground: hsl(30, 10%, 45%);
  --border: hsl(35, 20%, 88%);
  --input: hsl(35, 20%, 88%);
  --ring: hsl(35, 80%, 45%);
  --radius: 0.5rem;

  /* Cores Adicionais */
  --brand-elegance: #8B7355;
  --brand-azure: #4A90A4;
  --brand-verde: #6B8E6B;
  --brand-blush: #D4A5A5;

  /* Gradientes */
  --gradient-gold: linear-gradient(135deg, hsl(35, 80%, 45%), hsl(45, 90%, 55%));
  --gradient-hero: linear-gradient(180deg, hsl(40, 20%, 98%) 0%, hsl(35, 25%, 95%) 100%);
  --gradient-elegance: linear-gradient(135deg, hsl(38, 92%, 50%), hsl(48, 96%, 53%));
  --gradient-azure: linear-gradient(135deg, hsl(206, 84%, 44%), hsl(186, 77%, 50%));
  --gradient-verde: linear-gradient(135deg, hsl(158, 64%, 35%), hsl(142, 71%, 45%));
  --gradient-blush: linear-gradient(135deg, hsl(346, 77%, 50%), hsl(330, 80%, 60%));

  /* Sombras */
  --shadow-soft: 0 4px 20px -4px hsla(35, 30%, 20%, 0.08);
  --shadow-card: 0 8px 32px -8px hsla(35, 30%, 20%, 0.12);
  --shadow-elevated: 0 16px 48px -12px hsla(35, 30%, 20%, 0.15);

  /* Cores das Marcas (Showcase) */
  --color-beauty: #e91e63;
  --color-pharma: #3f51b5;
  --color-agro: #4caf50;
  --color-logistics: #c62828;
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* BASE */
body {
  font-family: 'MadaniArabicVariable', sans-serif;
  background: #FFFFFF;
  color: #103a5c;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-weight: 600;
  line-height: 2.2;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  font-family: 'MadaniArabicVariable', sans-serif;
}

/* LAYOUT UTILS */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: -1rem 2rem;
}

.container01 {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  background-color: #d1d1d1;
}

.text-center {
  text-align: center;
}

.mt-10 {
  margin-top: 2.5rem;
}

.hidden {
  display: none !important;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: #fff;
}

.logo-container {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  display: none;
}

.logo-background {
  background: white;
  height: 120px;
  padding-left: 2rem;
  padding-right: 4rem;
  display: flex;
  align-items: center;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.logo-title-sub img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}

.topbar {
  border-bottom: 1px solid var(--border);
  background: hsla(30, 15%, 92%, 0.3);
}

.topbar-container {
  display: flex;
  height: 40px;
  align-items: center;
  justify-content: flex-end;
}

.topbar-nav {
  display: none;
  align-items: center;
  gap: 1rem;
}

.brand-center a {
  font-size: 0.875rem;
  color: #555;
}

.brand-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 6px;
}

.brand-btn img {
  height: 19px;
  width: auto;
  filter: grayscale(100%) brightness(0.3);
  transition: filter 0.25s;
}

.brand-btn:hover img {
  filter: grayscale(0%) brightness(1);
}

.mainbar {
  border-bottom: 1px solid #103a5c;
  background: #103a5c;
}

.mainbar-container {
  display: flex;
  height: 56px;
  align-items: center;
  justify-content: space-between;
}

.mobile-logo {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 8px 0;
}

.mobile-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
  transition: 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: rgba(255, 255, 255, 0.8);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
}

/* MEDIA QUERIES HEADER */
@media (min-width: 768px) {
  .logo-container {
    display: block;
  }

  .topbar-nav {
    display: flex;
  }

  .main-nav {
    display: flex;
  }

  .mainbar-container {
    justify-content: flex-end;
  }

  .mobile-logo {
    display: none;
  }

  .mobile-menu-btn {
    display: none;
  }

  .mobile-logo-img {
    height: 40px;
  }
}

/* ONE STOP SHOP SECTION */
.one-stop-section {
  background-color: #ffffff;
  padding: 2rem 1rem;
  color: #333;
}

.header-split {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  gap: 2rem;
}

.header-title h2 {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  color: #1a2c4e;
  letter-spacing: 4px;
  font-size: 2.5rem;
  margin: 0;
  line-height: 1.2;
}

.separator-line {
  width: 100%;
  height: 3px;
  background-color: #d4b096;
  margin-bottom: 4rem;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.icon-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-wrapper img {
  height: 80px;
  width: auto;
  margin-bottom: 1.5rem;
}

.icon-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a202c;
}

/* FEATURE BANNER */
.feature-banner-section {
  background-color: var(--muted);
}

.feature-banner-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.feature-text-side {
  flex: 1;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-text-content {
  max-width: 32rem;
}

.feature-overline {
  font-size: 0.875rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.feature-heading {
  font-size: 1.875rem;
  font-weight: 100;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.bullets li {
  margin-bottom: 0.5rem;
  color: var(--muted-foreground);
}

.feature-image-side {
  flex: 1;
  position: relative;
  min-height: 300px;
}

.feature-image-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .feature-banner-container {
    flex-direction: row;
  }

  .feature-text-side {
    padding: 4rem;
  }
}

/* COMO ENTREGAMOS */
.como-entregamos {
  padding: 48px 0;
  background: #f6f7f9;
}

.entregamos-text {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: left;
  color: #667;
}

.entregamos-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .entregamos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .entregamos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.entrega-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: 0.3s ease;
  height: 100%;
}

.entrega-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.entrega-img {
  height: 270px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.entrega-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.entrega-info p {
  font-size: 0.95rem;
  color: #667;
}

/* FOOTER */
.site-footer {
  background: #103a5c;
  color: #ffffff;
  padding: 80px 20px 40px;
  margin-top: 60px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1.6fr 1fr 1fr;
  }
}

.footer-col h3,
.footer-col h4 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-col p,
.footer-contact li,
.footer-nav a {
  color: #ffffff;
}

.social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social a {
  color: #ffffff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  padding-top: 25px;
  border-top: 1px solid #ffffff;
  text-align: center;
  font-size: 0.85rem;
  color: #999;
}

.blog-swiper .swiper-slide {
  height: auto;
  display: flex;
}

/* Estilos adicionais para o blog grid e modal de detalhes */
.blog-grid-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  padding: 40px 0;
}

@media (min-width: 600px) {
  .blog-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .blog-grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .blog-grid-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* MODAL GERAL - Garante que o backdrop cubra tudo e o conteúdo seja centralizado */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  /* Z-index alto para garantir que fique por cima de tudo */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  visibility: hidden;
  /* Controlado pelo JS */
  opacity: 0;
  /* Controlado pelo JS */
  transition: visibility 0.3s ease, opacity 0.3s ease;
}

.modal.visible {
  /* Nova classe para exibir o modal */
  visibility: visible;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: hsla(30, 15%, 8%, 0.8);
  backdrop-filter: blur(4px);
  z-index: 9;
  /* Abaixo do modal-content */
}

/* Modal Content para Editor e Detalhes de Post */
.modal-content {
  position: relative;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-elevated);
  z-index: 10;
  /* Acima do backdrop */
  transform: scale(0.95);
  /* Efeito de escala ao abrir */
  transition: transform 0.3s ease;
}

.modal.visible .modal-content {
  transform: scale(1);
}

/* Estilos específicos para o Modal de Detalhes do Post */
#postDetailModal .modal-content {
  max-width: 800px;
  /* Largura máxima para o conteúdo do post */
}

.post-detail-close {
  position: absolute;
  /* Altera para absolute para ser relativo ao modal-content */
  top: 1rem;
  right: 1rem;
  z-index: 11;
  /* Acima do conteúdo e da imagem */
  background: var(--card);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.post-detail-close:hover {
  background: var(--secondary);
  box-shadow: var(--shadow-elevated);
}

.post-detail-content {
  padding: 2rem;
  position: relative;
}

.post-detail-image {
  aspect-ratio: 16/9;
  /* Proporção para a imagem de capa */
  overflow: hidden;
  border-radius: var(--radius);
  /* Cantos arredondados */
  margin-bottom: 2rem;
}

.post-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-detail-body {
  padding: 0 1rem;
  /* Ajusta o padding do corpo para não ser excessivo */
}

.post-detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.post-detail-meta {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.post-detail-text {
  line-height: 1.7;
  color: hsla(30, 10%, 10%, 0.9);
}

.post-detail-text h1,
.post-detail-text h2,
.post-detail-text h3,
.post-detail-text h4,
.post-detail-text h5,
.post-detail-text h6 {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.post-detail-text p {
  margin-bottom: 1rem;
}

.post-detail-text a {
  color: var(--primary);
  text-decoration: underline;
}

.post-detail-text img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5rem auto;
  border-radius: var(--radius);
}

/* Skeleton loader para posts */
.blog-card.skeleton {
  min-height: 250px;
  /* Altura mínima para o skeleton card */
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.blog-card.skeleton::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--muted) 25%, var(--secondary) 50%, var(--muted) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* ========================================
   SEÇÃO QUEM SOMOS (DESIGN FIEL)
   ======================================== */

/* --- HERO SECTION --- */
.about-hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  /* Ajuste a altura conforme necessário */
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  /* Texto alinhado embaixo */
}

/* Imagem de Fundo Fixa/Cover */
.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Overlay Azul Escuro (Cor exata da imagem 1) */
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(16, 58, 92, 0.90);
  /* Azul profundo com transparência */
  mix-blend-mode: multiply;
  /* Para mesclar melhor com a foto */
  z-index: 2;
}

/* Conteúdo sobre a imagem */
.about-hero-content {
  position: relative;
  z-index: 3;
  padding-bottom: 4rem;
  /* Espaço inferior */
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
}

.about-label {
  display: inline-block;
  color: #C5A47E;
  /* Cor Dourada/Bege do título */
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border-bottom: 2px solid #C5A47E;
  /* Linha decorativa se desejar */
  padding-bottom: 2px;
}

.about-title {
  font-family: 'MadaniArabicVariable', sans-serif;
  /* Fonte sem serifa bold */
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #ffffff;
  max-width: 800px;
}

.about-description {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 400;
  max-width: 700px;
  color: #e0e0e0;
}

/* Responsivo Hero */
@media (max-width: 768px) {
  .about-hero-section {
    height: auto;
    padding: 4rem 1rem;
  }

  .about-title {
    font-size: 1.8rem;
  }
}


/* --- SEÇÃO ALCANCE GLOBAL --- */
.global-reach-section {
  background-color: #ffffff;
  padding: 5rem 0;
}

.global-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 900px) {
  .global-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.global-map-col {
  flex: 1.2;
  width: 100%;
}

.map-image {
  width: 100%;
  height: auto;
  /* Se não tiver a imagem do mapa transparente, use mix-blend-mode para sumir o fundo branco se houver */
  mix-blend-mode: multiply;
}

.global-text-col {
  flex: 0.8;
  padding-left: 2rem;
}

.section-label {
  color: #AFA083;
  /* Tom dourado fosco */
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1rem;
  border-bottom: 2px solid #AFA083;
}

.section-label.centered {
  display: table;
  margin: 0 auto 1rem auto;
}

.global-title {
  font-family: 'MadaniArabicVariable', sans-serif;
  /* Fonte serifada para elegância */
  font-size: 2rem;
  color: #333333;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.global-text {
  font-family: 'MadaniArabicVariable', sans-serif;
  color: #555555;
  line-height: 1.6;
  font-size: 1rem;
}

/* --- SEÇÃO PILARES --- */
.pillars-section {
  background-color: #ffffff;
  padding: 5rem 0;
}

.pillars-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  /* Espaço entre cards */
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
    /* 3 colunas no desktop */
  }
}

/* Estilo Base dos Cards */
.pillar-card {
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 250px;
  transition: transform 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-5px);
}

.pillar-card h3 {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #333;
}

.pillar-card p {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #444;
}

/* Cores específicas de cada card (Baseado na imagem 2) */
.card-mission {
  background-color: #EBE8E4;
  /* Bege mais claro */
}

.card-vision {
  background-color: #D6D0C9;
  /* Bege médio/acinzentado */
}

.card-values {
  background-color: #9D9391;
  /* Cinza/Marrom escuro */
}

/* Ajuste de texto para o card escuro */
.card-values h3,
.card-values p {
  color: #2a2a2a;
  /* Mantém escuro conforme imagem ou ajuste para branco se preferir contraste */
}

/* --- MANIFESTO FINAL --- */
.manifesto-wrapper {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 2rem;
}

.manifesto-text {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-style: italic;
  font-size: 1.25rem;
  color: #777;
  line-height: 1.6;
  font-weight: 500;
}

.manifesto-divider {
  width: 100px;
  height: 1px;
  background-color: #ccc;
  margin: 2rem auto;
}

.manifesto-footer {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-weight: 700;
  color: #999;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* ========================================
   SEÇÃO QUEM SOMOS (AJUSTADA)
   ======================================== */

/* --- 1. HERO SECTION (ALTURA REDUZIDA) --- */
.about-hero-section {
  position: relative;
  width: 100%;
  /* Alterado de 600px para 450px para ficar menor */
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  /* Centraliza o texto verticalmente */
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Isso garante que o rosto das pessoas apareça mesmo cortando a altura */
  object-position: center 65%;
}

/* Overlay Azul Escuro */
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(16, 58, 92, 0.85);
  /* Azul Full Brands */
  mix-blend-mode: multiply;
  z-index: 2;
}

.about-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
  padding-top: 2rem;
  /* Pequeno ajuste */
}

.about-label {
  display: inline-block;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid #C5A47E;
}

.about-title {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-size: 2.2rem;
  /* Fonte levemente reduzida */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #ffffff;
  max-width: 800px;
}

.about-description {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  max-width: 650px;
  color: #e0e0e0;
}

/* --- 2. SEÇÃO ALCANCE GLOBAL --- */
.global-reach-section {
  background-color: #ffffff;
  padding: 4rem 0;
}

.global-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 900px) {
  .global-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.global-map-col {
  flex: 1.2;
  width: 100%;
}

.map-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  mix-blend-mode: multiply;
}

.global-text-col {
  flex: 0.8;
  padding-left: 1rem;
}

@media (min-width: 900px) {
  .global-text-col {
    padding-left: 3rem;
  }
}

.section-label {
  color: #AFA083;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1rem;
  border-bottom: 2px solid #AFA083;
}

.section-label.centered {
  display: table;
  margin: 0 auto 1.5rem auto;
}

.global-title {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-size: 1.8rem;
  color: #333333;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.global-text {
  font-family: 'MadaniArabicVariable', sans-serif;
  color: #555555;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* --- 3. SEÇÃO PILARES --- */
.pillars-section {
  background-color: #ffffff;
  padding: 4rem 0;
}

.pillars-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar-card {
  padding: 2.5rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
  transition: transform 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-5px);
}

.pillar-card h3 {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: #333;
}

.pillar-card p {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #444;
}

/* Cores dos Cards */
.card-mission {
  background-color: #EBE8E4;
}

.card-vision {
  background-color: #D6D0C9;
}

.card-values {
  background-color: #9D9391;
}

.card-values h3,
.card-values p {
  /* Ajuste de contraste se necessário para o card mais escuro */
  color: #2a2a2a;
}

.manifesto-wrapper {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  padding-top: 1rem;
}

.manifesto-text {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-style: italic;
  font-size: 1.15rem;
  color: #777;
  line-height: 1.5;
  font-weight: 500;
}

.manifesto-divider {
  width: 80px;
  height: 1px;
  background-color: #ccc;
  margin: 1.5rem auto;
}

.manifesto-footer {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-weight: 700;
  color: #0a2342;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* --- 4. SEÇÃO FOTO FINAL (NOVO) --- */
.final-team-section {
  width: 100%;
  margin-top: 4rem;
  /* Espaço entre o manifesto e a foto */
  line-height: 0;
  /* Remove espaço branco abaixo da imagem */
}

.final-team-img {
  width: 100%;
  height: auto;
  max-height: 600px;
  /* Limite de altura se quiser */
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ========================================
   SEÇÃO QUEM SOMOS
   ======================================== */

/* ----------------------------------------
   1. HERO SECTION
   ---------------------------------------- */
.about-hero-section {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .about-hero-section {
    height: 360px;
  }
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}

/* Ajustes finos para mobile */
@media (max-width: 768px) {
  .hero-bg-img {
    object-position: center 45%;
  }
}

@media (max-width: 480px) {
  .hero-bg-img {
    object-position: center 40%;
  }
}

/* Overlay */
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(16, 58, 92, 0.7);
  mix-blend-mode: multiply;
  z-index: 2;
}

/* Conteúdo */
.about-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1270px;
  margin: 0 auto;
  padding: 6rem 1.5rem 0;
  color: #ffffff;
}

@media (max-width: 768px) {
  .about-hero-content {
    padding-top: 4rem;
  }
}

.about-label {
  display: inline-block;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid #1f5f93;
}

.about-title {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  max-width: 800px;
  margin-bottom: 1rem;
}

.about-description {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  max-width: 650px;
  color: #e0e0e0;
}

/* ----------------------------------------
   2. SEÇÃO ALCANCE GLOBAL
   ---------------------------------------- */
.global-reach-section {
  background-color: #ffffff;
  padding: 4rem 0;
}

.global-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .global-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.global-map-col {
  flex: 1.2;
}

.map-image {
  width: 80%;
  margin: 0 auto;
  display: block;
  mix-blend-mode: multiply;
}

.global-text-col {
  flex: 0.8;
  padding: 0 1rem;
}

@media (min-width: 900px) {
  .global-text-col {
    padding-left: 3rem;
  }
}

.section-label {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  border-bottom: 2px solid #5794cf;
  color: #5794cf;
}

.section-label.centered {
  display: block;
  text-align: center;
  font-size: 2rem;
  color: #0d203a;
}

.global-title {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #0d203a;
}

.global-text {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #0d203a;
}

/* ----------------------------------------
   3. SEÇÃO PILARES
   ---------------------------------------- */
.pillars-section {
  padding: 4rem 0;
  background-color: #ffffff;
}

.pillars-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar-card {
  padding: 2.5rem 1.5rem;
  text-align: center;
  min-height: 220px;
  transition: transform 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-5px);
}

.pillar-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: #ffffff;
}

.pillar-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #ffffff;
}

.card-mission,
.card-vision,
.card-values {
  background-color: #0a2342;
}

/* ----------------------------------------
   MANIFESTO
   ---------------------------------------- */
.manifesto-wrapper {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  padding-top: 2rem;
}

.manifesto-text {
  font-style: italic;
  font-size: 2.5rem;
  line-height: 1.5;
  color: rgba(10, 35, 66, 0.78);
}

.manifesto-divider {
  height: auto;
  background-color: rgba(44, 144, 225, 0.82);
  margin: 1.5rem auto;
}

.manifesto-footer {
  font-weight: 700;
  font-size: 1.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ========================================
   AJUSTE FOTO FINAL ENCOSTANDO NO RODAPÉ
   ======================================== */

.final-team-section {
  width: 100%;
  margin-top: 4rem;
  /* Mantém o espaço em cima (separando do manifesto) */
  margin-bottom: 0;
  /* Garante zero espaço embaixo */
  padding: 0;
  line-height: 0;
  /* Truque essencial para remover espaço branco abaixo de imagens */
  display: block;
}

.final-team-img {
  width: 100%;
  height: auto;
  display: block;
  /* Remove comportamento inline que cria espaços */
  object-fit: cover;
}

/* --- CRUCIAL: O RODAPÉ --- */
/* Isso remove o espaço de 60px que existia antes do rodapé */
.site-footer {
  margin-top: 0 !important;
  padding-top: 80px;
  /* Mantém o padding interno, mas tira o afastamento externo */
}

/* ========================================
  VARIAVEIS CSS
   ======================================== */
:root {
  /* ... Suas variáveis existentes ... */

  /* Cores específicas da página One Stop Shop */
  --color-one-stop-dark-blue: #1A324A;
  /* Azul escuro do Hero e Por Que Escolher */
  --color-one-stop-gold: #E6C888;
  /* Dourado de destaque */
  --color-one-stop-light-beige: #F3F0E8;
  /* Fundo da seção Nossos Serviços */
  --color-one-stop-dark-gray: #333333;
  /* Fundo da seção Por Que Escolher */

  /* ... Suas outras variáveis ... */
}

/* =============================================================================
    NOVOS ESTILOS PARA A PÁGINA ONE STOP SHOP
============================================================================= */

/* ----------------------------------------
    01. SEÇÃO HERO (BANNER PRINCIPAL)
---------------------------------------- */
.hero-one-stop-shop {
  /* Substitua pelo caminho correto da sua imagem de fundo */
  background-image: url('images/brands/Imagens Site Full Brands/bg-hero-one-stop-shop.jpg');
  background-size: cover;
  background-position: center;
  height: 600px;
  /* Altura do banner */
  display: flex;
  align-items: center;
  /* Centraliza o conteúdo verticalmente */
  justify-content: flex-end;
  /* Alinha o conteúdo à direita */
  color: #ffffff;
  /* Texto branco */
  text-align: right;
  padding-right: 5%;
  /* Adiciona um pouco de padding para o texto não colar na borda */
  position: relative;
  /* Para o overlay */
  z-index: 1;
}

/* Overlay semi-transparente para melhor leitura do texto */
.hero-one-stop-shop::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  /* Preto com 40% de opacidade */
  z-index: -1;
  /* Fica abaixo do conteúdo, mas acima da imagem de fundo */
}


.hero-one-stop-shop .container {
  display: flex;
  justify-content: flex-end;
  height: 100%;
  position: relative;
  z-index: 2;
  align-items: flex-end;
  flex-direction: column;
}

.hero-content-one-stop {
  max-width: 500px;
  /* Largura máxima para o bloco de texto */
  padding: 30px;
  /* Remover background-color aqui, o overlay já cobre isso */
  border-radius: 5px;
}

.hero-tagline-one-stop {
  font-family: 'MadaniArabicVariable', sans-serif;
  /* Ou a fonte dos seus títulos */
  font-size: 2.5em;
  font-weight: 700;
  color: white;
  /* Dourado */
  display: block;
  /* Para que o span ocupe sua própria linha */
  margin-bottom: 15px;
}

.hero-content-one-stop p {
  font-family: 'MadaniArabicVariable', sans-serif;
  /* Ou a fonte do seu corpo de texto */
  font-size: 1.1em;
  margin-bottom: 15px;
  line-height: 1.8;
}

.hero-highlight-one-stop {
  font-family: 'MadaniArabicVariable', sans-serif;
  /* Ou a fonte dos seus títulos */
  font-size: 1.3em;
  font-weight: 600;
  color: #5794cf;
  /* Dourado */
}

/* ----------------------------------------
   02. SEÇÃO NOSSOS SERVIÇOS
---------------------------------------- */

.nossos-servicos-section {
  background-color: #ffffff;
  padding: 80px 0;
}

/* Título da seção */
.nossos-servicos-title {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-size: 2.2em;
  font-weight: 700;
  text-align: center;
  color: var(--color-one-stop-dark-blue);
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 15px;
}

.nossos-servicos-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #ffffff;
}

/* ==============================
   GRID DE SERVIÇOS
============================== */

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 300px));
  gap: 20px;
  justify-content: center;
}

.servicos-grid02 {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 300px));
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

/* ==============================
   CARD DE SERVIÇO
============================== */

.servico-card,
.servico-card02 {
  width: 300px;
  height: 330px;
  background-color: #c0c0c0;
  padding: 25px 20px;
  text-align: center;
  border-radius: 0px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servico-card:hover,
.servico-card02:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ==============================
   ÍCONE
============================== */

.servico-icon-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.servico-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

/* ==============================
   TÍTULO DO SERVIÇO
============================== */

.servico-title {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.15;
  color: var(--color-one-stop-dark-blue);
  margin-bottom: 10px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==============================
   DESCRIÇÃO
============================== */

.servico-description {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-size: 0.95em;
  color: #555555;
}

/* ==============================
   RESPONSIVIDADE
============================== */

@media (max-width: 992px) {
  .servicos-grid {
    grid-template-columns: repeat(2, minmax(260px, 300px));
  }
}

@media (max-width: 576px) {

  .servicos-grid,
  .servicos-grid02 {
    grid-template-columns: minmax(260px, 300px);
  }
}

/* ----------------------------------------
    03. SEÇÃO POR QUE ESCOLHER A FULL BRANDS
---------------------------------------- */

.section-title-why-choose {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-size: 2.2em;
  font-weight: 700;
  text-align: center;
  color: #1a324a;
  margin-bottom: 0px;
  position: relative;
  padding-bottom: 15px;
}

.section-title-why-choose::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  color: white;
  /* Linha dourada */
}

/* Grid para simular o layout em "Y" */
.choose-grid-fullbrands {
  display: grid;
  /* Grid de 5x5 para ter mais controle sobre as conexões */
  grid-template-columns: 1fr 0.5fr 1fr;
  /* Coluna do meio mais estreita para o "tronco" */
  grid-template-rows: auto 40px auto 40px auto;
  /* Linhas para os itens e para os conectores */
  gap: 0;
  /* Remove gap padrão do grid para as linhas */
  position: relative;
  max-width: 1000px;
  /* Largura máxima para o grid */
  margin: 40px auto 0;
}

/* Estilo base para todos os itens do "Y" */
.choose-item-fullbrands {
  background-color: var(--color-one-stop-dark-blue);
  /* Azul escuro */
  padding: 30px;
  border-radius: 10px;
  /* Borda arredondada para todos os cantos */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  /* Centraliza o texto dentro do item */
}

/* Posicionamento dos itens do grid */
.choose-item-fullbrands.top-left {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  border-bottom-right-radius: 0;
  /* Ajuste para as conexões */
}

.choose-item-fullbrands.top-right {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
  border-bottom-left-radius: 0;
  /* Ajuste para as conexões */
}

.choose-item-fullbrands.bottom-left {
  grid-column: 1 / 2;
  grid-row: 5 / 6;
  border-top-right-radius: 0;
  /* Ajuste para as conexões */
}

.choose-item-fullbrands.bottom-right {
  grid-column: 3 / 4;
  grid-row: 5 / 6;
  border-top-left-radius: 0;
  /* Ajuste para as conexões */
}

/* Estilo para títulos e descrições dos itens */
.choose-title-fullbrands {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-size: 1.3em;
  font-weight: 600;
  color: #315bf2;
  /* Dourado */
  margin-bottom: 10px;
}

.choose-description-fullbrands {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-size: 0.95em;
  color: rgba(255, 255, 255, 0.85);
}

/* Simulação das linhas do "Y" com divs */
.choose-connector-vertical {
  grid-column: 2 / 3;
  grid-row: 1 / 6;
  /* Estende por todas as linhas */
  background-color: var(--color-one-stop-dark-blue);
  /* Cor do "tronco" */
  border-radius: 10px;
  /* Arredonda o tronco */
  margin: 10px 0;
  /* Espaçamento vertical */
  z-index: 0;
  /* Garante que fique no fundo */
}

.choose-connector-horizontal-left-top {
  grid-column: 1 / 3;
  /* Vai da coluna 1 até a 2 */
  grid-row: 2 / 3;
  background-color: var(--color-one-stop-dark-blue);
  height: 40px;
  /* Altura da linha horizontal */
  margin-right: -10px;
  /* Sobrepõe um pouco o espaço para conectar */
  border-top-right-radius: 10px;
  z-index: 1;
  /* Para sobrepor o vertical, se necessário */
}

.choose-connector-horizontal-right-top {
  grid-column: 2 / 4;
  /* Vai da coluna 2 até a 3 */
  grid-row: 2 / 3;
  background-color: var(--color-one-stop-dark-blue);
  height: 40px;
  margin-left: -10px;
  border-top-left-radius: 10px;
  z-index: 1;
}

.choose-connector-horizontal-left-bottom {
  grid-column: 1 / 3;
  grid-row: 4 / 5;
  background-color: var(--color-one-stop-dark-blue);
  height: 40px;
  margin-right: -10px;
  border-bottom-right-radius: 10px;
  z-index: 1;
}

.choose-connector-horizontal-right-bottom {
  grid-column: 2 / 4;
  grid-row: 4 / 5;
  background-color: var(--color-one-stop-dark-blue);
  height: 40px;
  margin-left: -10px;
  border-bottom-left-radius: 10px;
  z-index: 1;
}

/* ----------------------------------------
    04. RESPONSIVIDADE PARA ONE STOP SHOP
---------------------------------------- */
@media (max-width: 992px) {
  .hero-one-stop-shop {
    height: 500px;
    text-align: center;
    justify-content: center;
    padding-right: 0;
  }

  .hero-one-stop-shop .container {
    justify-content: center;
  }

  .hero-content-one-stop {
    max-width: 90%;
    padding: 20px;
  }

  /* Por Que Escolher (simplifica para grid de colunas em telas menores) */
  .choose-grid-fullbrands {
    grid-template-columns: 1fr;
    /* Uma coluna */
    grid-template-rows: auto;
    gap: 20px;
    /* Adiciona um gap entre os cards */
    max-width: 500px;
  }

  .choose-item-fullbrands {
    grid-column: auto / auto !important;
    /* Desfaz o posicionamento específico */
    grid-row: auto / auto !important;
    border-radius: 10px;
    /* Todos os cantos arredondados */
  }

  /* Esconde os conectores na versão responsiva */
  .choose-connector-vertical,
  .choose-connector-horizontal-left-top,
  .choose-connector-horizontal-right-top,
  .choose-connector-horizontal-left-bottom,
  .choose-connector-horizontal-right-bottom {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-tagline-one-stop {
    font-size: 3em;
  }

  .hero-content-one-stop p {
    font-size: 12px;
  }

  .hero-highlight-one-stop {
    font-size: 1.1em;
  }

  .nossos-servicos-title,
  .section-title-why-choose {
    font-size: 1.8em;
  }

  .servico-title {
    font-size: 1.1em;
  }

  .servico-description {
    font-size: 0.9em;
  }

  .choose-title-fullbrands {
    font-size: 1.2em;
  }

  .choose-description-fullbrands {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .hero-one-stop-shop {
    height: 400px;
  }

  .hero-tagline-one-stop {
    font-size: 30px;
  }
}

/* ========================================
   TOP HERO INTRO SECTION (NOVA)
   ======================================== */
.top-hero-intro {
  display: flex;
  flex-direction: column;
  /* Padrão para mobile */
  min-height: 400px;
  /* Altura mínima para mobile */
  width: 100%;
}

@media (min-width: 768px) {
  .top-hero-intro {
    flex-direction: row;
    /* Duas colunas para desktop */
    height: 600px;
    /* Altura fixa para desktop */
  }
}

.top-hero-intro-left {
  flex: 0.6;
  /* Proporção conforme imagem (60% da largura) */
  background-color: #103a5c;
  /* Azul escuro da imagem */
  padding: 4rem 0rem;
  /* Espaçamento interno */
  color: white;
  /* Cor do texto */
  display: flex;
  align-items: center;
  /* Centraliza verticalmente o conteúdo */
  justify-content: center;
  /* Centraliza horizontalmente o conteúdo */
}

.top-hero-intro-right {
  flex: 0.4;
  /* Proporção conforme imagem (40% da largura) */
  background-color: #e0e0e0;
  /* Cinza claro da imagem */
  /* padding: 4rem 2rem; -- Removido pois é um bloco vazio, não precisa de padding de texto */
  display: flex;
  /* Mantido para centralizar o espaço vazio se necessário */
  align-items: center;
  justify-content: center;
}

.top-hero-intro-content {
  max-width: 500px;
  /* Limita a largura do bloco de texto */
  width: 100%;
  text-align: left;
  /* Alinha o texto à esquerda */
}

.top-hero-intro-title {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-size: 2.2rem;
  /* Tamanho do título principal */
  font-weight: 700;
  /* Negrito */
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.top-hero-intro-paragraph {
  font-size: 0.95rem;
  /* Tamanho do parágrafo */
  line-height: 1.6;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
  /* Cor do parágrafo com leve transparência */
}

.top-hero-intro-subtitle {
  font-size: 1rem;
  /* Tamanho do subtítulo */
  font-weight: 600;
  /* Mais grosso que o parágrafo */
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  /* Cor do subtítulo com leve transparência */
}

@media (max-width: 767px) {
  .top-hero-intro-left {
    padding: 2rem 1rem;
    /* Padding menor em mobile */
  }

  .top-hero-intro-title {
    font-size: 1.8rem;
    /* Título menor em mobile */
  }
}

/* =============================================================================
  11. COMO ENTREGAMOS (Cards de entrega)
============================================================================= */

.one-stop-solutions-section {
  background-color: #ffffff;
  padding: 4rem 0;
  color: #333;
}

.one-stop-solutions-section .container {
  max-width: 1373px;
  margin: 0 auto;
}

/* GRID */
.one-stop-solutions-section .entregamos-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* CARD */
.one-stop-solutions-section .entrega-card {
  height: 615px;
  /* ALTURA PADRÃO DO CARD */
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.one-stop-solutions-section .entrega-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.14);
}

/* IMAGEM (50% FIXO) */
.one-stop-solutions-section .card-image-box {
  height: 57%;
  position: relative;
}

.one-stop-solutions-section .card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay sutil */
.one-stop-solutions-section .card-image-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.05),
      rgba(0, 0, 0, 0.25));
}

/* TEXTO (50% FIXO) */
.one-stop-solutions-section .card-text-box {
  height: 50%;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  text-align: left;
}

/* TÍTULO */
.one-stop-solutions-section .card-text-box h3 {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0a2342;
  margin-bottom: 0.75rem;
}

/* TEXTO */
.one-stop-solutions-section .card-text-box p {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-size: 1.0rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* MOBILE */
@media (max-width: 600px) {
  .one-stop-solutions-section .entrega-card {
    height: 360px;
    /* menor no mobile */
  }

  .one-stop-solutions-section .card-text-box {
    padding: 1rem;
  }

  .one-stop-solutions-section .card-text-box h3 {
    font-size: 1rem;
  }

  .one-stop-solutions-section .card-text-box p {
    font-size: 0.85rem;
  }
}

/* LIMPA QUALQUER IMPLEMENTAÇÃO ANTIGA */
.entrega-card .entrega-img,
.entrega-card [data-bg-image] {
  display: none;
}



/* =========================
   MAPA
   ========================= */

.map-container {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 16rem;
}

@media (min-width: 768px) {
  .map-container {
    height: 20rem;
  }
}

/* =========================
   FOOTER - CONTATO
   ========================= */

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #cfcfcf;
}

/* ========================================
   SOBRE
   ======================================== */
.about-section {
  padding: 4rem 0;
}

.about-content {
  max-width: 48rem;
  margin: 0 auto;
}

.about-block {
  margin-bottom: 2rem;
}

.about-block p {
  color: var(--muted-foreground);
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.value-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.value-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.value-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.why-fullbrands {
  padding: 4rem 1rem;
  background: #f2f2f2;
  text-align: center;
  font-family: 'MadaniArabicVariable', sans-serif;
}

.why-fullbrands h2 {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: #2c3e50;
  margin-bottom: 2.5rem;
  position: relative;
}

.why-fullbrands h2::after {
  content: '';
  width: 60px;
  height: 2px;
  background: #2c3e50;
  display: block;
  margin: 0.6rem auto 0;
}

/* DIAGRAMA */
.diagram {
  position: relative;
  width: 600px;
  height: 420px;
  margin: 0 auto;
  background: #1f3c5b;
  border-radius: 90px;
}

/* CRUZ CENTRAL */
.diagram::before,
.diagram::after {
  content: '';
  position: absolute;
  background: #f2f2f2;
}

.diagram::before {
  width: 80px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.diagram::after {
  height: 80px;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* ITENS */
.item {
  position: absolute;
  width: 45%;
  color: #ffffff;
  text-align: left;
  padding: 1.5rem;
  box-sizing: border-box;
}

.item h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.item p {
  font-size: 0.8rem;
  line-height: 1.4;
  color: #e0e6eb;
}

/* POSIÇÕES */
.top-left {
  top: 0;
  left: 0;
}

.top-right {
  top: 0;
  right: 0;
}

.bottom-left {
  bottom: 0;
  left: 0;
}

.bottom-right {
  bottom: 0;
  right: 0;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .diagram {
    width: 100%;
    height: auto;
    border-radius: 40px;
    padding: 2rem 0;
  }

  .diagram::before,
  .diagram::after {
    display: none;
  }

  .item {
    position: static;
    width: 100%;
    text-align: center;
  }
}

/* Conectores */
.why-choose-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 28px;
}

.why-choose-image {
  width: 100%;
  max-width: 720px;
  /* ↓ imagem menor */
  height: auto;
  object-fit: contain;
}

/* ========================================
   CONTATO
======================================== */

.contact-section {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 70rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   INFORMAÇÕES DE CONTATO
======================================== */

.contact-info {
  padding-right: 0;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgb(16, 58, 92);
  border-radius: 6px;
  /* cantos levemente arredondados (opcional) */
  color: #fff;
  flex-shrink: 0;
  /* evita deformar em layouts flex */
}


.contact-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--muted-foreground);
}

/* ========================================
   MENSAGEM DE STATUS
======================================== */

#status {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 14px;
  border-radius: 10px;
  display: none;
}

/* Sucesso */

#status.success {
  display: block;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

/* Erro */

#status.error {
  display: block;
  background: #fef2f2;
  color: #7f1d1d;
  border: 1px solid #fecaca;
}

/* ========================================
   RESPONSIVO
======================================== */

@media (max-width: 768px) {
  .contact-form-container {
    padding: 24px;
    border-radius: 14px;
  }
}

/* ========================= */
/* RESET / GLOBAL            */
/* ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'MadaniArabicVariable', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f5f5f5;
  /* Fundo cinza claro global */
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ========================= */
/* RESET / GLOBAL            */
/* ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'MadaniArabicVariable', sans-serif;
  line-height: 1.6;
  color: #333;
  /* Fundo levemente cinza para destacar os cards brancos */
  background: #f9f9f9;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ========================= */
/* 1. HERO SECTION */
/* ========================= */
.news-hero {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.news-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.news-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.news-hero-text h1 {
  font-family: 'MadaniArabicVariable', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.news-hero-text p {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-size: 1.1rem;
  color: #f1f1f1;
  max-width: 700px;
  line-height: 1.6;
}

/* ========================= */
/* 2. LAYOUTS (GRID E CARROSSEL) */
/* ========================= */

.news-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- GRID (Página Blog) --- */
.news-grid {
  display: grid;
  /* Cria colunas responsivas: minimo 300px */
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* --- CARROSSEL (Página Home) --- */
.news-carousel {
  padding: 60px 20px;
  background: transparent;
  position: relative;
}

.news-carousel h2 {
  text-align: center;
  margin-bottom: 40px;
  font-family: 'MadaniArabicVariable', sans-serif;
  font-size: 3rem;
  color: #333;
}

.news-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.news-carousel-track {
  display: flex;
  gap: 30px;
  /* Espaço entre os cards */
  overflow-x: auto;
  scroll-behavior: smooth;
  /* Padding interno para a sombra do card não cortar */
  padding: 20px 10px;
  width: 100%;
  scrollbar-width: none;
  /* Firefox */
}

.news-carousel-track::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

/* ========================= */
/* 3. CARD VISUAL (IGUAL À REFERÊNCIA) */
/* ========================= */

.blog-card,
.carousel-card {
  background: #ffffff;
  /* Arredondamento suave de 16px */
  border-radius: 16px;
  /* Sombra difusa e elegante */
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  display: flex;
  flex-direction: column;

  /* Altura fixa aumentada para elegância */
  height: 460px;
  position: relative;

  /* Borda invisível para definição em telas ruins */
  border: 1px solid rgba(0, 0, 0, 0.03);
}

/* --- REGRAS DE LARGURA --- */
.blog-card {
  width: 100%;
  max-width: 380px;
  /* Trava de segurança para card único */
}

.carousel-card {
  min-width: 320px;
  max-width: 320px;
  flex-shrink: 0;
}

/* Efeito Hover (Levanta o card) */
.blog-card:hover,
.carousel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.15);
}

/* Imagem */
.blog-card img,
.carousel-card img {
  width: 100%;
  height: 220px;
  /* Imagem maior, ocupa quase metade */
  object-fit: cover;
  /* Arredonda só em cima */
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom: none;
}

/* Área de Texto */
.card-content,
.carousel-card-content {
  padding: 24px;
  /* Espaçamento interno generoso */
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Título */
.blog-card h3,
.carousel-card h3 {
  font-family: "MadaniArabicVariable", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  /* Negrito forte */
  color: #111;
  /* Preto quase absoluto */
  margin-bottom: 12px;
  line-height: 1.3;

  /* Limita a 3 linhas */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Resumo */
.blog-card p,
.carousel-card p {
  font-family: 'MadaniArabicVariable', sans-serif;
  font-size: 0.95rem;
  color: #667;
  /* Cinza médio */
  line-height: 1.5;
  margin: 0;

  /* Limita texto a 4 linhas */
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* OCULTO: Botão "Ler Mais" (Design Clean) */
.read-more-indicator {
  display: none;
}

/* ========================= */
/* 4. BOTÕES E NAVEGAÇÃO */
/* ========================= */

#load-more-btn {
  padding: 12px 35px;
  font-size: 1rem;
  border: none;
  background: #111;
  /* Preto para combinar com o design */
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s;
  font-weight: 600;
  margin-top: 30px;
}

#load-more-btn:hover {
  opacity: 0.8;
}

/* Setas do Carrossel */
.news-carousel-btn {
  background: #103a5c;
  border: none;
  color: #ffffff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.2s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.news-carousel-btn:hover {
  background: #16598f;
  color: #fff;
}

.news-carousel-btn.prev {
  left: -20px;
}

.news-carousel-btn.next {
  right: -20px;
}

/* ========================= */
/* 5. MODAL DA NOTÍCIA */
/* ========================= */
.news-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow-y: auto;
}

.news-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9998;
  backdrop-filter: blur(5px);
}

.news-modal-content {
  background: #fff;
  max-width: 800px;
  width: 90%;
  margin: 50px auto;
  border-radius: 12px;
  position: relative;
  z-index: 9999;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.news-modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  line-height: 0.8;
  transition: color 0.2s;
}

.news-modal-close:hover {
  color: #d00;
}

.news-modal-article h2 {
  font-family: 'MadaniArabicVariable', serif;
  margin-bottom: 10px;
  font-size: 2rem;
  color: #111;
  line-height: 1.2;
}

.news-modal .modal-date {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 25px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  display: block;
}

.news-modal img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
}

.news-modal .modal-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  font-family: 'MadaniArabicVariable', sans-serif;
}

.news-modal .modal-content p {
  margin-bottom: 20px;
}

/* Container do link */
.news-carousel>div:last-child {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* Link "Ver Mais" estilizado como botão */
.news-carousel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  background: linear-gradient(135deg, #103a5c, #0a58ca);
  color: #ffffff;

  border-radius: 999px;
  padding: 0.8rem 2.2rem;

  font-size: 1rem;
  font-weight: 600;

  cursor: pointer;
  transition: all 0.3s ease;

  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.35);
}

/* Hover */
.news-carousel a:hover {
  background: linear-gradient(135deg, #0b5ed7, #084298);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(13, 110, 253, 0.45);
}

/* Active */
.news-carousel a:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(13, 110, 253, 0.35);
}

/* Responsividade */
@media (max-width: 480px) {
  .news-carousel a {
    width: 100%;
    max-width: 260px;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
  }
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .news-hero {
    height: 40vh;
  }

  .news-hero-text h1 {
    font-size: 2rem;
  }

  .news-carousel-btn {
    display: none;
  }

  .news-modal-content {
    padding: 20px;
    margin: 20px auto;
    width: 95%;
  }
}