/* ==========================================================================
   DESIGN SYSTEM & CUSTOM VARIABLES (Del Motors)
   ========================================================================== */
:root {
  --primary: #121315;      /* Preto carvão */
  --secondary: #222c30;    /* Aço escuro */
  --accent: #d32f2f;       /* Vermelho esportivo */
  --bg-surface: #f5f6f7;   /* Fundo claro para contrastes */
  --white: #ffffff;
  --text-dark: #121315;
  --text-muted: #606468;
  --border-color: rgba(18, 19, 21, 0.12);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.15);
  
  /* Transição customizada inspirada nos efeitos do site da Marzocchi */
  --transition-custom: all 0.45s cubic-bezier(.71, .07, 0, 1);
  --transition-slow: all 0.7s cubic-bezier(.71, .07, 0, 1);
  --transition-fast: all 0.2s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Manrope', sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   LAYOUT UTILITIES & CONTAINER
   ========================================================================== */
.section-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--accent);
  margin-top: 8px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: -15px;
  margin-bottom: 35px;
  font-weight: 600;
}

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

.text-center .section-title::after {
  margin: 8px auto 0 auto;
}

/* ==========================================================================
   CABEÇALHO & NAVBAR (Mobile-First Drawer)
   ========================================================================== */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: var(--transition-fast);
}

.header-container {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-image {
  height: 40px;
  object-fit: contain;
}

/* Botão hambúrguer */
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  z-index: 1010;
}

.hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  border-radius: 4px;
  transition: var(--transition-fast);
}

/* Menu de Navegação - Versão Drawer Móvel */
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%; /* Escondido fora da tela */
  width: 280px;
  height: 100vh;
  background-color: var(--primary);
  color: var(--white);
  padding: 80px 30px;
  box-shadow: var(--shadow-lg);
  z-index: 1005;
  transition: var(--transition-custom);
}

.nav-menu.open {
  right: 0; /* Desliza para dentro */
}

.menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--white);
  cursor: pointer;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
  display: inline-block;
  transition: var(--transition-custom);
}

.nav-link:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.nav-cta-btn {
  display: block;
  text-align: center;
  background-color: var(--accent);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 4px;
  margin-top: 15px;
  transition: var(--transition-fast);
}

.nav-cta-btn:hover {
  background-color: #b22222;
  transform: translateY(-2px);
}

/* Overlay do menu no mobile */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 1002;
  transition: var(--transition-fast);
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   BUTTONS STYLES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  padding: 14px 28px;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-custom);
}

.btn-primary {
  background-color: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}

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

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* Ajustes dos botões no fundo escuro do Hero */
.hero-section .btn-primary:hover {
  color: var(--white);
  border-color: var(--white);
}

.hero-section .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.hero-section .btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-large {
  padding: 18px 36px;
  font-size: 1rem;
}

/* ==========================================================================
   HERO SECTION (Capa)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 90vh;
  padding-top: 120px;
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  background-color: var(--primary);
  color: var(--white);
  z-index: 1;
}

.hero-fundo-textura {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/fundo-aco.png');
  background-size: cover;
  background-position: center;
  opacity: 0.25; /* Transparência sutil para contraste */
  z-index: -1;
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-badge {
  display: inline-block;
  background-color: var(--accent);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 2.1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero-title .highlight {
  color: var(--accent);
  display: block;
}

.hero-subtitle {
  font-size: 0.95rem;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

/* ==========================================================================
   INTRO SECTION (Chamada Intermediária)
   ========================================================================== */
.intro-section {
  background-color: var(--bg-surface);
}

.intro-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  padding: 30px 20px;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
}

.intro-text {
  font-size: 0.95rem;
  margin-bottom: 16px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: justify;
}

.intro-text.highlight-text {
  margin-bottom: 0;
  color: var(--primary);
  border-left: 3px solid var(--accent);
  padding-left: 14px;
}

/* ==========================================================================
   SEÇÃO DE VANTAGENS (Alinhamento Esquerdo)
   ========================================================================== */
.vantagens-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.vantagem-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-align: left;
  transition: var(--transition-custom);
}

.vantagem-icon {
  font-size: 2rem;
  line-height: 1;
  background-color: var(--bg-surface);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-custom);
}

.vantagem-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--primary);
}

.vantagem-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 500;
}

/* ==========================================================================
   SEÇÃO VALORES (Tabela de Preços Responsiva)
   ========================================================================== */
.table-responsive-container {
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
  background-color: var(--white);
  padding: 10px 20px;
}

/* Transforma a tabela em cartões individuais (cards) no mobile */
.price-table-web {
  width: 100%;
  display: block;
}

.price-table-web thead {
  display: none; /* Esconde o cabeçalho da tabela no celular */
}

.price-table-web tbody {
  display: block;
}

.price-table-web tr {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
}

.price-table-web tr:last-child {
  border-bottom: none;
}

.price-table-web td {
  display: block;
  width: 100%;
  padding: 4px 0;
  border-bottom: none;
}

.price-table-web td strong {
  display: block;
  font-size: 0.95rem;
  color: var(--primary);
  text-transform: uppercase;
}

.price-table-web td .table-subtext {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

.price-table-web .price-col {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--accent);
  text-align: left; /* Alinha o preço à esquerda no mobile */
  margin-top: 6px;
  white-space: nowrap;
}

.table-note-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 24px;
}

.table-note-card h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--primary);
}

.note-list {
  list-style: none;
}

.note-list li {
  position: relative;
  padding-left: 16px;
  font-size: 0.82rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 8px;
}

.note-list li::before {
  content: '▪';
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--accent);
}

/* ==========================================================================
   SEÇÃO TECNOLOGIAS & MARCAS DE ELITE
   ========================================================================== */
.tecnologias-section {
  background-color: var(--primary);
  color: var(--white);
}

.tecnologias-section .section-title {
  color: var(--white);
}

.tech-web-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.tech-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 24px;
  transition: var(--transition-custom);
}

.tech-card.active-card {
  border-color: var(--accent);
  background-color: rgba(211, 47, 47, 0.04);
}

.tech-card h3 {
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.tech-card h3::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--accent);
  margin-top: 6px;
}

.tech-list li {
  position: relative;
  padding-left: 16px;
  font-size: 0.82rem;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.tech-list li::before {
  content: '▪';
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--accent);
}

/* Marcas de Elite */
.subsection-title {
  font-size: 1.1rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 24px;
  color: var(--white);
}

.motos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.moto-tag {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.moto-tag:hover {
  background-color: var(--accent);
  border-color: var(--accent);
}

/* ==========================================================================
   SEÇÃO MARCAS DE SUSPENSÃO (Logos)
   ========================================================================== */
.marcas-section {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
}

.logos-carousel-container {
  overflow: hidden;
  padding: 10px 0;
  position: relative;
}

.logos-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 30px;
  align-items: center;
}

.logo-item-wrapper {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 12px 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(50% - 15px);
  max-width: 140px;
  height: 60px;
}

.brand-logo {
  max-width: 100%;
  max-height: 35px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.85;
  transition: var(--transition-fast);
}

.logo-item-wrapper:hover .brand-logo {
  filter: grayscale(0);
  opacity: 1;
}

/* ==========================================================================
   SEÇÃO CERTIFICAÇÕES (Efeito Zoom suave nos cards)
   ========================================================================== */
.certificacoes-section {
  background-color: var(--bg-surface);
}

.cert-web-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.cert-web-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden; /* Importante para manter o efeito de zoom */
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-custom);
}

.cert-header-img {
  height: 220px;
  width: 100%;
  overflow: hidden; /* Restringe a imagem no zoom */
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.cert-bg-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  background-color: var(--white);
  transition: var(--transition-slow);
}

.cert-body {
  padding: 24px;
}

.cert-tag {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 8px;
}

.cert-body h3 {
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--primary);
}

.cert-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 500;
}

/* ==========================================================================
   FINAL CTA SECTION & FOOTER
   ========================================================================== */
.final-cta-section {
  background-color: var(--accent);
  color: var(--white);
}

.final-cta-section h2 {
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.final-cta-section p {
  font-size: 0.95rem;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
}

.final-cta-section .btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.final-cta-section .btn-primary:hover {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

/* Footer */
#main-footer {
  background-color: var(--primary);
  color: var(--white);
  border-top: 3px solid var(--accent);
}

.footer-grid-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 24px 30px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 35px;
}

.footer-logo {
  height: 35px;
  object-fit: contain;
  margin-bottom: 15px;
}

.footer-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
  color: var(--white);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}

.footer-contact .phone-link {
  font-size: 1.1rem;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--white);
  margin-top: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
}

/* WhatsApp Floating Button (Mobile Only por padrão, com visualização adaptada) */
.whatsapp-float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: var(--transition-custom);
}

.whatsapp-float-btn:hover {
  transform: scale(1.1) translateY(-3px);
  background-color: #20ba59;
}

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

/* ==========================================================================
   SCROLL REVEAL EFFECTS (Disparados por JavaScript)
   ========================================================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
}

.scroll-reveal.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVIDADE (Telas Maiores / Desktop)
   ========================================================================== */

/* Tablets (>= 768px) */
@media (min-width: 768px) {
  /* Restaura o layout de Tabela no Desktop/Tablet */
  .table-responsive-container {
    padding: 0;
    overflow-x: visible;
  }

  .price-table-web {
    display: table;
    border-collapse: collapse;
  }

  .price-table-web thead {
    display: table-header-group;
  }

  .price-table-web tbody {
    display: table-row-group;
  }

  .price-table-web tr {
    display: table-row;
    padding: 0;
  }

  .price-table-web td,
  .price-table-web th {
    display: table-cell;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
  }

  .price-table-web th {
    background-color: var(--primary);
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    font-weight: 700;
  }

  .price-table-web td strong {
    font-size: 0.92rem;
  }

  .price-table-web td .table-subtext {
    font-size: 0.76rem;
    margin-top: 2px;
  }

  .price-table-web .price-col {
    font-size: 1.05rem;
    text-align: right;
    margin-top: 0;
  }

  .section-title {
    font-size: 2.1rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-buttons {
    flex-direction: row;
    width: auto;
  }
  
  .vantagens-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tech-web-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .cert-web-grid {
    grid-template-columns: 1fr 1fr;
  }

  .logo-item-wrapper {
    width: calc(33.33% - 20px);
  }
  
  .footer-grid-container {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* Desktops (>= 992px) - Efeitos Inspirados na Marzocchi */
@media (min-width: 992px) {
  .section-container {
    padding: 90px 24px;
  }

  /* Navbar */
  .menu-toggle {
    display: none; /* Oculta hambúrguer */
  }

  .nav-menu {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    display: block;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }

  .nav-link {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    color: var(--primary);
    position: relative;
    /* Transição cubic-bezier suave para o link */
    transition: color 0.35s cubic-bezier(.71, .07, 0, 1), transform 0.35s cubic-bezier(.71, .07, 0, 1);
  }

  .nav-link:hover {
    color: var(--accent);
    transform: translateY(-2px);
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-custom);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  .nav-cta-btn {
    margin-top: 0;
    font-size: 0.75rem;
    padding: 10px 18px;
    transition: var(--transition-custom);
  }

  .nav-cta-btn:hover {
    transform: scale(1.05) translateY(-2px);
  }

  /* Hero */
  .hero-section {
    min-height: 95vh;
    padding-top: 70px;
  }

  .hero-title {
    font-size: 4rem;
  }

  /* Animações e Zooms da Marzocchi nos Cards */
  .vantagem-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
  }
  
  .vantagem-card:hover .vantagem-icon {
    background-color: var(--accent);
    color: var(--white);
    transform: rotate(360deg);
  }

  .cert-header-img {
    height: 260px;
  }

  /* Efeito de zoom de imagem na cert_card */
  .cert-web-card:hover .cert-bg-img {
    transform: scale(1.06); /* Zoom suave e lento */
  }

  .cert-web-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
  }

  .tech-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transform: translateY(-4px);
  }

  /* Carousel */
  .logo-item-wrapper {
    width: 140px;
    transition: var(--transition-custom);
  }

  .logo-item-wrapper:hover {
    transform: scale(1.08);
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
  }

  /* WhatsApp Flutuante no Desktop */
  .whatsapp-float-btn {
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
  }
}
