/* ===== VARIÁVEIS CSS ===== */
:root {
  --preto: #000000;
  --laranja: #ff6a00;
  --cinza-escuro: #2b2b2b;
  --areia-clara: #f5f0e6;
  --branco: #ffffff;
  --azul-aco: #445566;
  --azul-yale: #093969;
  --lapis-lazuli: #2e679f;
}

/* ===== RESET E BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: var(--preto);
  visibility: hidden; /* Previne flash de conteúdo */
  overflow-x: hidden; /* Previne scroll horizontal */
}

body.loaded {
  visibility: visible;
}

/* ===== CONTAINER E GRID ===== */
.container {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(15px, 2vw, 25px);
  padding: 0 clamp(20px, 5vw, 5%);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: 1000;
  padding: clamp(10px, 1.5vh, 20px) 0;
  transition: all 0.3s ease;
}

.header-content {
  grid-column: 2 / 12;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== LOGO ===== */
.logo-img {
  height: clamp(60px, 8vw, 120px);
  width: auto;
}

/* ===== NAVEGAÇÃO DESKTOP ===== */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  flex: 1;
  justify-content: flex-end;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: clamp(20px, 3vw, 40px);
}

.nav-link {
  text-decoration: none;
  color: var(--branco);
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 500;
  line-height: normal;
}

.nav-link:hover {
  transition: all 0.2s ease;
  font-weight: 700;
  transform: translateY(-2px);
}

/* ===== BOTÃO CTA DO HEADER ===== */
.header-cta-btn {
  background-color: #2e679f;
  color: var(--branco);
  text-decoration: none;
  padding: clamp(8px, 1vw, 12px) clamp(16px, 2vw, 24px);
  border-radius: 25px;
  font-weight: 600;
  font-size: clamp(12px, 1vw, 14px);
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: clamp(6px, 0.8vw, 10px);
}

.header-cta-btn:hover {
  background-color: #1e4a70;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(46, 103, 159, 0.3);
  font-weight: 700;
}

.header-cta-btn::after {
  content: "";
  width: clamp(14px, 1.2vw, 18px);
  height: clamp(14px, 1.2vw, 18px);
  background-image: url("../imgs/whatsapp_logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ===== MENU HAMBÚRGUER ===== */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.hamburger:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.hamburger-icon {
  width: clamp(24px, 5vw, 32px);
  height: clamp(24px, 5vw, 32px);
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
}

/* ===== MENU MOBILE ===== */
.nav-mobile {
  display: none;
  background-color: rgba(255, 255, 255, 0.95);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-mobile.active {
  display: block;
}

.nav-mobile-list {
  list-style: none;
  padding: clamp(15px, 3vh, 25px);
}

.nav-mobile-list li {
  margin-bottom: 15px;
}

.nav-mobile-link {
  text-decoration: none;
  color: var(--preto);
  font-weight: 500;
  font-size: clamp(14px, 3vw, 18px);
  transition: all 0.3s ease;
  display: block;
  padding: clamp(8px, 1.5vh, 12px) 0;
}

.nav-mobile-link:hover {
  color: var(--laranja);
  font-weight: 700;
  transform: translateX(clamp(3px, 1vw, 8px));
  transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: clamp(500px, 100vh, 1200px);
  max-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;

  /* Garantir que o hero seja sempre visível */
  width: 100%;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("../imgs/banner_fundo.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;

  /* Responsividade fluida da imagem */
  min-height: clamp(500px, 100vh, 1200px);
  max-width: 100vw;

  /* Otimização para diferentes densidades de tela */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.hero-content {
  grid-column: 2 / 8;
  position: relative;
  z-index: 2;
  color: var(--branco);
  max-width: clamp(300px, 50vw, 600px);
  margin-top: clamp(160px, 12vh, 160px);
  padding-top: clamp(20px, 3vh, 40px);

  /* Garante centralização proporcional */
  margin-left: 0;
  margin-right: auto;
}

.hero-title {
  color: var(--areia-clara);
  font-size: clamp(42px, 6.7vw, 96px);
  font-weight: 500;
  line-height: normal;
  letter-spacing: clamp(0.64px, 0.134vw, 1.92px);
  margin-bottom: clamp(15px, 2vh, 25px);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 1vw, 12px);
  background-color: #2e679f;
  color: var(--branco);
  text-decoration: none;
  padding: clamp(12px, 1.5vh, 18px) clamp(20px, 2.5vw, 35px);
  border-radius: 25px;
  font-weight: 700;
  font-size: clamp(14px, 1.2vw, 18px);
  transition: all 0.3s ease;
}

.hero-cta:hover {
  background-color: #1e4a70;
  box-shadow: 0 8px 25px rgba(46, 103, 159, 0.3);
  transform: translateY(-2px);
  font-weight: 800;
}

.hero-cta::after {
  content: "";
  width: clamp(16px, 1.5vw, 22px);
  height: clamp(16px, 1.5vw, 22px);
  background-image: url("../imgs/whatsapp_logo.png");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ===== SOBRE NÓS SECTION ===== */
.sobre-nos {
  padding: clamp(60px, 8vh, 120px) 0;
  background-color: var(--areia-clara);
  position: relative;
}

.sobre-nos-content {
  grid-column: 2 / 12;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sobre-nos-text {
  max-width: clamp(800px, 70vw, 1200px);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2.3rem;
}

.sobre-nos-title {
  color: #000;
  font-family: Montserrat;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 20px);
  margin-bottom: clamp(15px, 2vh, 25px);
}

.sobre-nos-title::before {
  content: "";
  width: clamp(30px, 4vw, 70px);
  height: clamp(30px, 4vw, 70px);
  background-image: url("../imgs/icons/title_icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.sobre-nos-subtitle {
  color: #000;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 122.144%; /* 29.315px */
  letter-spacing: 2.88px;
  margin-bottom: clamp(5px, 1vh, 10px);
}

.sobre-nos-description {
  color: #000;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 136.626%;
  letter-spacing: 2.2px;
  text-align: justify;
}

.sobre-nos-description p {
  margin-bottom: clamp(15px, 2vh, 20px);
}

.sobre-nos-description p:last-child {
  margin-bottom: 0;
}

.sobre-nos-profile-img {
  width: clamp(150px, 18vw, 310px);
  height: clamp(150px, 18vw, 310px);
  border-radius: 50%;
  object-fit: cover;
  float: left;
  margin: 0 clamp(25px, 3vw, 40px) clamp(15px, 2vh, 20px) 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  shape-outside: circle(50%);
  shape-margin: clamp(15px, 2vw, 25px);
}

/* ===== RESPONSIVIDADE - TABLET (768px - 1024px) ===== */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero {
    min-height: clamp(600px, 95vh, 1000px);
  }

  .hero-bg {
    min-height: clamp(600px, 95vh, 1000px);
    background-position: center 35%;
  }

  .hero-content {
    grid-column: 2 / 10;
  }

  .nav-list {
    gap: clamp(15px, 2.5vw, 30px);
  }

  /* Sobre Nós Tablet */
  .sobre-nos-content {
    grid-column: 2 / 11;
  }

  .sobre-nos-profile-img {
    width: clamp(170px, 20vw, 210px);
    height: clamp(170px, 20vw, 210px);
    shape-outside: circle(50%);
    shape-margin: clamp(15px, 2vw, 20px);
  }
}

/* ===== RESPONSIVIDADE - TABLET PEQUENO (768px) ===== */
@media (max-width: 768px) {
  .hero {
    min-height: clamp(500px, 95vh, 850px);
  }

  .hero-bg {
    min-height: clamp(500px, 95vh, 850px);
    background-position: center clamp(50%, 58%, 65%);
    background-size: cover;
  }

  .hero-content {
    grid-column: 1 / 13;
    max-width: clamp(400px, 80vw, 600px);
    margin-left: auto;
    margin-right: auto;
    margin-top: clamp(120px, 14vh, 160px);
    padding-top: clamp(20px, 3vh, 35px);
    padding-left: clamp(20px, 5vw, 40px);
    padding-right: clamp(20px, 5vw, 40px);
  }

  .hero-title {
    font-size: clamp(28px, 6vw, 52px);
  }

  /* Sobre Nós Tablet Pequeno */
  .sobre-nos-content {
    grid-column: 1 / 13;
  }

  .sobre-nos-text {
    max-width: clamp(600px, 85vw, 800px);
    margin: 0 auto;
  }

  .sobre-nos-profile-img {
    width: clamp(160px, 22vw, 190px);
    height: clamp(160px, 22vw, 190px);
    float: left;
    margin: 0 clamp(20px, 3vw, 25px) clamp(15px, 2vh, 20px) 0;
    shape-outside: circle(50%);
    shape-margin: clamp(12px, 2vw, 18px);
  }
}

/* ===== RESPONSIVIDADE - TELAS MÉDIAS (920px-801px) ===== */
@media (max-width: 920px) and (min-width: 801px) {
  .hero-bg {
    background-position: center clamp(35%, 42%, 50%);
    background-size: cover;
  }

  .hero-content {
    grid-column: 2 / 10;
    margin-left: 0;
    margin-right: auto;
  }

  .hero-title {
    font-size: clamp(28px, 6vw, 64px);
  }

  .hero-cta {
    font-size: clamp(16px, 2vw, 20px);
    padding: clamp(14px, 2vh, 20px) clamp(24px, 3vw, 40px);
  }

  /* Sobre Nós Telas Médias */
  .sobre-nos-content {
    grid-column: 2 / 11;
  }

  .sobre-nos-text {
    max-width: clamp(700px, 75vw, 900px);
  }

  .sobre-nos-profile-img {
    width: clamp(180px, 18vw, 210px);
    height: clamp(180px, 18vw, 210px);
    shape-outside: circle(50%);
    shape-margin: clamp(15px, 2vw, 20px);
  }
}

/* ===== RESPONSIVIDADE - TRANSIÇÃO INTERMEDIÁRIA (800px-601px) ===== */
@media (max-width: 800px) and (min-width: 601px) {
  .container {
    padding: 0 clamp(30px, 6vw, 50px);
  }

  .header-content {
    grid-column: 1 / 12;
  }

  .hero-bg {
    background-position: center clamp(55%, 62%, 70%);
    background-size: cover;
  }

  .hero-content {
    grid-column: 1 / 13;
    max-width: clamp(350px, 75vw, 500px);
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(25px, 4vw, 40px);
    padding-right: clamp(25px, 4vw, 40px);
  }

  .hero-title {
    font-size: clamp(26px, 5.5vw, 48px);
  }

  .hero-cta {
    font-size: clamp(15px, 1.8vw, 18px);
    padding: clamp(12px, 1.8vh, 18px) clamp(20px, 2.5vw, 32px);
  }

  /* Sobre Nós Transição Intermediária */
  .sobre-nos-content {
    grid-column: 1 / 13;
  }

  .sobre-nos-text {
    max-width: clamp(500px, 90vw, 700px);
    margin: 0 auto;
  }

  .sobre-nos-profile-img {
    width: clamp(150px, 24vw, 170px);
    height: clamp(150px, 24vw, 170px);
    shape-outside: circle(50%);
    shape-margin: clamp(12px, 2vw, 16px);
  }
}

/* ===== RESPONSIVIDADE - TELAS MÉDIAS/PEQUENAS (950px - 700px) ===== */
@media (max-width: 950px) and (min-width: 701px) {
  .nav-desktop {
    gap: clamp(15px, 2vw, 25px);
  }

  .nav-list {
    gap: clamp(12px, 2vw, 20px);
  }

  .nav-link {
    font-size: clamp(14px, 1.4vw, 18px);
  }

  .header-cta-btn {
    padding: clamp(7px, 0.9vw, 11px) clamp(14px, 1.7vw, 20px);
    font-size: clamp(11px, 1vw, 13px);
  }

  .header-cta-btn::after {
    width: clamp(13px, 1.1vw, 15px);
    height: clamp(13px, 1.1vw, 15px);
  }
}

/* ===== RESPONSIVIDADE - CORREÇÃO GRID HEADER (900px - 701px) ===== */
@media (max-width: 900px) and (min-width: 701px) {
  .header-content {
    grid-column: 2 / 11;
  }

  .hero-bg {
    background-position: center clamp(45%, 52%, 60%);
    background-size: cover;
  }
}

/* ===== RESPONSIVIDADE - TRANSIÇÃO PARA MOBILE (700px - 600px) ===== */
@media (max-width: 700px) and (min-width: 601px) {
  .header-content {
    grid-column: 1 / 12;
  }

  .nav-desktop {
    gap: clamp(10px, 1.5vw, 20px);
  }

  .nav-list {
    gap: clamp(8px, 1.5vw, 15px);
  }

  .nav-link {
    font-size: clamp(13px, 1.3vw, 16px);
  }

  .header-cta-btn {
    padding: clamp(6px, 0.8vw, 9px) clamp(12px, 1.4vw, 16px);
    font-size: clamp(10px, 0.9vw, 12px);
  }

  .header-cta-btn::after {
    width: clamp(11px, 1vw, 13px);
    height: clamp(11px, 1vw, 13px);
  }

  /* Sobre Nós Transição para Mobile */
  .sobre-nos-content {
    grid-column: 1 / 13;
  }

  .sobre-nos-text {
    max-width: clamp(450px, 95vw, 600px);
    margin: 0 auto;
  }

  .sobre-nos-title {
    font-size: clamp(26px, 5.5vw, 40px);
  }

  .sobre-nos-subtitle {
    font-size: clamp(18px, 3.2vw, 24px);
    margin-bottom: clamp(5px, 1vh, 8px);
  }

  .sobre-nos-profile-img {
    width: clamp(145px, 22vw, 165px);
    height: clamp(145px, 22vw, 165px);
    float: left;
    margin: 0 clamp(18px, 3vw, 22px) clamp(12px, 2vh, 18px) 0;
    shape-outside: circle(50%);
    shape-margin: clamp(10px, 2vw, 15px);
  }
}

/* ===== RESPONSIVIDADE - MOBILE E PEQUENOS TABLETS (600px) ===== */
@media (max-width: 600px) {
  /* Header Mobile */
  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .header-content {
    grid-column: 1 / 13;
  }

  .header-cta-btn {
    display: none;
  }

  .logo-img {
    height: clamp(90px, 18vw, 120px);
  }

  /* Hero Mobile */
  .hero {
    min-height: clamp(450px, 90vh, 750px);
  }

  .hero-bg {
    min-height: clamp(450px, 90vh, 750px);
    background-position: center 45%;
    background-size: cover;
    background-attachment: scroll;
  }

  .hero-content {
    grid-column: 1 / 13;
    text-align: left;
    max-width: 100%;
    margin-top: clamp(100px, 15vh, 130px);
    padding-top: clamp(10px, 2vh, 25px);
  }

  .hero-title {
    font-size: clamp(30px, 9vw, 48px);
    margin-bottom: clamp(12px, 3vh, 22px);
  }

  .hero-cta {
    font-size: clamp(16px, 4.2vw, 20px);
    padding: clamp(14px, 2.8vh, 20px) clamp(22px, 5.5vw, 30px);
  }

  .hamburger-icon {
    width: clamp(42px, 10vw, 56px);
    height: clamp(42px, 10vw, 56px);
  }

  /* Sobre Nós Mobile */
  .sobre-nos {
    padding: clamp(40px, 8vh, 80px) 0;
  }

  .sobre-nos-content {
    grid-column: 1 / 13;
  }

  .sobre-nos-text {
    max-width: 100%;
    margin: 0;
  }

  .sobre-nos-title {
    font-size: clamp(28px, 7vw, 42px);
    justify-content: flex-start;
    margin-bottom: clamp(20px, 3vh, 30px);
  }

  .sobre-nos-subtitle {
    font-size: clamp(18px, 4.5vw, 26px);
    text-align: left;
    margin-bottom: clamp(8px, 1.5vh, 12px);
  }

  .sobre-nos-description {
    font-size: clamp(15px, 4vw, 18px);
    text-align: justify;
  }

  .sobre-nos-profile-img {
    width: clamp(140px, 30vw, 160px);
    height: clamp(140px, 30vw, 160px);
    float: left;
    margin: 0 clamp(15px, 4vw, 20px) clamp(10px, 2vh, 15px) 0;
    shape-outside: circle(50%);
    shape-margin: clamp(10px, 2vw, 15px);
  }
}

/* ===== RESPONSIVIDADE - MOBILE MUITO PEQUENO (360px) ===== */
@media (max-width: 360px) {
  .hero {
    min-height: clamp(400px, 85vh, 650px);
  }

  .hero-bg {
    min-height: clamp(400px, 85vh, 650px);
    background-position: center 45%;
    background-size: cover;
  }

  .hero-title {
    font-size: clamp(28px, 9vw, 42px);
    letter-spacing: clamp(0.4px, 0.12vw, 1px);
  }

  .hero-cta {
    font-size: clamp(16px, 5.2vw, 19px);
    padding: clamp(14px, 2.8vh, 18px) clamp(22px, 6.2vw, 28px);
  }

  .hamburger-icon {
    width: clamp(44px, 11vw, 52px);
    height: clamp(44px, 11vw, 52px);
  }

  .logo-img {
    height: clamp(80px, 18vw, 100px);
  }

  /* Sobre Nós Mobile Muito Pequeno */
  .sobre-nos {
    padding: clamp(30px, 6vh, 60px) 0;
  }

  .sobre-nos-title {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: clamp(15px, 2.5vh, 25px);
  }

  .sobre-nos-subtitle {
    font-size: clamp(16px, 4.5vw, 22px);
    margin-bottom: clamp(6px, 1.2vh, 10px);
  }

  .sobre-nos-description {
    font-size: clamp(14px, 4vw, 16px);
  }

  .sobre-nos-profile-img {
    width: clamp(120px, 27vw, 140px);
    height: clamp(120px, 27vw, 140px);
    margin: 0 clamp(12px, 3vw, 18px) clamp(8px, 1.5vh, 12px) 0;
    shape-outside: circle(50%);
    shape-margin: clamp(8px, 1.5vw, 12px);
  }
}

/* ===== NOSSOS SERVIÇOS SECTION ===== */
.servicos {
  padding: clamp(80px, 10vh, 140px) 0;
  background-color: var(--areia-clara);
  position: relative;
}

.servicos-header {
  grid-column: 2 / 12;
  text-align: left;
  margin-bottom: clamp(50px, 6vh, 80px);
}

.servicos-title {
  color: var(--preto);
  font-family: Montserrat;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: clamp(15px, 2vw, 25px);
  margin-bottom: clamp(20px, 3vh, 30px);
}

.servicos-title::before {
  content: "";
  width: clamp(40px, 5vw, 80px);
  height: clamp(40px, 5vw, 80px);
  background-image: url("../imgs/icons/title_icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.servicos-container {
  grid-column: 2 / 12;
  display: flex;
  height: clamp(400px, 50vh, 600px);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  align-items: stretch;
}

/* ===== RESET DE ALTURA PARA MOBILE - FORÇA CONTAINER A NÃO TER ALTURA FIXA ===== */
@media (max-width: 768px) {
  .servicos-container {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
  }
}

.servico-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: clamp(10px, 1.5vh, 15px);
  overflow: hidden;
  height: 100%;
}

/* ===== DESKTOP HOVER EFFECTS ===== */
.servico-card:hover {
  flex: 2.5;
}

.servico-card:not(:hover) {
  flex: 0.8;
}

/* ===== CENTRALIZAÇÃO VERTICAL E HORIZONTAL PERFEITA ===== */
.servico-card,
.servico-card:hover,
.servico-card:not(:hover) {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}

.servico-icon,
.servico-content {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  width: 100% !important;
}

.servico-content {
  flex-direction: column !important;
}

.servico-titulo,
.servico-descricao {
  text-align: center !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ===== CENTRALIZAÇÃO ESPECÍFICA PARA CONTEÚDO ===== */
.servico-card .servico-content {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  gap: clamp(4px, 0.8vh, 8px) !important;
}

.servico-icon {
  margin-bottom: clamp(8px, 1.5vh, 12px);
  transition: all 0.4s ease;
  z-index: 2;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-shrink: 0;
}

.servico-icon img {
  width: clamp(45px, 6vw, 65px);
  height: clamp(45px, 6vw, 65px);
  object-fit: contain;
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto;
  border-radius: 17px;
  background: rgba(217, 217, 217, 0.38);
  padding: clamp(8px, 1.5vh, 12px);
}

.servico-content {
  z-index: 2;
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.servico-titulo {
  color: var(--branco);
  font-family: Montserrat;
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  text-align: center;
  width: 100%;
}

.servico-descricao {
  color: rgba(255, 255, 255, 0.95);
  font-family: Montserrat;
  font-size: clamp(12px, 1.3vw, 15px);
  font-weight: 500;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s ease 0.2s;
  max-width: 85%;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  padding: 0 clamp(5px, 1vw, 10px);
  position: absolute;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

/* ===== HOVER EFFECTS DESKTOP ===== */
@media (hover: hover) and (pointer: fine) {
  .servico-card:hover .servico-descricao {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    visibility: visible;
    height: auto;
    overflow: visible;
    margin-top: clamp(8px, 1.5vh, 12px);
  }

  .servico-card:hover .servico-icon {
    margin-bottom: clamp(10px, 2vh, 15px);
  }

  .servico-card:hover .servico-icon img {
    width: clamp(50px, 6.5vw, 70px);
    height: clamp(50px, 6.5vw, 70px);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.6);
    padding: clamp(10px, 1.8vh, 14px);
  }

  .servico-card:hover .servico-titulo {
    font-size: clamp(16px, 2vw, 20px);
    margin-bottom: clamp(5px, 1vh, 8px);
  }

  .servico-card:hover .servico-content {
    gap: clamp(6px, 1.2vh, 10px) !important;
  }

  .servico-card:hover .servico-content {
    align-items: center;
    justify-content: center;
  }
}

/* ===== CORES ESPECÍFICAS DOS CARDS ===== */
.servico-pintura {
  background-color: var(--laranja);
}

.servico-textura {
  background-color: var(--preto);
}

.servico-microcimento {
  background-color: var(--azul-aco);
}

.servico-forro {
  background-color: var(--lapis-lazuli);
}

.servico-granilite {
  background-color: var(--azul-yale);
}
/* ===== RESPONSIVIDADE SERVIÇOS - TABLETS ===== */
@media (max-width: 1024px) and (min-width: 769px) {
  .servicos-container {
    height: clamp(280px, 35vh, 400px);
  }

  .servico-card:hover {
    flex: 2.2;
  }

  .servico-icon img {
    width: clamp(45px, 6vw, 70px);
    height: clamp(45px, 6vw, 70px);
    border-radius: 30.5px;
    background: rgba(217, 217, 217, 0.38);
    padding: clamp(10px, 1.8vh, 16px);
  }
}

/* ===== ANIMAÇÕES ===== */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-mobile.active {
  animation: slideDown 0.3s ease-out;
}

/* ===== HOVER ESPECÍFICO PARA DISPOSITIVOS COM TOUCH ===== */
@media (hover: hover) {
  .nav-mobile-link:hover {
    background-color: rgba(255, 106, 0, 0.1);
    border-radius: 8px;
    padding-left: clamp(10px, 2vw, 20px);
  }
}

/* ===== ESTADOS DE FOCO E ACESSIBILIDADE ===== */
.nav-link:focus,
.nav-mobile-link:focus,
.hero-cta:focus,
.header-cta-btn:focus {
  outline: 2px solid var(--branco);
  outline-offset: 2px;
}

.hamburger:focus {
  outline: 2px solid var(--branco);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ===== HOVER ANIMAÇÕES EXTRAS ===== */
@keyframes buttonPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

.hero-cta:active {
  animation: buttonPulse 0.3s ease;
}

.header-cta-btn:active {
  animation: buttonPulse 0.3s ease;
}

/* ===== OTIMIZAÇÕES PARA DIFERENTES DENSIDADES DE TELA ===== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-bg {
    background-image: url("../imgs/banner_fundo.png");
    background-size: cover;
    background-position: center center;
  }
}

/* ===== OTIMIZAÇÕES PARA ORIENTAÇÃO LANDSCAPE MOBILE ===== */
@media (max-width: 900px) and (orientation: landscape) {
  .hero {
    min-height: clamp(350px, 80vh, 550px);
  }

  .hero-bg {
    min-height: clamp(350px, 80vh, 550px);
    background-position: center 65%;
    background-size: cover;
  }

  .hero-content {
    margin-top: clamp(80px, 12vh, 120px);
    padding-top: clamp(10px, 2vh, 25px);
  }

  .hero-title {
    font-size: clamp(22px, 5vw, 40px);
    margin-bottom: clamp(10px, 2vh, 18px);
  }
}

/* ===== OTIMIZAÇÕES PARA TELAS ULTRA LARGAS ===== */
@media (min-width: 1600px) {
  .hero-bg {
    background-position: center 45%;
    background-size: cover;
  }

  .hero-content {
    max-width: clamp(600px, 40vw, 800px);
  }
}

/* ===== OTIMIZAÇÕES PARA TELAS 4K+ ===== */
@media (min-width: 2560px) {
  .hero-bg {
    background-size: 100% auto;
    background-position: center top;
  }
}

/* ===== HEADER NO SCROLL ===== */
.header.scrolled {
  background-color: transparent;
}

/* ===== PROTEÇÃO PARA CONTEÚDO ATRÁS DO HEADER ===== */
.hero-title,
.hero-cta {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ===== GALERIA SECTION ===== */
.galeria {
  padding: clamp(80px, 10vh, 140px) 0;
  background-color: var(--branco);
  position: relative;
}

.galeria-header {
  grid-column: 2 / 12;
  text-align: center;
  margin-bottom: clamp(50px, 6vh, 80px);
}

.galeria-title {
  color: var(--preto);
  font-family: Montserrat;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(15px, 2vw, 25px);
  margin-bottom: clamp(15px, 2vh, 25px);
}

.galeria-title::before {
  content: "";
  width: clamp(40px, 5vw, 80px);
  height: clamp(40px, 5vw, 80px);
  background-image: url("../imgs/icons/title_icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.galeria-subtitle {
  color: var(--azul-aco);
  font-family: Montserrat;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 500;
  line-height: 1.4;
  max-width: clamp(600px, 70vw, 900px);
  margin: 0 auto;
}

.galeria-grid {
  grid-column: 2 / 12;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 3vw, 30px);
  margin-top: clamp(40px, 5vh, 60px);
}

.galeria-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/3;
  background-color: var(--areia-clara);
}

.galeria-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.galeria-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.galeria-item:hover .galeria-img {
  transform: scale(1.05);
}

.galeria-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--branco);
  padding: clamp(20px, 3vh, 30px);
  transform: translateY(100%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.galeria-item:hover .galeria-overlay {
  transform: translateY(0);
}

.galeria-item-title {
  font-family: Montserrat;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  margin-bottom: clamp(5px, 1vh, 8px);
  line-height: 1.2;
}

.galeria-item-desc {
  font-family: Montserrat;
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 500;
  line-height: 1.3;
  opacity: 0.9;
}

/* ===== RESPONSIVIDADE GALERIA - TABLETS ===== */
@media (max-width: 1024px) and (min-width: 769px) {
  .galeria-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(18px, 2.5vw, 25px);
  }

  .galeria-header {
    grid-column: 2 / 11;
  }

  .galeria-grid {
    grid-column: 2 / 11;
  }
}

/* ===== RESPONSIVIDADE GALERIA - TABLET PEQUENO ===== */
@media (max-width: 768px) {
  .galeria {
    padding: clamp(60px, 8vh, 100px) 0;
  }

  .galeria-header {
    grid-column: 1 / 13;
    margin-bottom: clamp(40px, 5vh, 60px);
  }

  .galeria-grid {
    grid-column: 1 / 13;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(15px, 3vw, 22px);
  }

  .galeria-title {
    font-size: clamp(28px, 6vw, 40px);
  }

  .galeria-subtitle {
    font-size: clamp(15px, 3.5vw, 18px);
  }
}

/* ===== RESPONSIVIDADE GALERIA - MOBILE ===== */
@media (max-width: 600px) {
  .galeria {
    padding: clamp(50px, 7vh, 80px) 0;
  }

  .galeria-grid {
    grid-template-columns: 1fr;
    gap: clamp(15px, 4vw, 20px);
  }

  .galeria-item {
    aspect-ratio: 3/2;
  }

  .galeria-title {
    font-size: clamp(24px, 6vw, 32px);
    flex-direction: column;
    gap: clamp(10px, 1.5vw, 15px);
  }

  .galeria-subtitle {
    font-size: clamp(14px, 4vw, 16px);
  }

  /* Mobile hover sempre ativo */
  .galeria-overlay {
    transform: translateY(0);
    background: linear-gradient(transparent 20%, rgba(0, 0, 0, 0.8));
  }

  .galeria-item:hover .galeria-img {
    transform: none;
  }

  .galeria-item:hover {
    transform: none;
  }
}

/* ===== RESPONSIVIDADE GALERIA - MOBILE PEQUENO ===== */
@media (max-width: 480px) {
  .galeria {
    padding: clamp(40px, 6vh, 60px) 0;
  }

  .galeria-title {
    font-size: clamp(22px, 5.5vw, 28px);
  }

  .galeria-title::before {
    width: clamp(30px, 7vw, 50px);
    height: clamp(30px, 7vw, 50px);
  }

  .galeria-subtitle {
    font-size: clamp(13px, 3.8vw, 15px);
  }

  .galeria-item-title {
    font-size: clamp(15px, 4vw, 18px);
  }

  .galeria-item-desc {
    font-size: clamp(12px, 3.5vw, 14px);
  }

  .galeria-overlay {
    padding: clamp(15px, 3vh, 20px);
  }
}

/* ===== OTIMIZAÇÕES PARA GALERIA EM LANDSCAPE MOBILE ===== */
@media (max-width: 900px) and (orientation: landscape) {
  .galeria {
    padding: clamp(40px, 6vh, 70px) 0;
  }

  .galeria-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(12px, 2vw, 18px);
  }

  .galeria-item {
    aspect-ratio: 4/3;
  }

  .galeria-header {
    margin-bottom: clamp(30px, 4vh, 50px);
  }
}

/* ===== ANIMAÇÕES ESPECÍFICAS DA GALERIA ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.galeria-item {
  animation: fadeInUp 0.6s ease-out;
}

.galeria-item:nth-child(2) {
  animation-delay: 0.1s;
}

.galeria-item:nth-child(3) {
  animation-delay: 0.2s;
}

.galeria-item:nth-child(4) {
  animation-delay: 0.3s;
}

.galeria-item:nth-child(5) {
  animation-delay: 0.4s;
}

.galeria-item:nth-child(6) {
  animation-delay: 0.5s;
}

.galeria-item:nth-child(n + 7) {
  animation-delay: 0.6s;
}

/* ===== FOOTER SECTION ===== */
.footer {
  background-color: var(--cinza-escuro);
  color: var(--branco);
  padding: clamp(60px, 8vh, 100px) 0 0 0;
  position: relative;
}

.footer-content {
  grid-column: 2 / 12;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(30px, 4vw, 50px);
  margin-bottom: clamp(40px, 5vh, 60px);
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: clamp(15px, 2vh, 20px);
}

/* ===== FOOTER LOGO E ABOUT ===== */
.footer-logo {
  margin-bottom: clamp(10px, 1.5vh, 15px);
}

.footer-logo-img {
  height: clamp(60px, 8vw, 100px);
  width: auto;
}

.footer-section-title {
  color: var(--branco);
  font-family: Montserrat;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  margin-bottom: clamp(10px, 1.5vh, 15px);
}

.footer-about-text {
  color: rgba(255, 255, 255, 0.8);
  font-family: Montserrat;
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: clamp(15px, 2vh, 20px);
}

/* ===== FOOTER SOCIAL ===== */
.footer-social {
  display: flex;
  gap: clamp(10px, 1.5vw, 15px);
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 5vw, 50px);
  height: clamp(40px, 5vw, 50px);
  background-color: var(--lapis-lazuli);
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-link:hover {
  background-color: var(--laranja);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 106, 0, 0.3);
}

.footer-social-icon {
  width: clamp(20px, 2.5vw, 26px);
  height: clamp(20px, 2.5vw, 26px);
  filter: brightness(0) invert(1);
}

/* ===== FOOTER LINKS ===== */
.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1vh, 12px);
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  font-family: Montserrat;
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: clamp(4px, 0.5vh, 6px) 0;
}

.footer-link:hover {
  color: var(--laranja);
  transform: translateX(5px);
  font-weight: 500;
}

/* ===== FOOTER CONTACT ===== */
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.5vh, 18px);
  margin-bottom: clamp(20px, 2.5vh, 30px);
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 0.5vh, 6px);
}

.footer-contact-label {
  color: var(--laranja);
  font-family: Montserrat;
  font-size: clamp(13px, 1.6vw, 15px);
  font-weight: 600;
}

.footer-contact-link {
  color: rgba(255, 255, 255, 0.9);
  font-family: Montserrat;
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact-link:hover {
  color: var(--laranja);
}

.footer-contact-text {
  color: rgba(255, 255, 255, 0.8);
  font-family: Montserrat;
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 400;
  line-height: 1.4;
}

/* ===== FOOTER CTA BUTTON ===== */
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1vw, 12px);
  background-color: var(--lapis-lazuli);
  color: var(--branco);
  text-decoration: none;
  padding: clamp(12px, 1.5vh, 18px) clamp(20px, 2.5vw, 30px);
  border-radius: 25px;
  font-family: Montserrat;
  font-weight: 600;
  font-size: clamp(14px, 1.8vw, 16px);
  transition: all 0.3s ease;
  align-self: flex-start;
}

.footer-cta-btn::after {
  content: "";
  width: clamp(16px, 1.5vw, 20px);
  height: clamp(16px, 1.5vw, 20px);
  background-image: url("../imgs/whatsapp_logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.footer-cta-btn:hover {
  background-color: var(--laranja);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 106, 0, 0.3);
  font-weight: 700;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
  background-color: var(--preto);
  padding: clamp(20px, 3vh, 30px) 0;
}

.footer-bottom-content {
  grid-column: 2 / 12;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(8px, 1vh, 12px);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-family: Montserrat;
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 400;
  margin: 0;
}

.footer-credits {
  color: rgba(255, 255, 255, 0.5);
  font-family: Montserrat;
  font-size: clamp(11px, 1.4vw, 13px);
  font-weight: 400;
  margin: 0;
}

/* ===== RESPONSIVIDADE FOOTER - TABLETS ===== */
@media (max-width: 1024px) and (min-width: 769px) {
  .footer-content {
    grid-column: 2 / 11;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(30px, 4vw, 50px);
  }

  .footer-bottom-content {
    grid-column: 2 / 11;
  }
}

/* ===== RESPONSIVIDADE FOOTER - TABLET PEQUENO ===== */
@media (max-width: 768px) {
  .footer {
    padding: clamp(50px, 7vh, 80px) 0 0 0;
  }

  .footer-content {
    grid-column: 1 / 13;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(30px, 4vw, 40px);
    margin-bottom: clamp(30px, 4vh, 50px);
  }

  .footer-bottom-content {
    grid-column: 1 / 13;
  }
}

/* ===== RESPONSIVIDADE FOOTER - MOBILE ===== */
@media (max-width: 600px) {
  .footer {
    padding: clamp(40px, 6vh, 60px) 0 0 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: clamp(25px, 4vw, 35px);
  }

  .footer-section {
    text-align: center;
  }

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

  .footer-links-list {
    align-items: center;
  }

  .footer-contact-info {
    text-align: left;
  }

  .footer-cta-btn {
    align-self: center;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: clamp(6px, 1vh, 10px);
  }
}

/* ===== RESPONSIVIDADE FOOTER - MOBILE PEQUENO ===== */
@media (max-width: 480px) {
  .footer {
    padding: clamp(35px, 5vh, 50px) 0 0 0;
  }

  .footer-section-title {
    font-size: clamp(16px, 4vw, 20px);
  }

  .footer-about-text {
    font-size: clamp(13px, 3.5vw, 15px);
  }

  .footer-link {
    font-size: clamp(13px, 3.5vw, 15px);
  }

  .footer-contact-label {
    font-size: clamp(12px, 3.2vw, 14px);
  }

  .footer-contact-link,
  .footer-contact-text {
    font-size: clamp(13px, 3.5vw, 15px);
  }

  .footer-cta-btn {
    padding: clamp(10px, 1.5vh, 15px) clamp(18px, 4vw, 25px);
    font-size: clamp(13px, 3.5vw, 15px);
  }

  .footer-logo-img {
    height: clamp(50px, 12vw, 80px);
  }

  .footer-social-link {
    width: clamp(35px, 8vw, 45px);
    height: clamp(35px, 8vw, 45px);
  }

  .footer-social-icon {
    width: clamp(18px, 4vw, 22px);
    height: clamp(18px, 4vw, 22px);
  }
}

/* ===== ANIMAÇÕES FOOTER ===== */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-section {
  animation: slideUp 0.6s ease-out;
}

.footer-section:nth-child(2) {
  animation-delay: 0.1s;
}

.footer-section:nth-child(3) {
  animation-delay: 0.2s;
}

.footer-section:nth-child(4) {
  animation-delay: 0.3s;
}

/* ===== LAYOUT MOBILE OTIMIZADO - CARDS COM MAIS ESPAÇO ===== */
@media screen and (max-width: 768px) {
  .servicos {
    padding: clamp(60px, 10vh, 100px) 0;
  }

  .servicos-header {
    grid-column: 1 / 13;
    text-align: center;
    margin-bottom: clamp(60px, 8vh, 90px) !important;
  }

  .servicos-container {
    grid-column: 1 / 13;
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    gap: clamp(18px, 3.5vh, 25px) !important;
    align-items: stretch !important;
    overflow: visible !important;
  }

  .servico-card {
    flex: none !important;
    width: 100% !important;
    height: auto !important;
    min-height: clamp(160px, 18vh, 180px) !important;
    max-height: none !important;
    padding: clamp(25px, 4vh, 30px) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    border-radius: 15px !important;
    box-sizing: border-box !important;
    transform: none !important;
    transition: all 0.3s ease !important;
  }

  .servico-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
  }

  .servico-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    gap: clamp(12px, 2.5vh, 18px) !important;
  }

  .servico-icon {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: clamp(10px, 2vh, 15px) !important;
  }

  .servico-icon img {
    width: clamp(50px, 9vw, 60px) !important;
    height: clamp(50px, 9vw, 60px) !important;
    padding: clamp(12px, 2.5vh, 16px) !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.25) !important;
  }

  .servico-titulo {
    font-size: clamp(17px, 4.2vw, 22px) !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: clamp(6px, 1.2vh, 10px) !important;
    text-align: center !important;
  }

  .servico-descricao {
    font-size: clamp(15px, 3.8vw, 17px) !important;
    font-weight: 500 !important;
    line-height: 1.45 !important;
    text-align: center !important;
    padding: 0 clamp(12px, 2.5vw, 18px) !important;
    opacity: 1 !important;
    transform: none !important;
    position: relative !important;
    visibility: visible !important;
    height: auto !important;
    overflow: visible !important;
    margin-top: 0 !important;
  }
}

/* ===== MOBILE PEQUENO - CARDS AMPLIADOS ===== */
@media screen and (max-width: 480px) {
  .servicos {
    padding: clamp(50px, 8vh, 80px) 0;
  }

  .servicos-header {
    margin-bottom: clamp(50px, 7vh, 70px) !important;
  }

  .servicos-title {
    font-size: clamp(24px, 6vw, 32px);
    justify-content: center;
  }

  .servicos-title::before {
    width: clamp(30px, 7vw, 50px);
    height: clamp(30px, 7vw, 50px);
  }

  .servicos-container {
    gap: clamp(15px, 3vh, 22px) !important;
  }

  .servico-card {
    min-height: clamp(150px, 17vh, 170px) !important;
    padding: clamp(22px, 3.5vh, 28px) !important;
  }

  .servico-content {
    gap: clamp(10px, 2.2vh, 15px) !important;
  }

  .servico-icon {
    margin-bottom: clamp(8px, 1.8vh, 12px) !important;
  }

  .servico-icon img {
    width: clamp(45px, 10vw, 55px) !important;
    height: clamp(45px, 10vw, 55px) !important;
    padding: clamp(10px, 2.2vh, 14px) !important;
  }

  .servico-titulo {
    font-size: clamp(16px, 4.5vw, 20px) !important;
    margin-bottom: clamp(5px, 1vh, 8px) !important;
  }

  .servico-descricao {
    font-size: clamp(14px, 4vw, 16px) !important;
    padding: 0 clamp(10px, 2.2vw, 15px) !important;
    line-height: 1.4 !important;
  }
}
