:root {
  --gold: #0096fd;
  --black: #000000;
  --brown: #87694d;
  --burgundy: #3e1012;
  --white: #f7f7f7;
  --dark-gray: #1a1a1a;
  --medium-gray: #333333;
  --light-gold: #33adff;
  --dark-gold: #0074c3;
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--black);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-family: var(--font-secondary);
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  font-family: var(--font-secondary);
}

h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--gold);
}

.text-center h2:after {
  left: 50%;
  transform: translateX(-50%);
}

h3 {
  font-size: 1.75rem;
  font-family: var(--font-secondary);
}

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 300;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--light-gold);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  color: var(--black);
  background-color: var(--gold);
  border-color: var(--gold);
}

.btn-primary:hover {
  background-color: var(--dark-gold);
  border-color: var(--dark-gold);
  color: var(--black);
}

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

.btn-secondary:hover {
  background-color: var(--gold);
  color: var(--black);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

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

.text-gold {
  color: var(--gold);
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-5 {
  margin-top: 3rem;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.bg-dark {
  background-color: var(--dark-gray);
}

.bg-darker {
  background-color: var(--black);
}

.bg-gold {
  background-color: var(--gold);
  color: var(--black);
}

.bg-burgundy {
  background-color: var(--burgundy);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 1rem 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(158, 113, 54, 0.1);
}

header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(0, 0, 0, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-image {
  height: 40px;
  transition: all 0.3s ease;
}

header.scrolled .logo {
  height: 35px;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-item {
  margin-left: 2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--white);
  position: relative;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width 0.3s ease;
}

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

.mobile-toggle {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background-color: var(--gold);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://placeholder.pics/svg/1920x1080/1A1A1A/333333/hero-background")
      no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding-top: 80px;
  position: relative;
  background-color: green;
}

.hero:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, var(--black), transparent);
}

.hero-content {
  margin: 0 auto;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-accent {
  color: var(--gold);
}

/* Methodology Section */
.methodology {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.methodology:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(158, 113, 54, 0.1) 0%,
    rgba(158, 113, 54, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.methodology-item {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 0;
  background-color: rgba(26, 26, 26, 0.5);
  border: 1px solid rgba(158, 113, 54, 0.1);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.methodology-item:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.methodology-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, rgba(158, 113, 54, 0.05), transparent);
  transition: height 0.5s ease;
  z-index: -1;
}

.methodology-item:hover:before {
  height: 100%;
}

.methodology-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.methodology-item h3 {
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Clients Section */
.clients {
  padding: 6rem 0;
  background-color: var(--dark-gray);
  position: relative;
  overflow: hidden;
}

.clients:after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(158, 113, 54, 0.1) 0%,
    rgba(158, 113, 54, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.logo-carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.clients-grid {
  display: flex;
  animation: scroll 20s linear infinite;
  width: max-content;
  gap: 3rem;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-carousel-container:hover .clients-grid {
  animation-play-state: paused;
}

/* .clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
} */

.client-logo {
  filter: brightness(0) invert(1) sepia(1) saturate(0) hue-rotate(0deg);
  opacity: 0.4;
  transition: all 0.5s ease;
  max-width: 100%;
  width: 150px;
  height: auto;
}

.client-logo:hover {
  filter: brightness(0) invert(0.8) sepia(0.5) saturate(1.5) hue-rotate(5deg);
  opacity: 1;
  transform: scale(1.05);
}

/* Solutions Section - Redesenhado */
/* Solutions Section - Redesenhado sem imagens, com ícones centralizados */
.solutions {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background-color: var(--dark);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 2.5rem;
}

.solution-card {
  background-color: rgba(26, 26, 26, 0.8);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  border: 1px solid rgba(158, 113, 54, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--gold);
}

.solution-icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  background: linear-gradient(
    to right,
    rgba(158, 113, 54, 0.05),
    rgba(158, 113, 54, 0.15),
    rgba(158, 113, 54, 0.05)
  );
}

.solution-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(158, 113, 54, 0.3);
}

.solution-card:hover .solution-icon {
  transform: scale(1.1) rotate(5deg);
}

.solution-icon i {
  font-size: 32px;
  color: var(--dark);
}

.solution-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.solution-content h3 {
  margin-bottom: 15px;
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
}

.solution-content h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--gold);
}

.solution-content p {
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  flex-grow: 1;
}

.solution-content .btn {
  align-self: center;
  margin-top: auto;
  padding: 8px 18px;
}

/* Responsividade para soluções */
@media (max-width: 992px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .solution-content {
    padding: 20px;
  }

  .solution-content h3 {
    font-size: 1.3rem;
  }
}

/* Testimonials Section */
.testimonials {
  padding: 8rem 0;
  background-color: var(--dark-gray);
  position: relative;
  overflow: hidden;
  display: none;
}

.testimonials:after {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(158, 113, 54, 0.1) 0%,
    rgba(158, 113, 54, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 0;
  padding: 2.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  border: 1px solid rgba(158, 113, 54, 0.1);
  transition: all 0.5s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--gold);
}

.testimonial-card:before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  color: rgba(158, 113, 54, 0.1);
  font-family: var(--font-secondary);
  line-height: 1;
}

.testimonial-content {
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testimonial-info h4 {
  margin-bottom: 0.25rem;
  color: var(--gold);
}

.testimonial-info p {
  color: rgba(247, 247, 247, 0.7);
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Process Section */
.process {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.process:before {
  content: "";
  position: absolute;
  top: -150px;
  left: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(158, 113, 54, 0.1) 0%,
    rgba(158, 113, 54, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.process-steps {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
  position: relative;
}

.process-step {
  display: flex;
  margin-bottom: 4rem;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step:not(:last-child):after {
  content: "";
  position: absolute;
  top: 70px;
  left: 35px;
  width: 1px;
  height: calc(100% - 40px);
  background: linear-gradient(to bottom, var(--gold), rgba(158, 113, 54, 0.1));
}

.process-number {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(158, 113, 54, 0.1);
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 2rem;
  z-index: 1;
  transition: all 0.3s ease;
}

.process-step:hover .process-number {
  background-color: var(--gold);
  color: var(--black);
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(158, 113, 54, 0.3);
}

.process-content {
  transition: all 0.3s ease;
}

.process-step:hover .process-content {
  transform: translateX(10px);
}

.process-content h3 {
  margin-bottom: 1rem;
  color: var(--gold);
}

/* Stats Section */
.stats {
  padding: 8rem 0;
  background-color: var(--burgundy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.stats:after {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(158, 113, 54, 0.1) 0%,
    rgba(158, 113, 54, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-family: var(--font-secondary);
}

.stat-text {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 300;
}

/* Contact Section */
.contact {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.contact:before {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(158, 113, 54, 0.1) 0%,
    rgba(158, 113, 54, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.contact-form {
  max-width: 800px;
  margin: 3rem auto 0;
  background-color: rgba(26, 26, 26, 0.5);
  padding: 3rem;
  border-radius: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(158, 113, 54, 0.1);
  position: relative;
  z-index: 1;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--gold);
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(158, 113, 54, 0.2);
  border-radius: 0;
  color: var(--white);
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(158, 113, 54, 0.25);
  background-color: rgba(0, 0, 0, 0.5);
}

.form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #dc3545;
}

.is-invalid ~ .invalid-feedback {
  display: block;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239e7136' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 2.5rem;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Benefits Section */
.benefits {
  padding: 8rem 0;
  background-color: var(--dark-gray);
  position: relative;
  overflow: hidden;
}

.benefits:after {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(158, 113, 54, 0.1) 0%,
    rgba(158, 113, 54, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 2.5rem;
  border-radius: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(158, 113, 54, 0.1);
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

.benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--gold);
}

.benefit-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(158, 113, 54, 0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 1.5rem;
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
  background-color: var(--gold);
  color: var(--black);
  transform: scale(1.1);
}

.benefit-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  color: var(--gold);
}

/* Footer */
footer {
  background-color: var(--black);
  color: var(--white);
  padding: 6rem 0 2rem;
  position: relative;
  overflow: hidden;
}

footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo {
  height: 40px;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.footer-about p {
  margin-bottom: 1.5rem;
  color: rgba(247, 247, 247, 0.7);
}

.social-links {
  display: flex;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(158, 113, 54, 0.1);
  color: var(--gold);
  margin-right: 0.75rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(158, 113, 54, 0.3);
}

.social-link:hover {
  background-color: var(--gold);
  color: var(--black);
  transform: translateY(-5px);
}

.footer-heading {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
  color: var(--gold);
}

.footer-heading:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--gold);
}

.footer-links {
  list-style: none;
}

.footer-link {
  margin-bottom: 0.75rem;
}

.footer-link a {
  color: rgba(247, 247, 247, 0.7);
  transition: all 0.3s ease;
}

.footer-link a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.contact-info {
  list-style: none;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.contact-icon {
  margin-right: 1rem;
  color: var(--gold);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(158, 113, 54, 0.1);
  font-size: 0.9rem;
  color: rgba(247, 247, 247, 0.5);
}

/* Scroll Animations */
.reveal {
  position: relative;
  opacity: 0;
  transition: all 1s ease;
}

.reveal.active {
  opacity: 1;
}

.reveal.fade-bottom {
  transform: translateY(50px);
}

.reveal.fade-bottom.active {
  transform: translateY(0);
}

.reveal.fade-left {
  transform: translateX(-50px);
}

.reveal.fade-left.active {
  transform: translateX(0);
}

.reveal.fade-right {
  transform: translateX(50px);
}

.reveal.fade-right.active {
  transform: translateX(0);
}

/* Parallax Effect */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Luxury Elements */
.gold-border {
  position: relative;
}

.gold-border:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.gold-accent {
  position: relative;
}

.gold-accent:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  width: 10px;
  height: 1px;
  background-color: var(--gold);
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.95);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(158, 113, 54, 0.1);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 1.5rem 0;
  }

  .mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .mobile-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .process-step {
    flex-direction: column;
  }

  .process-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .process-step:not(:last-child):after {
    display: none;
  }

  .contact-form {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
