/* style.css */

/* ===== Reset simples ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #020617;
  color: #e5e7eb;
}

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #f9fafb;
}

/* Vídeo de fundo */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05) brightness(0.98);
  z-index: -2;
}

/* Overlay: sombreado em TOP e BOTTOM, meio limpo pro vídeo */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    /* Top escuro que some até ~40% */
    linear-gradient(
      to bottom,
      rgba(15, 23, 42, 0.9) 0%,
      rgba(15, 23, 42, 0.55) 15%,
      rgba(15, 23, 42, 0.0) 40%
    ),
    /* Bottom escuro que sobe a partir de ~60% */
    linear-gradient(
      to top,
      rgba(15, 23, 42, 0.9) 0%,
      rgba(15, 23, 42, 0.6) 18%,
      rgba(15, 23, 42, 0.0) 40%
    );
  z-index: -1;
}

/* Estrutura interna da HERO:
   - TOP (texto)
   - MIDDLE vazio
   - BOTTOM (texto + botões)
*/
.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* separa top e bottom */
  align-items: center;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  text-align: center;
}

/* TOP */
.hero-top-block {
  margin-top: 0.5rem;
}

.hero-top {
  font-weight: 500;
  font-size: clamp(1rem, 2vw, 1.3rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin: 0 0 0.75rem 0;
  color: #e5e7eb;
}

/* Headline principal com mais destaque */
.hero-tagline {
  font-weight: 600;
  font-size: clamp(1.8rem, 4.2vw, 2.4rem);
  margin: 0;
  color: #ffedd5;
  text-shadow: 0 10px 30px rgba(15, 23, 42, 0.7);
}

/* BOTTOM */
.hero-bottom-block {
  max-width: 720px;
  margin-bottom: 0.5rem;
}

.hero-description {
  max-width: 40rem;
  margin: 0 auto 1.8rem auto;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #e5e7eb;
}

/* Botões HERO */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.btn {
  border-radius: 16px; /* arredondado, mas não redondo/pill */
  padding: 0.8rem 1.9rem;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}

/* Pôr do sol mais puxado pro laranja */
.btn-primary {
  background: linear-gradient(135deg, #ea580c, #f97316, #fbbf24);
  color: #0b1120;
  box-shadow: 0 16px 40px rgba(180, 83, 9, 0.7);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(180, 83, 9, 0.85);
  opacity: 0.97;
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(253, 186, 116, 0.85);
  color: #fed7aa;
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.95);
}

/* ===== Responsivo ===== */
@media (max-width: 900px) {
  .hero-inner {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .btn {
    width: 100%;
    max-width: 320px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .hero-inner {
    padding-top: 1.5rem;
    padding-bottom: 1.8rem;
  }
}

/* style.css – MESMOS ESTILOS, APENAS PARA REFERÊNCIA DAS SEÇÕES */

/* Seções genéricas */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 600;
  margin: 0 0 0.75rem 0;
  color: #f9fafb;
}

.section-subtitle {
  font-size: 0.98rem;
  color: #9ca3af;
  max-width: 36rem;
  margin: 0;
}

/* SOBRE JERI & FELIPE */
.section-sobre {
  background: radial-gradient(circle at top left, rgba(8, 47, 73, 0.55), transparent 55%),
              radial-gradient(circle at bottom right, rgba(124, 45, 18, 0.45), transparent 50%),
              #020617;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.sobre-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: flex-start;
}

.section-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #d1d5db;
  margin: 1rem 0 0 0;
}

.sobre-felipe {
  display: flex;
  justify-content: flex-end;
}

.sobre-card {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.95), #020617);
  border-radius: 24px;
  padding: 1.8rem 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.85);
  max-width: 420px;
}

.sobre-tag {
  display: inline-flex;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(252, 211, 77, 0.6);
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fbbf24;
  margin-bottom: 0.9rem;
}

.sobre-nome {
  font-size: 1.2rem;
  margin: 0 0 0.9rem 0;
  color: #f9fafb;
}

.sobre-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #e5e7eb;
  margin: 0 0 0.8rem 0;
}

.sobre-fecho {
  font-size: 0.9rem;
  color: #e5e7eb;
  margin: 0;
}

.sobre-instagram {
  display: block;
  margin-top: 0.4rem;
  color: #fed7aa;
}

/* SERVIÇOS */
.section-servicos {
  background: #020617;
  border-top: 1px solid rgba(30, 64, 175, 0.3);
}

.section-servicos .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-servicos .section-subtitle {
  margin: 0.5rem auto 0 auto;
  max-width: 32rem;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.servico-card {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), #020617);
  border-radius: 20px;
  padding: 1.4rem 1.2rem 1.5rem 1.2rem;
  border: 1px solid rgba(249, 115, 22, 0.35);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.servico-tag {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fed7aa;
  margin-bottom: 0.2rem;
}

.servico-titulo {
  font-size: 1.02rem;
  margin: 0;
  color: #fef3c7;
}

.servico-texto {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #e5e7eb;
  margin: 0.2rem 0 0.6rem 0;
}

.servico-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.servico-badges li {
  font-size: 0.78rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(251, 191, 36, 0.7);
  color: #fef9c3;
  background: rgba(23, 37, 84, 0.7);
}

/* RESPONSIVO */
@media (max-width: 960px) {
  .sobre-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .sobre-felipe {
    justify-content: flex-start;
  }

  .servicos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .section {
    padding: 3.5rem 0;
  }

  .servicos-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .servico-card {
    padding: 1.3rem 1.1rem 1.4rem 1.1rem;
  }
}

/* ===== SESSÃO CLÁSSICOS DE JERI – FUNDO BRANCO ===== */

.section-classicos {
  background: #ffffff;
  border-top: 1px solid rgba(209, 213, 219, 0.7);
}

.section-classicos .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* reaproveita o .section-title global, só ajustando cor aqui */
.section-title-light {
  color: #0f172a;
}

.section-subtitle-light {
  color: #6b7280;
}

/* Grid dos clássicos */
.classicos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

/* Card base em branco */
.classico-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Imagem */
.classico-media {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.classico-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

/* Tag de transporte */
.classico-transporte-tag {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(251, 191, 36, 0.9);
  color: #fef3c7;
}

/* Corpo do card */
.classico-body {
  padding: 1.3rem 1.2rem 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.classico-title {
  font-size: 1.05rem;
  margin: 0;
  color: #111827;
}

.classico-route {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
}

/* Metadados: duração e pessoas por veículo */
.classico-meta {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.meta-pill {
  font-size: 0.78rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  color: #374151;
  background: #f9fafb;
}

/* Botão WhatsApp por passeio */
.classico-actions {
  margin-top: 0.9rem;
}

.btn-classico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.3rem;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #ea580c, #f97316, #fbbf24);
  color: #0b1120;
  box-shadow: 0 10px 26px rgba(248, 113, 22, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}

.btn-classico:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(248, 113, 22, 0.5);
  opacity: 0.97;
}

/* Responsivo */
@media (max-width: 1024px) {
  .classicos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .classico-media {
    height: 210px;
  }
}

@media (max-width: 720px) {
  .section-classicos .section-header {
    margin-bottom: 2.5rem;
  }

  .classicos-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .classico-media {
    height: 220px;
  }

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

/* ===== SESSÃO OFF ROAD UTV (VÍDEO) ===== */

.section-offroad {
  background: radial-gradient(circle at top left, rgba(8, 47, 73, 0.6), transparent 55%),
              radial-gradient(circle at bottom right, rgba(124, 45, 18, 0.55), transparent 55%),
              #020617;
  border-top: 1px solid rgba(30, 64, 175, 0.4);
}

.offroad-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

/* VÍDEO à esquerda */
.offroad-media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);
  width: 100%;
}

.offroad-video {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

/* Tag na mídia */
.offroad-tag {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(251, 191, 36, 0.9);
  color: #fef3c7;
}

/* Conteúdo à direita */
.offroad-content {
  color: #e5e7eb;
}

.offroad-title {
  margin-bottom: 0.8rem;
  color: #f9fafb;
}

.offroad-subtitle {
  font-size: 0.98rem;
  color: #cbd5f5;
  max-width: 28rem;
  margin: 0 0 1.3rem 0;
}

/* Metadados */
.offroad-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.4rem;
}

.offroad-pill {
  font-size: 0.8rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
}

/* Roteiro */
.offroad-route-box {
  background: rgba(15, 23, 42, 0.85);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
  margin-bottom: 1.4rem;
}

.offroad-route-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: #e5e7eb;
  margin: 0 0 0.4rem 0;
}

.offroad-route-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offroad-route-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: #cbd5f5;
  margin-bottom: 0.3rem;
}

.offroad-route-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #f97316;
}

/* Botão WhatsApp */
.offroad-actions {
  margin-top: 0.4rem;
}

.btn-offroad {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #ea580c, #f97316, #fbbf24);
  color: #0b1120;
  box-shadow: 0 14px 32px rgba(248, 113, 22, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}

.btn-offroad:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(248, 113, 22, 0.6);
  opacity: 0.97;
}

/* Responsivo */
@media (max-width: 960px) {
  .offroad-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .offroad-media {
    width: 100%;
    max-width: 100%;
    margin: 0 0 2rem 0; /* vídeo 100% da largura no mobile */
  }
}

@media (max-width: 640px) {
  .section-offroad {
    padding: 3.5rem 0;
  }

  .offroad-video {
    max-height: none;   /* deixa o vídeo se ajustar melhor */
    height: auto;
  }

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


/* ===== SESSÃO TRANSLADOS ===== */

.section-translados {
  background: #ffffff;
  border-top: 1px solid rgba(209, 213, 219, 0.7);
}

.section-translados .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-translados .section-title-light {
  color: #0f172a;
}

.section-translados .section-subtitle-light {
  color: #6b7280;
  margin: 0.5rem auto 0 auto;
  max-width: 34rem;
}

/* Grid */
.translados-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

/* Card base */
.translado-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Imagem */
.translado-media {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.translado-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

/* Tag em cima da imagem */
.translado-tag {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(251, 191, 36, 0.9);
  color: #fef3c7;
}

/* Corpo */
.translado-body {
  padding: 1.4rem 1.3rem 1.6rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.translado-title {
  font-size: 1.02rem;
  margin: 0;
  color: #111827;
}

.translado-texto {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
}

/* Metadados */
.translado-meta {
  margin-top: 0.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.translado-pill {
  font-size: 0.78rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  color: #374151;
  background: #f9fafb;
}

/* Botão WhatsApp */
.translado-actions {
  margin-top: 0.9rem;
}

.btn-translado {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #ea580c, #f97316, #fbbf24);
  color: #0b1120;
  box-shadow: 0 10px 26px rgba(248, 113, 22, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}

.btn-translado:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(248, 113, 22, 0.5);
  opacity: 0.97;
}

/* RESPONSIVO */
@media (max-width: 960px) {
  .translados-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .translado-media {
    height: 210px;
  }
}

@media (max-width: 640px) {
  .section-translados {
    padding: 3.5rem 0;
  }

  .translado-media {
    height: 200px;
  }

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

/* ===== FOOTER ===== */

.site-footer {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), #020617);
  border-top: 1px solid rgba(30, 64, 175, 0.5);
  padding: 3.5rem 0 2.5rem 0;
  color: #e5e7eb;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-col {
  min-width: 240px;
}

.footer-brand {
  max-width: 420px;
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 0.4rem 0;
  color: #fef3c7;
}

.footer-tagline {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #cbd5f5;
  margin: 0 0 1.2rem 0;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-contact a {
  font-size: 0.9rem;
  color: #e5e7eb;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #f97316;
}

/* Coluna de links */
.footer-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
  margin: 0 0 0.7rem 0;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-nav a {
  font-size: 0.9rem;
  color: #e5e7eb;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #f97316;
}

/* Bottom footer */
.footer-bottom {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(30, 64, 175, 0.5);
  padding-top: 1.2rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

.footer-madeby {
  opacity: 0.9;
}

/* RESPONSIVO FOOTER */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== BOTÃO FLUTUANTE WHATSAPP ===== */

.floating-whatsapp {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 999px;
  background: #22c55e; /* verde estilo WhatsApp, levemente adaptado */
  box-shadow: 0 18px 45px rgba(22, 163, 74, 0.65);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 60;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 22px 55px rgba(22, 163, 74, 0.8);
  opacity: 0.97;
}

.floating-whatsapp-svg {
  width: 1.75rem;
  height: 1.75rem;
  color: #ecfdf5; /* cor do ícone (usa currentColor no path) */
}

/* Ajuste mobile */
@media (max-width: 640px) {
  .floating-whatsapp {
    right: 1.1rem;
    bottom: 1.1rem;
    width: 3.2rem;
    height: 3.2rem;
  }

  .floating-whatsapp-svg {
    width: 1.6rem;
    height: 1.6rem;
  }
}
