/* Base Styles */
:root {
  --primary-color: #ffd700; /* Amarelo */
  --primary-light: #ffdf33;
  --primary-dark: #e6c200;
  --secondary-color: #000000; /* Preto */
  --accent-color: #ffb100; /* Amarelo mais escuro */
  --accent-light: #ffc233;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;
  --bg-color: #121212;
  --bg-alt: #1a1a1a;
  --card-bg: #1e1e1e;
  --modal-bg: #1e1e1e;
  --text-color: #f5f5f5;
  --text-light: #aaaaaa;
  --text-xlight: #777777;
  --border-color: #333333;
  --box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.2);
  --box-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s ease;
  --border-radius: 0.5rem;
  --border-radius-lg: 1rem;
  --header-height: 70px;
  --whatsapp-color: #25d366;
}

/* Removendo o modo claro, mantendo apenas o escuro */
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-color);
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.025em;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.5rem;
  letter-spacing: -0.025em;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-top: -2rem;
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  box-shadow: 0 4px 6px -1px rgba(255, 215, 0, 0.3), 0 2px 4px -1px rgba(255, 215, 0, 0.1);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(255, 215, 0, 0.4), 0 4px 6px -2px rgba(255, 215, 0, 0.2);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  background-color: #222222;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
}
.hero-buttons .btn-secondary {
  background-color: var(--whatsapp-color);
  color: white;
  box-shadow: 0 4px 6px -1px rgba(37, 211, 102, 0.3), 0 2px 4px -1px rgba(37, 211, 102, 0.1);
  font-size: 1.2rem;
}

.hero-buttons .btn-secondary:hover {
  background-color: #128c7e;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(37, 211, 102, 0.4), 0 4px 6px -2px rgba(37, 211, 102, 0.2);
}

.btn-accent {
  background-color: var(--accent-color);
  color: var(--secondary-color);
  box-shadow: 0 4px 6px -1px rgba(255, 177, 0, 0.3), 0 2px 4px -1px rgba(255, 177, 0, 0.1);
}

.btn-accent:hover {
  background-color: #e6a000;
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(255, 177, 0, 0.4), 0 4px 6px -2px rgba(255, 177, 0, 0.2);
}

.btn-light {
  background-color: #f5f5f5;
  color: var(--secondary-color);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.05);
}

.btn-light:hover {
  background-color: #ffffff;
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: var(--whatsapp-color);
  color: white;
  box-shadow: 0 4px 6px -1px rgba(37, 211, 102, 0.3), 0 2px 4px -1px rgba(37, 211, 102, 0.1);
  font-size: 1.2rem;
}

.btn-whatsapp:hover {
  background-color: #128c7e;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(37, 211, 102, 0.4), 0 4px 6px -2px rgba(37, 211, 102, 0.2);
}

.btn-location {
  background-color: #4285f4;
  color: white;
  box-shadow: 0 4px 6px -1px rgba(66, 133, 244, 0.3), 0 2px 4px -1px rgba(66, 133, 244, 0.1);
}

.btn-location:hover {
  background-color: #3367d6;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(66, 133, 244, 0.4), 0 4px 6px -2px rgba(66, 133, 244, 0.2);
}

/* Header */
header {
  background-color: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease;
  width: 100%;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo img {
  height: auto;
  transition: transform 0.3s ease;
  max-width: 200px;
}

.logo img:hover {
  transform: scale(1.05);
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  flex: 1;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-color);
  font-weight: 600;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Formas diagonais inspiradas na logo */
.diagonal-shape {
  position: absolute;
  z-index: 0;
  opacity: 0.15;
  background-color: var(--primary-color);
  transform: skewY(-12deg);
}

.shape-1 {
  top: 10%;
  left: -5%;
  width: 300px;
  height: 60px;
}

.shape-2 {
  bottom: 15%;
  right: -5%;
  width: 250px;
  height: 40px;
  background-color: var(--primary-color);
}

.shape-3 {
  top: 20%;
  right: -5%;
  width: 200px;
  height: 30px;
}

.shape-4 {
  bottom: 10%;
  left: -5%;
  width: 180px;
  height: 50px;
  background-color: var(--primary-color);
}

.shape-5 {
  top: 15%;
  left: -5%;
  width: 220px;
  height: 40px;
}

.shape-6 {
  bottom: 20%;
  right: -5%;
  width: 280px;
  height: 35px;
  background-color: var(--primary-color);
}

.shape-7 {
  top: 25%;
  right: -5%;
  width: 240px;
  height: 45px;
}

.shape-8 {
  bottom: 15%;
  left: -5%;
  width: 200px;
  height: 30px;
  background-color: var(--primary-color);
}

.shape-9 {
  top: 10%;
  left: -5%;
  width: 180px;
  height: 40px;
}

.shape-10 {
  bottom: 25%;
  right: -5%;
  width: 260px;
  height: 50px;
  background-color: var(--primary-color);
}

.shape-11 {
  top: 30%;
  left: -5%;
  width: 220px;
  height: 35px;
}

.shape-12 {
  bottom: 10%;
  right: -5%;
  width: 190px;
  height: 45px;
  background-color: var(--primary-color);
}

.shape-13 {
  top: 15%;
  right: -5%;
  width: 230px;
  height: 40px;
}

.shape-14 {
  bottom: 20%;
  left: -5%;
  width: 210px;
  height: 30px;
  background-color: var(--primary-color);
}

.shape-15 {
  top: 25%;
  left: -5%;
  width: 250px;
  height: 45px;
}

.shape-16 {
  bottom: 15%;
  right: -5%;
  width: 270px;
  height: 35px;
  background-color: var(--primary-color);
}

.shape-17 {
  top: 20%;
  right: -5%;
  width: 240px;
  height: 40px;
}

.shape-18 {
  bottom: 25%;
  left: -5%;
  width: 220px;
  height: 50px;
  background-color: var(--primary-color);
}

/* Hero Section com fundo geométrico */
.hero {
  background: var(--bg-color);
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
}

/* Fundo geométrico para a landing page */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      30deg,
      var(--bg-alt) 12%,
      transparent 12.5%,
      transparent 87%,
      var(--bg-alt) 87.5%,
      var(--bg-alt)
    ),
    linear-gradient(150deg, var(--bg-alt) 12%, transparent 12.5%, transparent 87%, var(--bg-alt) 87.5%, var(--bg-alt)),
    linear-gradient(30deg, var(--bg-alt) 12%, transparent 12.5%, transparent 87%, var(--bg-alt) 87.5%, var(--bg-alt)),
    linear-gradient(150deg, var(--bg-alt) 12%, transparent 12.5%, transparent 87%, var(--bg-alt) 87.5%, var(--bg-alt)),
    linear-gradient(
      60deg,
      rgba(255, 215, 0, 0.1) 25%,
      transparent 25.5%,
      transparent 75%,
      rgba(255, 215, 0, 0.1) 75%,
      rgba(255, 215, 0, 0.1)
    ),
    linear-gradient(
      120deg,
      rgba(255, 215, 0, 0.1) 25%,
      transparent 25.5%,
      transparent 75%,
      rgba(255, 215, 0, 0.1) 75%,
      rgba(255, 215, 0, 0.1)
    );
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 0 0;
  opacity: 0.3;
  z-index: 0;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  padding-right: 3rem;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-lg);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.hero-image:hover img {
  transform: perspective(1000px) rotateY(0deg);
}

/* Benefits Section */
.benefits {
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0) 20%),
    radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0) 20%);
  z-index: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.benefit-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover {
  animation: glow 2s infinite;
  transform: translateY(-10px);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: inline-block;
  position: relative;
}

.benefit-icon::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.benefit-card h3 {
  margin-bottom: 1rem;
}

.benefit-card p {
  color: var(--text-light);
}

/* About Section */
.about {
  background-color: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0) 70%);
  z-index: 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.about-text {
  flex: 1;
}

/* Removido o gradiente do título da seção Sobre */
.about-title {
  text-align: left;
  color: var(--text-color);
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.about-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
}

.stat {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.stat:hover {
  transform: translateY(-5px);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-text {
  color: var(--text-light);
  font-weight: 500;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-lg);
  transform: perspective(1000px) rotateY(5deg);
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: perspective(1000px) rotateY(0deg);
}

/* Equipment Section */
.equipment {
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.equipment::before {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0) 70%);
  z-index: 0;
}

/* Melhorar o visual das categorias com um sistema de abas */
.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  gap: 0.5rem;
}

.category-tab {
  padding: 0.75rem 1.5rem;
  background-color: var(--bg-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  color: var(--text-color);
}

.category-tab.active {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-color: var(--primary-color);
}

.category-content {
  display: none;
}

.category-content.active {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.equipment-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.filter-btn {
  padding: 0.6rem 1rem;
  background-color: var(--bg-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  color: var(--text-color);
  font-size: 0.85rem;
  white-space: nowrap;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.equipment-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.equipment-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-lg);
}

.equipment-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.equipment-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.equipment-card:hover .equipment-image::before {
  opacity: 1;
}

.equipment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.equipment-card:hover .equipment-image img {
  transform: scale(1.1);
}

/* Laço diagonal "NOVIDADE" melhorado */
.novelty-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #e53935;
  color: white;
  padding: 0.5rem 0;
  width: 150px;
  font-weight: 600;
  font-size: 0.85rem;
  transform: rotate(-45deg) translateX(-40px) translateY(-15px);
  transform-origin: top left;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.equipment-info {
  padding: 1.5rem;
  background-color: var(--card-bg);
  display: flex;
  flex-direction: column;
  height: calc(100% - 200px);
  flex-grow: 1;
}

.equipment-info h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.equipment-info p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  flex-grow: 1;
}

.equipment-info .btn {
  align-self: center;
  width: 100%;
  margin-top: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0.75rem 0.5rem;
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 45px;
}

/* Change the "Solicitar orçamento" button on products from yellow to WhatsApp green */
.equipment-info .btn-outline {
  background-color: transparent;
  border: 2px solid var(--whatsapp-color);
  color: var(--whatsapp-color);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.equipment-info .btn-outline:hover {
  background-color: var(--whatsapp-color);
  color: white;
  transform: translateY(-2px);
}

.equipment-cta {
  text-align: center;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.equipment-cta p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

/* Nova seção de Processo de Locação */
.process-section {
  background-color: var(--bg-alt);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0) 20%),
    radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0) 20%);
  z-index: 0;
}

.process-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin: 3rem 0;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.process-step {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--border-color);
  text-align: center;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-lg);
}

.process-step-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.step-number {
  position: absolute;
  top: -10px;
  right: -15px;
  background-color: var(--accent-color);
  color: var(--secondary-color);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.process-step h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.process-step p {
  color: var(--text-light);
}

.process-connector {
  font-size: 1.5rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-light);
  font-size: 0.9rem;
  font-style: italic;
}

.process-cta {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.process-cta .btn {
  pointer-events: auto;
  cursor: pointer;
  position: relative;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--bg-alt);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0) 70%);
  z-index: 0;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  z-index: 1;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-content {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--border-color);
  position: relative;
}

.testimonial-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.testimonial-quote {
  margin-bottom: 2rem;
}

.testimonial-quote i {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
  opacity: 0.5;
}

.testimonial-quote p {
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-color);
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  border: 3px solid var(--primary-light);
}

.author-info h4 {
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
}

.author-info p {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-btn {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-color);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
}

.testimonial-btn:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.testimonial-dots {
  display: flex;
  gap: 0.75rem;
  margin: 0 1.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* CTA Section */
.cta-section {
  background: var(--secondary-color);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(255, 215, 0, 0.1) 0%,
    rgba(255, 215, 0, 0) 25%,
    rgba(255, 215, 0, 0.1) 50%,
    rgba(255, 215, 0, 0) 75%,
    rgba(255, 215, 0, 0.1) 100%
  );
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  z-index: 0;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
  color: var(--text-light);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* Mapa e Rota */
.map-section {
  background-color: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.map-section::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0) 70%);
  z-index: 0;
}

.map-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.map-container h2 {
  margin-bottom: 1rem;
}

.map-frame {
  width: 100%;
  height: 450px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.map-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.map-address,
.map-hours {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: 1px solid var(--border-color);
  min-width: 250px;
}

.map-address i,
.map-hours i {
  font-size: 2rem;
  color: var(--primary-color);
}

.map-address-text h3,
.map-hours-text h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.map-address-text p,
.map-hours-text p {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.map-route-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
}

.map-route-btn:hover {
  background-color: var(--primary-dark);
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-lg);
}

/* Adicionar estilo para os botões do mapa */
.map-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.map-route-btn,
.map-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
  min-width: 160px;
  justify-content: center;
}

.map-route-btn {
  background-color: #4285f4;
  color: #ffffff;
}

.map-whatsapp-btn {
  background-color: var(--whatsapp-color);
  color: white;
}

.map-route-btn:hover {
  background-color: #3367d6;
  color: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-lg);
}

.map-whatsapp-btn:hover {
  background-color: #1ea052; /* Darker WhatsApp green */
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(37, 211, 102, 0.4), 0 4px 6px -2px rgba(37, 211, 102, 0.2);
}

/* Quote Section */
.quote-section {
  padding: 4rem 0; /* Reduced padding for compactness */
  background-color: var(--bg-alt); /* Slightly different background for section */
}

.quote-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05) 0%, rgba(var(--accent-rgb), 0.05) 100%);
  z-index: -1;
  opacity: 0.5;
}

.quote-container {
  display: flex;
  flex-wrap: wrap; /* Allow items to wrap */
  gap: 2rem; /* Gap between form and info cards */
  align-items: flex-start; /* Align items to the top */
}

.quote-form-container {
  flex: 2; /* Form takes more space */
  min-width: 300px; /* Minimum width before wrapping */
  background-color: var(--card-bg);
  padding: 1rem; /* Ultra compact padding */
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem; /* Ultra compact gap */
}

.form-row {
  display: flex;
  gap: 1rem; /* Reduced gap for compactness */
  flex-wrap: wrap; /* Allow columns to wrap on small screens */
}

.form-col {
  flex: 1;
  min-width: calc(50% - 0.5rem); /* Adjust for gap, ensure two columns fit */
}

.form-group {
  margin-bottom: 0.3rem; /* Ultra compact margin */
}

.form-group label {
  display: block;
  margin-bottom: 0.15rem; /* Ultra compact margin */
  font-weight: 500;
  font-size: 0.8rem; /* Ultra compact label */
  color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.4rem 0.6rem; /* Ultra compact padding */
  border: 1px solid var(--border-color);
  background-color: var(--bg-color);
  color: var(--text-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
  font-size: 0.8rem; /* Ultra compact input text */
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.3);
}

.form-submit {
  margin-top: 0.5rem; /* Ultra compact margin */
}

.whatsapp-btn { /* Assuming this is your .btn-whatsapp, ensure consistency */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.7rem 1.2rem; /* Restored to a 'good' size padding */
  background-color: var(--whatsapp-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  gap: 0.5rem;
  font-size: 0.9rem; /* Restored to a 'good' size font */
}

.whatsapp-btn i {
  font-size: 1.1rem; /* Restored to a 'good' size icon */
}

.whatsapp-btn:hover {
  background-color: #128c7e; /* Darker WhatsApp green */
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(37, 211, 102, 0.3);
}

.quote-info {
  flex: 1; /* Info cards take less space */
  min-width: 280px; /* Minimum width for info cards section */
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* Gap between cards */
}

.info-card { /* New class for styling info items as cards */
  background-color: var(--card-bg);
  padding: 1.5rem; /* Adjusted padding */
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-lg);
}

.info-card-header {
  display: flex;
  align-items: center; /* Aligns icon and title vertically */
  margin-bottom: 0.5rem; /* Space between header and paragraph */
}

.info-card .quote-info-icon {
  font-size: 1.8rem; /* Icon size */
  margin-right: 0.8rem; /* Space between icon and title */
  color: var(--primary-color); /* Use primary color for icons */
  line-height: 1;
  flex-shrink: 0; /* Prevent icon from shrinking */
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: 0; /* Reset bottom margin as spacing is on parent */
  font-size: 1.2rem; /* Adjusted heading size */
  color: var(--text-color);
}

.info-card p {
  font-size: 0.9rem; /* Adjusted paragraph size */
  margin-bottom: 0;
  line-height: 1.5;
  color: var(--text-light);
}

.quote-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-light);
  font-size: 0.9rem;
  font-style: italic;
}

/* Footer */
footer {
  background-color: var(--bg-alt);
  padding: 3rem 0 2rem; /* Adjusted top padding */
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-color); /* Added top border */
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, rgba(255, 215, 0, 0) 20%),
    radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.05) 0%, rgba(255, 215, 0, 0) 20%);
  z-index: 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem; /* Reduced gap */
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
  align-items: flex-start; /* Align columns to the top */
}

.footer-logo {
  flex: 1.5; /* Adjusted flex value */
  min-width: 250px;
}

.footer-logo img {
  max-width: 200px;
  margin-bottom: 1.5rem;
}

.footer-logo p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  max-width: 350px; /* Added max-width to control text flow */
  font-size: 0.85rem; /* Reduced font size */
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--card-bg);
  border-radius: 50%;
  color: var(--text-color);
  transition: var(--transition);
  box-shadow: var(--box-shadow);
}

.footer-social a:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-5px);
}

.footer-links,
.footer-contact,
.footer-hours {
  flex: 1;
  min-width: 200px;
}

.footer-links h3,
.footer-contact h3,
.footer-hours h3 {
  margin-bottom: 1.5rem;
  font-size: 1.1rem; /* Reduced font size */
  position: relative;
  display: inline-block;
}

.footer-links h3::after,
.footer-contact h3::after,
.footer-hours h3::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links ul,
.footer-contact ul,
.footer-hours ul {
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li,
.footer-hours li {
  margin-bottom: 0.8rem; /* Slightly reduced margin */
  font-size: 0.85rem; /* Reduced font size */
}

.footer-links a {
  color: var(--text-light);
  transition: var(--transition);
  font-size: 0.85rem; /* Reduced font size */
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 0.5rem;
}

.footer-contact li,
.footer-hours li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
  /* font-size is inherited from .footer-links li, .footer-contact li, .footer-hours li */
}

.footer-contact i,
.footer-hours i {
  color: var(--primary-color);
  font-size: 1.1rem; /* Slightly reduced icon size */
  min-width: 20px;
  text-align: center;
}

.footer-contact a {
  color: var(--text-light);
  transition: var(--transition);
  font-size: 0.85rem; /* Reduced font size */
}

.footer-contact a:hover {
  color: var(--primary-color);
}

.footer-cta {
  margin-top: 1.5rem;
}

.footer-cta  i {
  color: var(--text-color);
  font-size: 1.2rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  position: relative;
  z-index: 1;
}

.footer-copyright {
  color: var(--text-light);
  font-size: 0.8rem; /* Reduced font size */
}

.footer-links-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-links-legal a {
  color: var(--text-light);
  font-size: 0.8rem; /* Reduced font size */
  transition: var(--transition);
}

.footer-links-legal a:hover {
  color: var(--primary-color);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--secondary-color); 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  color: #000000;
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
}

/* Animações */
@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.1);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.1);
  }
}

/* Dropdown de categorias */
.category-dropdown {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 2rem;
}

.category-dropdown-btn {
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  color: var(--text-color);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.category-dropdown-btn:hover {
  background-color: var(--bg-alt);
}

.category-dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  z-index: 10;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  visibility: hidden;
}

.category-dropdown.open .category-dropdown-content {
  max-height: 600px;
  visibility: visible;
  overflow-y: auto;
}

.category-dropdown-item {
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.category-dropdown-item:hover {
  background-color: var(--bg-alt);
  color: var(--primary-color);
}

.category-dropdown-item.active {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

/* Estilos para o formulário de cotação */
.address-fields {
  display: none;
}

.error-message {
  color: var(--error-color);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.success-toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--success-color);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  z-index: 9999;
  transition: opacity 0.3s ease;
}

/* Media Queries */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .equipment-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .about-content {
    gap: 2rem;
  }
  
  .process-steps {
    gap: 1rem;
  }
  
  .quote-container {
    flex-direction: column;
  }
  
  .quote-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
  
  .hero-content p {
    max-width: 100%;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-stats {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .stat {
    flex: 1;
    min-width: 150px;
  }
  
  .process-steps {
    flex-direction: column;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .process-step {
    width: 100%;
    max-width: 100%;
  }
  
  .process-connector {
    transform: rotate(90deg);
    margin: 1rem 0;
  }
  
  .quote-info {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    gap: 2rem;
  }
  
  .footer-logo, 
  .footer-links, 
  .footer-contact, 
  .footer-hours {
    flex: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.9rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-color);
    width: 100%;
    box-shadow: var(--box-shadow);
    padding: 1rem 0;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
  }
  
  .nav-links.show-mobile-menu {
    display: flex;
  }
  
  .nav-links a {
    padding: 0.8rem 1rem;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
  }
  .nav-links li:last-child a {
    border-bottom: none;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .equipment-grid {
    grid-template-columns: 1fr;
  }
  
  .equipment-card {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
  
  .about-stats {
    flex-direction: column;
  }
  
  .stat {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .testimonial-content {
    padding: 1.5rem;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .map-frame {
    height: 350px;
  }
  
  .map-info {
    flex-direction: column;
    width: 100%;
  }
  
  .map-address, 
  .map-hours {
    width: 100%;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-content p {
    font-size: 1.1rem;
  }
  
  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1rem;
    display: none;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    padding: 6rem 0 4rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .benefit-card {
    padding: 1.5rem 1rem;
  }
  
  .category-tabs {
    flex-direction: column;
    width: 100%;
  }
  
  .category-tab {
    width: 100%;
    text-align: center;
  }
  
  .equipment-card {
    max-width: 320px;
    margin: 0 auto;
  }
  
  .testimonial-quote p {
    font-size: 1rem;
  }
  
  .testimonial-controls {
    flex-wrap: wrap;
  }
  
  .process-cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .process-cta .btn {
    width: 100%;
  }
  
  .map-buttons {
    flex-direction: column;
  }
  
  .map-route-btn, 
  .map-whatsapp-btn {
    width: 100%;
  }
  
  .cta-content .btn {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-links-legal {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
}

@media (max-width: 425px) {
  html,
  body {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .logo img {
    max-width: 150px;
  }
  
  .benefit-icon {
    font-size: 2rem;
  }
  
  .equipment-image {
    height: 180px;
  }
  
  .equipment-info h3 {
    font-size: 1.1rem;
  }
  
  .equipment-info p {
    font-size: 0.9rem;
  }
  
  .process-step {
    padding: 1.5rem 1rem;
  }
  
  .process-step-icon {
    font-size: 2.5rem;
  }
  
  .testimonial-content {
    padding: 1.25rem;
  }
  
  .testimonial-quote i {
    font-size: 1.5rem;
  }
  
  .author-image {
    width: 50px;
    height: 50px;
  }
  
  .map-frame {
    height: 300px;
  }
  
  .quote-form-container {
    padding: 1.5rem 1rem;
  }
  
  .form-group label {
    font-size: 0.9rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .whatsapp-btn {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
}

/* Animações adicionais */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Estilos para o menu mobile */
.show-mobile-menu {
  display: flex;
}

/* Estilos para o formulário de cotação */
.quote-section {
  position: relative;
}

.form-alert {
  background-color: rgba(239, 68, 68, 0.1);
  color: var(--error-color);
  padding: 0.75rem;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  text-align: center;
}

/* Estilos para o botão de voltar ao topo */
.back-to-top {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.equipment-filter {
  max-width: 100%;
}

/* Floating WhatsApp Button - Estilo Empilhado */
.floating-whatsapp-btn {
  position: fixed;
  /* Posição vertical: 1rem acima do botão 'back-to-top' (que tem 50px de altura e está a 2rem do fundo) */
  bottom: calc(2rem + 50px + 1rem); 
  /* Posição horizontal: alinhado com o botão 'back-to-top' */
  right: 2rem; 
  width: 60px;
  height: 60px;
  background-color: var(--whatsapp-color); /* Cor verde do WhatsApp: #25d366 */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--box-shadow);
  z-index: 99;
}

.floating-whatsapp-btn:hover {
  /* A cor de fundo não é alterada. Apenas o efeito de elevação e sombra. */
  transform: translateY(-5px) scale(1.1);
  box-shadow: var(--box-shadow-lg);
  color: white;
}

/* Ajuste para telas menores (abaixo de 768px) */
@media (max-width: 768px) {
  .floating-whatsapp-btn {
    /* Posição ajustada, pois a seta foi removida */
    bottom: 1.5rem; 
    right: 1.5rem; 
    /* Tamanho aumentado */
    width: 60px;
    height: 60px;
    font-size: 2rem; /* Tamanho do ícone aumentado */
  }
}

/* Aumenta o tamanho do ícone de WhatsApp nos cards de equipamento */
.equipment-info .btn .fa-whatsapp {
  font-size: 1.3rem; /* Altere este valor para o tamanho que desejar */
}