@charset "UTF-8";
/* Cores padrões*/
/*---------------------------------*/
/* Titulos e Textos */
.primary-titles-dark {
  font-size: 48px;
  color: #795A37;
  font-family: "Ubuntu", sans-serif;
}

.primary-titles-light {
  font-size: 48px;
  color: #EBE7E1;
  font-family: "Ubuntu", sans-serif;
}

.primary-paragraph-dark {
  font-size: 18px;
  font-family: "Mukta";
  color: #808080;
}

.primary-paragraph-light {
  font-size: 18px;
  font-family: "Mukta";
  color: #F2EFEB;
}

/*---------------------------------*/
/* Botões & Links*/
.button {
  display: inline-block;
  padding: 12px 30px;
  background: #FAF8F5;
  border: 1px solid #FAF8F5;
  color: #795A37;
  text-decoration: none;
  border-radius: 16px;
  margin-top: 20px;
  box-shadow: 0px 4px 25px -10px rgba(0, 0, 0, 0.5);
  transition: 0.5s ease;
  min-width: 200px;
  text-align: center;
}
.button:hover {
  transform: scale(1.1);
  transition: 0.5s ease;
}

.btn-primary-dark {
  border-color: #8B6F50;
  background-color: #8B6F50;
  color: #EBE7E1;
}
.btn-primary-dark:hover {
  transform: scale(1.1);
}

.btn-primary-light {
  border-color: #F2EFEB;
  background-color: #F2EFEB;
  color: #795A37;
}
.btn-primary-light:hover {
  transform: scale(1.1);
}

.btn-secondary-dark {
  border-color: #EBE7E1;
  background-color: #EBE7E1;
  color: #795A37;
}
.btn-secondary-dark:hover {
  transform: scale(1.1);
}

.btn-primary-dark-outline {
  border-color: #8B6F50;
  color: #795A37;
  background-color: transparent;
}
.btn-primary-dark-outline:hover {
  border-color: #795A37;
  background-color: #795A37;
  transform: scale(1.1);
  color: #EBE7E1;
}

.btn-primary-light-outline {
  border-color: #F2EFEB;
  color: #F2EFEB;
  background-color: transparent;
}
.btn-primary-light-outline:hover {
  border-color: #F2EFEB;
  background-color: #F2EFEB;
  transform: scale(1.1);
  color: #795A37;
}

.btn-secondary-dark-outline {
  border-color: #EBE7E1;
  color: #EBE7E1;
  background-color: transparent;
}
.btn-secondary-dark-outline:hover {
  border-color: #795A37;
  background-color: #795A37;
  transform: scale(1.1);
}

.btn-projeto {
  display: inline-block;
  background-color: #795A37;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-projeto:hover {
  background-color: #BA9872;
}

.btn-details {
  display: inline-block;
  text-decoration: none;
  color: #795A37;
  font-weight: bold;
  border: 2px solid #795A37;
  padding: 8px 20px;
  border-radius: 25px;
  transition: all 0.3s;
}

.btn-details:hover {
  background-color: #795A37;
  color: white;
}

/* Ajuste do botão do Hero original */
.btn-hero {
  display: inline-block;
  padding: 12px 30px;
  background: #FAF8F5;
  border: 1px solid #FAF8F5;
  color: #795A37;
  text-decoration: none;
  border-radius: 16px;
  margin-top: 20px;
  box-shadow: 0px 4px 25px -10px rgba(0, 0, 0, 0.5);
}

.btn-hero-outline {
  display: inline-block;
  padding: 12px 30px;
  color: #FAF8F5;
  text-decoration: none;
  border-radius: 16px;
  margin-top: 20px;
  border: 1px solid #FAF8F5;
  box-shadow: 0px 4px 25px -10px rgba(0, 0, 0, 0.5);
}

.btn-hero:hover,
.btn-hero-outline:hover {
  transition: 0.5s linear;
  scale: 1.1;
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
}

.btn-email {
  background-color: white;
  color: #795A37;
}

.btn-linkedin {
  background-color: #0077b5;
  color: white;
}

/*---------------------------------*/
* {
  box-sizing: border-box;
  list-style: none;
}

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  transition: background-color 0.3s ease, color 0.3s ease;
  background-color: transparent;
}
.nav.nav-scrolled {
  background-color: #795A37;
  color: #F2EFEB;
}
.nav.nav-scrolled a {
  color: #F2EFEB;
}
.nav a {
  text-decoration: none;
  color: #FAF8F5;
  padding: 0px 8px;
  position: relative;
  z-index: 1;
}
.nav a:hover {
  color: #cfcfcf;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  /* Se quiser que fique embaixo do texto, mude para bottom: 0 */
  width: 0%;
  height: 1px;
  /* Altura da barra/fundo */
  background-color: #F2EFEB;
  /* Cor de fundo */
  z-index: -1;
  /* 3. Joga o fundo para trás do texto */
  /* Opcional: Transição suave */
  transition: all 0.3s ease;
}
.nav a:hover::after {
  width: 100%;
  background-color: #F2EFEB;
}

body {
  font-family: "Mukta", sans-serif !important;
  font-weight: 400;
  margin: 0;
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 20px 5%;
  background: rgba(121, 90, 55, 0);
  width: 100%;
  z-index: 1000;
}

.lang-switch button {
  cursor: pointer;
  border: none;
  background: #ddd;
  padding: 5px 10px;
  margin-left: 5px;
  border-radius: 4px;
}

/* Hero Gemini*/
/* =========================================
   1. HERO SECTION (CONTAINER PRINCIPAL)
   ========================================= */
.hero {
  position: relative;
  /* Necessário para segurar os elementos absolutos (video e onda) */
  width: 100%;
  min-height: 70vh;
  /* Garante que ocupe a altura total da tela */
  overflow: hidden;
  /* Corta qualquer coisa que vaze para fora */
  /* Centraliza o conteúdo (Texto/Foto) na tela */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 120px;
  /* Espaço extra embaixo para o texto não ficar em cima da onda */
  background-color: #000;
  /* Cor de fundo de segurança (caso o vídeo demore a carregar) */
}

/* =========================================
   2. VÍDEO DE FUNDO (CAMADA -2)
   ========================================= */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* A MÁGICA: Faz o vídeo cobrir a tela sem distorcer (igual background-size: cover) */
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  /* Joga para o fundo de tudo */
}

/* =========================================
   3. DEGRADÊ / MÁSCARA (CAMADA -1)
   ========================================= */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* O SEU DEGRADÊ DO FIGMA */
  /* Vai do Preto Sólido (3%) até o Bege Translúcido (100%) */
  background: linear-gradient(65deg, rgb(0, 0, 0) 3%, rgba(139, 111, 80, 0.3) 100%);
  z-index: 2;
  /* Fica em cima do vídeo, mas atrás do texto */
  pointer-events: none;
  /* Permite clicar no vídeo se precisar (play/pause) */
}

/* =========================================
   4. CONTEÚDO (TEXTO E FOTO) (CAMADA 2)
   ========================================= */
/* A classe .content-wrapper deve estar na div que abraça o texto e a foto */
.content-wrapper {
  position: relative;
  z-index: 3;
  /* Garante que fique na frente de vídeo e overlay */
  text-align: center;
}

/* Estilo da Foto de Perfil */
.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  /* Deixa redondo */
  -o-object-fit: cover;
     object-fit: cover;
  /* Corta a foto para não distorcer */
  border: 3px solid rgba(255, 255, 255, 0.3);
  /* Borda sutil elegante */
  margin-bottom: 20px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
  /* Sombra para destacar do fundo */
}

/* Ajuste de Texto para ler em cima do vídeo */
.hero h1 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero p {
  color: rgba(255, 255, 255, 0.8);
  /* Branco com transparência */
  max-width: 600px;
  margin: 0 auto 30px auto;
  /* Centraliza e dá espaço embaixo */
}

/* =========================================
   5. A ONDA (WAVE SVG) (CAMADA 3)
   ========================================= */
.custom-shape-divider-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
  /* Fica na frente de TUDO (até do vídeo) */
}

.custom-shape-divider-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  /* Hack para evitar linha branca chata */
  height: 80px;
  /* Altura da onda */
  transform: rotate(180deg);
  /* Inverte para parecer um vale/montanha */
}

.custom-shape-divider-bottom .shape-fill {
  /* IMPORTANTE: Mude para a cor exata da seção SEGUINTE do seu site */
  fill: #F5F1E6;
}

/* */
.hero-left {
  flex: 1;
  padding-right: 50px;
}

.hero-right {
  flex: 1;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}

.hero h1,
.hero_title {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #FAF8F5;
  font-family: "Ubuntu";
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #FAF8F5;
}

.hero button {
  padding: 12px 30px;
  background: #795A37;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.hero-2 {
  background-color: #666;
  color: white;
}

.hero-2 h1 {
  color: white;
}

.hero-2 p {
  color: #ccc;
}

/* --- Estilos da Página de Post --- */
.post-container {
  max-width: 800px;
  /* Largura máxima para leitura confortável */
  margin: 100px auto 50px;
  /* Margem topo para não colar na nav */
  padding: 0 20px;
}

.post-header img {
  width: 100%;
  height: 400px;
  /* Altura fixa para banner */
  -o-object-fit: cover;
     object-fit: cover;
  /* Corta a imagem se necessário para preencher */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.post-content h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 10px;
}

.date {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* Formatação do conteúdo rico (TinyMCE) */
.rich-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}

/* IMPORTANTE: Garante que imagens dentro do texto não vazem no celular */
.rich-text img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}

.rich-text blockquote {
  border-left: 4px solid #795A37;
  background: #f9f9f9;
  padding: 15px 20px;
  margin: 20px 0;
  font-style: italic;
}

/* Botão de Link do Projeto */
.post-actions {
  margin-top: 40px;
  text-align: center;
}

.back-link {
  margin-top: 30px;
  text-align: center;
}

/* --- SEÇÃO PORTFÓLIO (GRID) --- */
.portfolio-section {
  padding: 80px 5%;
  background-color: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #333;
}

/* O Grid que organiza os cards */
.portfolio-grid {
  display: grid;
  /* Cria colunas automáticas: Mínimo 300px, Máximo 1 fração */
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* O Card Individual */
.portfolio-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-image {
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* Garante que a imagem preencha sem distorcer */
  transition: transform 0.5s;
}

.portfolio-card:hover .card-image img {
  transform: scale(1.05);
  /* Zoom suave na imagem ao passar o mouse */
}

.card-content {
  padding: 20px;
  text-align: center;
}

.card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: #222;
}

/* --- ESTILOS GERAIS DE SEÇÃO --- */
.section-padrao {
  padding: 80px 5%;
}

.bg-light {
  background-color: #f8f9fa;
}

.bg-primary-dark {
  background-color: #795A37;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
  font-weight: 700;
}

/* --- SEÇÃO SERVIÇOS (CARDS) --- */
.services-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  /* Isso faz virar lista se tiver muitos, ou cards se tiver poucos */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  flex: 1 1 300px;
  /* Cresce, encolhe, base 300px */
  max-width: 350px;
  transition: transform 0.3s, border-bottom 0.3s;
  border-bottom: 4px solid transparent;
}

.service-card i {
  font-size: 3rem;
  color: #795A37;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

/* --- SEÇÃO SOBRE MIM --- */
.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-img img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 20px 20px 0px #e0e0e0;
  /* Efeito visual legal */
}

.about-text h2 {
  text-align: left;
  /* Sobrescreve o centralizado */
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.7;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.about-stats strong {
  font-size: 2rem;
  color: #795A37;
  display: block;
}

.about-list {
  padding: 0px;
  margin: 0px;
}

/* Responsivo do Sobre */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-text h2 {
    text-align: center;
  }
  .about-stats {
    justify-content: center;
  }
}
/* --- SEÇÃO CONTATO --- */
.contact-section {
  background: linear-gradient(135deg, rgba(121, 90, 55, 0.9) 10%, rgba(186, 152, 114, 0.5) 100%), url("../images/background-hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-buttons a {
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-buttons a:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* --- FOOTER --- */
footer {
  background-color: #333;
  color: #888;
  text-align: center;
  padding: 30px 0;
}

/* New CSS*/
:root {
  --brown-primary: #8B6F50;
  --brown-dark: #5A4633;
  --white: #ffffff;
}

.title {
  color: var(--brown-primary);
}

/* 1. A MOLDURA (Borda Fixa) */
.nav-border-mask {
  position: relative;
  display: inline-block;
  /* No Desktop, abraça o conteúdo */
  border: 1px solid var(--brown-primary);
  border-radius: 50px;
  padding: 4px;
  /* Espaço entre a borda e o conteúdo */
  background: transparent;
  /* Garante que nada vaze para fora da borda redonda */
  overflow: hidden;
  /* Centraliza na tela */
  left: 50%;
  transform: translateX(-50%);
}

/* 2. O TRILHO DE SCROLL (Conteúdo) */
.nav-scroll-track {
  position: relative;
  display: flex;
  align-items: center;
  /* Configuração de Scroll (Escondido por padrão no Desktop) */
  overflow-x: auto;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE */
}

.nav-scroll-track::-webkit-scrollbar {
  display: none;
}

/* Chrome */
/* 3. O GLIDER (Fundo Animado) */
.glider {
  position: absolute;
  height: 100%;
  /* Altura total do trilho */
  top: 0;
  left: 0;
  background-color: var(--brown-primary);
  border-radius: 50px;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  /* Começa invisível para não piscar errado */
  opacity: 0;
}

/* 4. OS ITENS */
.nav-tab-item {
  position: relative;
  z-index: 2;
  display: block;
  padding: 10px 24px;
  text-decoration: none;
  color: var(--brown-dark);
  font-weight: 600;
  white-space: nowrap;
  /* Impede quebra de linha */
  border-radius: 50px;
  transition: color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.nav-tab-item.active {
  color: var(--white);
}

/* =========================================
   MOBILE (A Mágica da Borda Fixa)
   ========================================= */
@media (max-width: 768px) {
  .nav-border-mask {
    display: block;
    /* Vira um bloco para ocupar largura */
    width: 100%;
    /* Ocupa a largura do container pai */
    left: 0;
    transform: none;
    /* Remove centralização absoluta */
    border-radius: 50px;
    /* Mantém a pílula */
  }
  .nav-scroll-track {
    /* Permite que os itens corram soltos dentro da borda */
    width: 100%;
    padding-right: 20px;
    /* Espaço extra no final do scroll */
  }
  /* Opcional: Efeito de sombra interna para indicar que tem mais conteúdo */
  .nav-border-mask::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8));
    pointer-events: none;
    z-index: 3;
  }
}
/* =========================================
   GRID DE PROJETOS
   ========================================= */
/* O Card (Container Geral) */
.project-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Centraliza tudo horizontalmente */
  text-align: center;
  height: 100%;
}

/* 1. Estilo da Imagem (Arredondada e Suave) */
.project-img-container {
  /* 1. Tamanho fixo de 200px (ou 100% se a tela for menor que isso) */
  width: 100%;
  max-width: 200px;
  /* 2. Mantém quadrado */
  aspect-ratio: 1/1;
  /* 3. Centraliza o bloco da imagem na coluna */
  margin: 0 auto 20px auto;
  /* 4. Arredondamento ajustado (40px ficaria muito redondo em 200px) */
  border-radius: 30px;
  overflow: hidden;
  /* Sombra suave */
  box-shadow: 0 10px 25px rgba(90, 70, 51, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* A Imagem em si */
.project-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* Garante que a foto preencha o quadrado sem distorcer */
  transition: transform 0.5s ease;
}

/* Efeito Hover na Imagem (Opcional - dá vida ao site) */
.project-card:hover .project-img-container {
  transform: translateY(-5px);
  /* Sobe um pouquinho */
  box-shadow: 0 15px 35px rgba(90, 70, 51, 0.2);
}

.project-card:hover .project-img {
  transform: scale(1.05);
  /* Zoom suave na foto */
}

/* 2. Tipografia */
.project-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brown-dark);
  /* Usando sua variável */
  margin-bottom: 10px;
  font-family: sans-serif;
  /* Ou sua fonte serifada se preferir */
}

.project-desc {
  /* ... outros estilos ... */
  max-width: 220px;
  /* Um pouco mais largo que a imagem para dar respiro */
  margin-left: auto;
  margin-right: auto;
}

/* 3. Botão (Primary Button) */
.project-btn {
  display: inline-block;
  background-color: #6D5438;
  /* Marrom mais escuro e sólido do Figma */
  color: #fff;
  padding: 12px 35px;
  border-radius: 50px;
  /* Pílula */
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(109, 84, 56, 0.3);
}

.project-btn:hover {
  background-color: var(--brown-primary);
  /* Clareia um pouco no hover */
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(109, 84, 56, 0.4);
}

/* Container da Seção */
.services-section {
  background-color: var(--bg-page);
  /* Seu bege padrão */
  overflow: hidden;
  /* Evita scroll lateral indesejado */
}

/* O Card de Serviço */
.service-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  /* Bordas suaves */
  box-shadow: 0 10px 30px rgba(90, 70, 51, 0.08);
  /* Sombra marrom bem suave */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  /* Garante altura igual */
  border: 1px solid rgba(139, 111, 80, 0.1);
  /* Borda sutil opcional */
}

/* Efeito Hover: O card "flutua" */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(90, 70, 51, 0.15);
}

/* O Círculo do Ícone */
.icon-box {
  width: 60px;
  height: 60px;
  background-color: var(--brown-primary);
  /* Fundo Marrom */
  color: #fff;
  /* Ícone Branco */
  border-radius: 50%;
  /* Perfeitamente redondo */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 24px;
  /* Efeito de brilho/sombra no ícone */
  box-shadow: 0 5px 15px rgba(139, 111, 80, 0.4);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 15px;
}

.service-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Botões de Navegação (Setas) */
.swiper-btn-prev,
.swiper-btn-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--brown-primary);
  background: transparent;
  color: var(--brown-primary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-btn-prev:hover,
.swiper-btn-next:hover {
  background: var(--brown-primary);
  color: #fff;
  transform: scale(1.1);
}

/* Ajuste no Swiper para não cortar sombra */
.services-swiper {
  padding: 20px;
  /* Dá espaço para o hover e sombra não cortarem */
  margin: -20px;
  /* Compensa o padding para alinhar no grid */
}

/* Correção do Bug da Sombra Cortada */
.services-swiper {
  /* Adicionamos padding generoso (principalmente embaixo e em cima) */
  /* Topo: 40px (para o card subir no hover) */
  /* Baixo: 60px (para a sombra não cortar) */
  padding: 40px 20px 60px 20px !important;
  /* Usamos margem negativa para compensar o padding e manter o alinhamento visual */
  margin: -40px -20px -60px -20px;
}

.animate-fade {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=style.css.map */