:root {
  --yellow: #ffc800;
  --black: #000000;
  --white: #ffffff;
  --gray-light: #f8f9fa;
  --gray-dark: #333333;
  --shadow: 0 10px 30px rgba(0,0,0,0.1);
  --gradient: linear-gradient(135deg, var(--black) 0%, var(--gray-dark) 100%);
}

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--black);
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  width: 100%;
}

/* Header & Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  z-index: 1000;
  transition: all 0.3s ease;
  width: 100%;
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--yellow);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
  max-width: 100%;
}

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

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

.nav-menu a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: var(--yellow);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.3s ease;
}

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


.mobile-menu {
  display: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: var(--gradient);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,200,0,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(255,200,0,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,200,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

/* Hero Layout em duas colunas */
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  min-height: 80vh;
  width: 100%;
}

/* Lado esquerdo - Conteúdo */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

/* Lado direito - Vídeo */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Hero Logo Styles */
.hero-logo {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-logo-img {
  height: 140px;
  width: auto;
  max-width: 100%;
  mix-blend-mode: screen;
  background: transparent;
  transition: all 0.3s ease;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin-bottom: 2rem;
  opacity: 0.9;
  text-align: center;
  width: 100%;
  max-width: 100%;
}

.cta-button {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: var(--shadow);
  align-self: center;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255,200,0,0.4);
}

/* Box do vídeo - CORRIGIDO */
.video-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 200, 0, 0.3);
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  height: 360px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  margin-top: 2rem;
}

.video-box:hover {
  transform: translateY(-5px);
  border-color: var(--yellow);
  box-shadow: 0 10px 30px rgba(255, 200, 0, 0.2);
}

.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

/* Section Styles */
.section {
  padding: 10rem 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
  overflow-x: hidden;
}

section {
  scroll-margin-top: 120px;
  width: 100%;
  overflow-x: hidden;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--black);
  width: 100%;
  max-width: 100%;
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: var(--gray-dark);
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* About Section */
#sobre {
  padding-top: 6rem;
  margin-top: 75px;
  width: 100%;
  overflow-x: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
  width: 100%;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--black);
  text-align: center;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-dark);
  margin-bottom: 2rem;
  text-align: center;
}

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

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--gray-light);
  border-radius: 15px;
  width: 100%;
  min-width: 0;
}

.stat-number {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--yellow);
  display: block;
  word-break: break-word;
  
}

.stat-label {
  font-size: clamp(0.8rem, 2vw, 1rem);
  color: var(--gray-dark);
  margin-top: 0.5rem;
  word-break: break-word;
}

/* Services Section */
.services {
  background: var(--gray-light);
  padding: 5rem 0;
  width: 100%;
  overflow-x: hidden;
}

.services .section-title,
.services .section-subtitle {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

.service-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 3rem;
  color: var(--yellow);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.service-card p {
  color: var(--gray-dark);
  line-height: 1.6;
}

/* Portfolio Section */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
}

.portfolio-item {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.portfolio-image {
  height: 200px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
}

.portfolio-content {
  padding: 2rem;
}

.portfolio-content h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.portfolio-content p {
  color: var(--gray-dark);
  line-height: 1.6;
}

/* Portfolio Modal */
.portfolio-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.portfolio-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--white);
  border-radius: 20px;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.7);
  transition: transform 0.3s ease;
}

.portfolio-modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--black);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  background: var(--yellow);
  color: var(--black);
  transform: rotate(90deg);
}

.modal-header {
  position: relative;
  height: 300px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 4rem;
  border-radius: 20px 20px 0 0;
}

.modal-body {
  padding: 2rem;
}

.modal-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 1rem;
}

.modal-description {
  font-size: 1.2rem;
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.project-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  width: 100%;
}

.detail-item {
  background: var(--gray-light);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  width: 100%;
  min-width: 0;
}

.detail-icon {
  font-size: 2.5rem;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.detail-item h4 {
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.detail-item p {
  color: var(--gray-dark);
  font-size: 0.9rem;
}

.project-results {
  background: var(--black);
  color: var(--white);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 3rem;
  width: 100%;
  overflow-x: hidden;
}

.project-results h3 {
  color: var(--yellow);
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  width: 100%;
}

.result-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  width: 100%;
  min-width: 0;
}

.result-number {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--yellow);
  display: block;
  word-break: break-word;
}

.result-label {
  font-size: clamp(0.8rem, 2vw, 1rem);
  opacity: 0.9;
  margin-top: 0.5rem;
  word-break: break-word;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.tag {
  background: var(--yellow);
  color: var(--black);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
}

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

.cta-secondary {
  display: inline-block;
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: var(--black);
  color: var(--white);
}

/* Modal Navigation */
.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.modal-nav:hover {
  background: var(--yellow);
  color: var(--black);
}

.modal-prev {
  left: 20px;
}

.modal-next {
  right: 20px;
}

/* Testimonials Section */
.testimonials {
  background: var(--black);
  color: var(--white);
  padding: 5rem 0;
  width: 100%;
  overflow-x: hidden;
}

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

.testimonials .section-subtitle {
  color: rgba(255,255,255,0.8);
}

.testimonials .section-title,
.testimonials .section-subtitle {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

.testimonial-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 2rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255,200,0,0.2);
  width: 100%;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-weight: 700;
  font-size: 1.5rem;
}

.author-info h4 {
  color: var(--yellow);
  margin-bottom: 0.5rem;
}

.author-info p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

/* Contact Section */
.contact {
  background: var(--gray-light);
  padding: 5rem 0;
  width: 100%;
  overflow-x: hidden;
}

.contact .section-title,
.contact .section-subtitle {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--black);
}

.contact-info p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-dark);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-item i {
  color: var(--yellow);
  font-size: 1.2rem;
  width: 20px;
}

.form-container {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  width: 100%;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e1e5e9;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--yellow);
}

.submit-btn {
  width: 100%;
  background: var(--black);
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: var(--gray-dark);
  transform: translateY(-2px);
}

.success-message {
  background: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.success-message.show {
  display: flex;
}

/* Footer */
.footer {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 3rem 0;
  width: 100%;
  overflow-x: hidden;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

.footer p {
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.social-links a {
  color: var(--white);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--yellow);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

.section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Form Validation Styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu {
    display: block;
  }

  .nav-menu.active {
    display: flex;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-top: 1px solid rgba(255,200,0,0.2);
    width: 100%;
  }

  /* Hero Responsivo */
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 0 1rem;
  }
  
  .hero-left {
    align-items: center;
    text-align: center;
  }
  
  .hero-logo {
    justify-content: center;
  }
  
  .hero-logo-img {
    height: 80px;
  }
  
  .hero-subtitle {
    text-align: center;
    font-size: 1rem;
  }
  
  .cta-button {
    align-self: center;
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
  
  /* Vídeo responsivo */
  .video-box {
    width: 100%;
    max-width: 320px;
    height: 220px;
    margin-top: 1rem;
  }

  section {
    scroll-margin-top: 100px;
  }

  #sobre {
    padding-top: 8rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
  }

  .services-grid,
  .portfolio-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .form-container {
    padding: 1.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: 1rem 0.5rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  /* Modal Responsive */
  .modal-content {
    width: 95%;
    max-height: 95vh;
  }

  .modal-body {
    padding: 1.5rem;
  }

  .modal-title {
    font-size: 1.8rem;
  }

  .project-details {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .results-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
  }

  .result-item {
    padding: 0.8rem 0.5rem;
  }

  .result-number {
    font-size: 1.5rem;
  }

  .result-label {
    font-size: 0.8rem;
  }

  .modal-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .modal-prev {
    left: 10px;
  }

  .modal-next {
    right: 10px;
  }

  .project-results {
    padding: 1.5rem;
  }

  .project-results h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .project-tags {
    gap: 0.5rem;
    justify-content: flex-start;
  }

  .tag {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  /* Correções adicionais para evitar overflow */
  .section {
    padding: 6rem 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .section-subtitle {
    font-size: 1rem;
    line-height: 1.4;
  }

  .service-card {
    padding: 1.5rem 1rem;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  .testimonial-card {
    padding: 1.5rem 1rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .author-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .contact-info h3 {
    font-size: 1.5rem;
  }

  .contact-info p {
    font-size: 1rem;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .logo-img {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 0 0.5rem;
    gap: 1.5rem;
  }

  .video-box {
    max-width: 280px;
    height: 200px;
  }

  .hero-logo-img {
    height: 60px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .cta-button {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  .section {
    padding: 4rem 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .stat-item {
    padding: 0.8rem 0.3rem;
  }

  .stat-number {
    font-size: 1.2rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .result-item {
    padding: 0.6rem 0.3rem;
  }

  .result-number {
    font-size: 1.2rem;
  }

  .result-label {
    font-size: 0.7rem;
  }

  .nav-container {
    padding: 0 0.5rem;
  }

  .logo-img {
    height: 50px;
  }

  .modal-body {
    padding: 1rem;
  }

  .project-results {
    padding: 1rem;
  }

  .form-container {
    padding: 1rem;
  }

  .service-card,
  .testimonial-card {
    padding: 1rem;
  }
}