body {
  font-family: "Roboto", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

#main-content {
  min-height: 50vh;
}

.nav-link-active {
  color: #2563eb !important;
  text-decoration: underline;
  text-decoration-color: #2563eb !important;
  text-underline-offset: 4px;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: #e5e7eb;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #6b7280 0%, #374151 100%);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #4b5563 0%, #1f2937 100%);
}

* {
  scrollbar-width: thin;
  scrollbar-color: #4b5563 #e5e7eb;
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("/assets/img/banner.jpg") center/cover no-repeat;
  min-height: 88vh;
}

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

.section-title {
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50%;
  height: 3px;
  background: #3b82f6;
}

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

.overflow-x-hidden {
  overflow-x: hidden;
}

@media (max-width: 320px) {
  html {
    font-size: 12px;
  }
  
  .hero {
    min-height: 50vh;
    padding-top: 110px;
    padding-bottom: 2rem;
  }
  
  .hero h1 {
    font-size: 1.25rem;
    line-height: 1.3;
  }
  
  .hero p {
    font-size: 0.875rem;
  }
  
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  
  #main-content > section:first-child {
    padding-top: 110px !important;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 13px;
  }
  
  .hero {
    min-height: 55vh;
    padding-top: 115px;
    padding-bottom: 2rem;
  }
  
  .hero h1 {
    font-size: 1.375rem;
    line-height: 1.3;
  }
  
  .hero p {
    font-size: 0.9375rem;
  }
  
  .container {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }
  
  section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  
  #main-content > section:first-child {
    padding-top: 115px !important;
  }
  
  .whatsapp-float {
    bottom: 16px !important;
    left: 16px !important;
  }
  
  .whatsapp-button {
    width: 50px !important;
    height: 50px !important;
  }
  
  .whatsapp-button svg {
    width: 26px !important;
    height: 26px !important;
  }
  
  h2 {
    font-size: 1.5rem !important;
  }
  
  h3 {
    font-size: 1.125rem !important;
  }
}

@media (max-width: 640px) {
  html {
    font-size: 14px;
  }
  
  .hero {
    min-height: 60vh;
    padding-top: 120px;
    padding-bottom: 3rem;
  }
  
  .hero h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  #main-content > section:first-child {
    padding-top: 120px !important;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
  }
  
  .hero h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  .hero p {
    font-size: 1rem;
  }
}

@media (min-width: 769px) {
  html {
    font-size: 16px;
  }
}

.badge-mobile {
  font-size: 0.625rem;
  padding: 0.25rem 0.5rem;
}

@media (min-width: 640px) {
  .badge-mobile {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }
}

.stat-card-mobile {
  padding: 0.5rem 0.75rem;
}

@media (min-width: 640px) {
  .stat-card-mobile {
    padding: 0.75rem 1.25rem;
  }
}

.grid-responsive {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 480px) {
  .grid-responsive {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 768px) {
  .grid-responsive {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .grid-responsive {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.text-responsive-h1 {
  font-size: 1.5rem;
  line-height: 1.3;
}

@media (min-width: 480px) {
  .text-responsive-h1 {
    font-size: 1.875rem;
  }
}

@media (min-width: 640px) {
  .text-responsive-h1 {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .text-responsive-h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .text-responsive-h1 {
    font-size: 3.75rem;
  }
}

.text-responsive-h2 {
  font-size: 1.25rem;
}

@media (min-width: 640px) {
  .text-responsive-h2 {
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) {
  .text-responsive-h2 {
    font-size: 1.875rem;
  }
}

.text-responsive-p {
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .text-responsive-p {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .text-responsive-p {
    font-size: 1.125rem;
  }
}

.card-responsive {
  padding: 1rem;
}

@media (min-width: 480px) {
  .card-responsive {
    padding: 1.25rem;
  }
}

@media (min-width: 768px) {
  .card-responsive {
    padding: 1.5rem;
  }
}

.flex-center-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .flex-center-mobile {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
}

.btn-responsive {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .btn-responsive {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .btn-responsive {
    padding: 0.75rem 2rem;
  }
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .hero-badges {
    gap: 0.75rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.625rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 480px) {
  .hero-badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
    gap: 0.375rem;
  }
}

@media (min-width: 640px) {
  .hero-badge {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
  }
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

@media (min-width: 480px) {
  .hero-stats {
    gap: 0.75rem;
  }
}

@media (min-width: 640px) {
  .hero-stats {
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .hero-stats {
    gap: 1.5rem;
  }
}

.hero-stat-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 480px) {
  .hero-stat-card {
    gap: 0.625rem;
    padding: 0.625rem 1rem;
  }
}

@media (min-width: 640px) {
  .hero-stat-card {
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
  }
}

.hero-stat-icon {
  width: 2rem;
  height: 2rem;
  padding: 0.375rem;
}

@media (min-width: 640px) {
  .hero-stat-icon {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
  }
}

.hero-stat-value {
  font-size: 1rem;
  font-weight: 700;
}

@media (min-width: 640px) {
  .hero-stat-value {
    font-size: 1.5rem;
  }
}

.hero-stat-label {
  font-size: 0.625rem;
}

@media (min-width: 640px) {
  .hero-stat-label {
    font-size: 0.75rem;
  }
}

.service-feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .service-feature-grid {
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .service-feature-grid {
    gap: 2rem;
  }
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .service-feature-item {
    gap: 0.75rem;
  }
}

.service-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .service-feature-icon {
    width: 3rem;
    height: 3rem;
  }
}

.service-feature-text {
  font-size: 0.75rem;
}

@media (min-width: 640px) {
  .service-feature-text {
    font-size: 0.875rem;
  }
}

.section-padding {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 480px) {
  .section-padding {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

@media (min-width: 640px) {
  .section-padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.hero-content-padding {
  padding-top: 7rem;
  padding-bottom: 2rem;
}

@media (min-width: 480px) {
  .hero-content-padding {
    padding-top: 8rem;
    padding-bottom: 2.5rem;
  }
}

@media (min-width: 640px) {
  .hero-content-padding {
    padding-top: 9rem;
    padding-bottom: 3rem;
  }
}

@media (min-width: 768px) {
  .hero-content-padding {
    padding-top: 10rem;
    padding-bottom: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-content-padding {
    padding-top: 12rem;
    padding-bottom: 5rem;
  }
}

.icon-responsive {
  width: 1rem;
  height: 1rem;
}

@media (min-width: 640px) {
  .icon-responsive {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.touch-action-manipulation {
  touch-action: manipulation;
}

@media (max-width: 768px) {
  button, a, input, select, textarea {
    min-height: 44px;
    min-width: 44px;
  }
  
  input, textarea, select {
    font-size: 16px;
  }
}

@media (hover: none) {
  .hover\:scale-105:hover {
    transform: none;
  }
  
  .hover\:-translate-y-1:hover {
    transform: none;
  }
}
