@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

@layer base {
  :root {
    --background: 0 0% 100%;
    --foreground: 220 15% 15%;

    --card: 0 0% 100%;
    --card-foreground: 220 15% 15%;

    --popover: 0 0% 100%;
    --popover-foreground: 220 15% 15%;

    --primary: 215 85% 25%;
    --primary-foreground: 0 0% 100%;
    --primary-light: 215 85% 35%;
    --primary-dark: 215 85% 15%;

    --accent: 75 85% 55%;
    --accent-foreground: 220 15% 15%;
    --accent-light: 75 85% 65%;
    --accent-dark: 75 85% 45%;

    --secondary: 220 10% 95%;
    --secondary-foreground: 220 15% 15%;
    --muted: 220 10% 90%;
    --muted-foreground: 220 15% 45%;

    --surface: 220 20% 97%;
    --surface-alt: 220 15% 92%;
    
    --gradient-industrial: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-light)));
    --gradient-accent: linear-gradient(135deg, hsl(var(--accent)), hsl(var(--accent-light)));
    --gradient-surface: linear-gradient(180deg, hsl(var(--surface)), hsl(var(--surface-alt)));

    --shadow-industrial: 0 10px 30px -5px hsl(var(--primary) / 0.2);
    --shadow-accent: 0 5px 20px -5px hsl(var(--accent) / 0.3);
    --shadow-card: 0 4px 15px -2px hsl(220 15% 15% / 0.1);

    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;

    --border: 220 15% 88%;
    --input: 220 15% 88%;
    --ring: 215 85% 25%;

    --radius: 0.5rem;

    --sidebar-background: 0 0% 98%;
    --sidebar-foreground: 240 5.3% 26.1%;
    --sidebar-primary: 240 5.9% 10%;
    --sidebar-primary-foreground: 0 0% 98%;
    --sidebar-accent: 240 4.8% 95.9%;
    --sidebar-accent-foreground: 240 5.9% 10%;
    --sidebar-border: 220 13% 91%;
    --sidebar-ring: 217.2 91.2% 59.8%;
  }

  .dark {
    --background: 220 25% 8%;
    --foreground: 0 0% 95%;

    --card: 220 25% 10%;
    --card-foreground: 0 0% 95%;

    --popover: 220 25% 10%;
    --popover-foreground: 0 0% 95%;

    --primary: 215 85% 45%;
    --primary-foreground: 0 0% 100%;
    --primary-light: 215 85% 55%;
    --primary-dark: 215 85% 35%;

    --accent: 75 85% 60%;
    --accent-foreground: 220 25% 8%;
    --accent-light: 75 85% 70%;
    --accent-dark: 75 85% 50%;

    --secondary: 220 15% 15%;
    --secondary-foreground: 0 0% 95%;
    --muted: 220 15% 20%;
    --muted-foreground: 0 0% 65%;

    --surface: 220 20% 12%;
    --surface-alt: 220 15% 18%;

    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 210 40% 98%;

    --border: 220 15% 25%;
    --input: 220 15% 25%;
    --ring: 215 85% 45%;
    
    --sidebar-background: 240 5.9% 10%;
    --sidebar-foreground: 240 4.8% 95.9%;
    --sidebar-primary: 224.3 76.3% 48%;
    --sidebar-primary-foreground: 0 0% 100%;
    --sidebar-accent: 240 3.7% 15.9%;
    --sidebar-accent-foreground: 240 4.8% 95.9%;
    --sidebar-border: 240 3.7% 15.9%;
    --sidebar-ring: 217.2 91.2% 59.8%;
  }
}

@layer base {
  * {
    border-color: hsl(var(--border));
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: 'Poppins', sans-serif;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
  }

  a {
    color: inherit;
    text-decoration: none;
  }
}

@layer components {
  .industrial-gradient {
    background: var(--gradient-industrial);
  }
  
  .accent-gradient {
    background: var(--gradient-accent);
  }
  
  .surface-gradient {
    background: var(--gradient-surface);
  }
  
  .text-gradient {
    background: var(--gradient-industrial);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .industrial-shadow {
    box-shadow: var(--shadow-industrial);
  }
  
  .accent-shadow {
    box-shadow: var(--shadow-accent);
  }
  
  .card-shadow {
    box-shadow: var(--shadow-card);
  }
}

.main-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

.card {
  padding: 2em;
}

/*------------------------------------------------------------*/

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem; 
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: hsl(var(--background) / 0.95);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid hsl(var(--border));
}

.header-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;  
  padding-right: 1rem;
  
 
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-image {
  height: 2.5rem;
  width: auto;
}

.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: hsl(var(--primary));
  
  display: none;
}

.main-nav {
  display: none; 
}

.main-nav a {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.main-nav a:hover {
  color: hsl(var(--primary));
}

.icon {
  display: block;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem; 
}

.phone-link {
  display: none; 
  align-items: center;
  gap: 0.5rem;
  
  font-size: 0.875rem; 
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.phone-link:hover {
  color: hsl(var(--primary));
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius); 
  padding: 0.5rem 1rem;
  font-size: 0.875rem; 
  font-weight: 500;
  color: hsl(var(--primary-foreground));
  text-decoration: none;
  
  transition: opacity 0.2s ease-in-out;
}

.contact-button:hover {
  opacity: 0.9;
}

.contact-button .icon-mail {
  margin-right: 0.5rem;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: hsl(var(--primary) / 0.8);
}

.hero-content-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.hero-text-container {
  max-width: 48rem;
}

.hero-title {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  color: hsl(var(--primary-foreground));
  margin-bottom: 1.5rem;
}

.hero-highlight {
  color: hsl(var(--accent));
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: hsl(var(--primary-foreground) / 0.9);
  margin-bottom: 2rem;
}

.hero-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--primary-foreground));
  font-size: 0.95rem;
}

.check-icon {
  color: hsl(var(--accent));
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.btn-accent {
  color: hsl(var(--accent-foreground));
}

.btn-accent:hover {
  opacity: 0.9;
}

.hero-btn-icon {
  margin-left: 0.5rem;
  width: 1.25rem;
  height: 1.25rem;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid hsl(var(--primary-foreground));
  color: hsl(var(--primary-foreground));
}

.btn-outline:hover {
  background-color: hsl(var(--primary-foreground));
  color: hsl(var(--primary));
}

.scroll-indicator-container {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.mouse-outline {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid hsl(var(--primary-foreground));
  border-radius: 9999px;
  display: flex;
  justify-content: center;
}

.mouse-wheel {
  width: 0.25rem;
  height: 0.75rem;
  background-color: hsl(var(--accent));
  border-radius: 9999px;
  margin-top: 0.2rem;
  animation: float 1.5s infinite ease-in-out;
}

.animate-fade-in {
  opacity: 0;
  animation: fade-in 0.6s ease-out forwards;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateX(-50%) translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

.services-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: hsl(var(--surface));
}

.services-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-header p {
  font-size: 1.15rem;
  color: hsl(var(--muted-foreground));
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-card {
  background-color: hsl(var(--card));
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
  border: 0;
}

.service-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.card-image-container {
  position: relative;
  overflow: hidden;
}

.card-image-container img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.service-card:hover .card-image-container img {
  transform: scale(1.05);
}

.card-icon-wrapper {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: hsla(0, 0%, 100%, 0.6);
  backdrop-filter: blur(4px);
  padding: 0.75rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 15px -2px hsl(220 15% 15% / 0.1);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  color: hsl(var(--accent));
}

.card-header {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--primary));
  margin-bottom: 0.5rem;
  transition: color 0.3s ease-in-out;
}

.service-card:hover .card-title {
  color: hsl(var(--accent));
}

.card-description {
  color: hsl(var(--muted-foreground));
  font-size: 0.95rem;
  line-height: 1.5;
}

.card-content {
  flex-grow: 1;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
}

.bullet {
  width: 0.5rem;
  height: 0.5rem;
  background-color: hsl(var(--accent));
  border-radius: 50%;
  flex-shrink: 0;
}

.services-button-container {
  text-align: center;
  margin-top: 3rem;
}

.services-final-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--primary-foreground));
  text-decoration: none;
  transition: opacity 0.2s ease-in-out;
}

.services-final-button:hover {
  opacity: 0.9;
}

.about-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: hsl(var(--background));
}

.about-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.about-badge {
  display: inline-block;
  margin-bottom: 1rem;
  color: hsl(var(--accent));
  border: 1px solid hsl(var(--accent));
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.2;
}

.about-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-description {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-description:last-of-type {
  margin-bottom: 0;
}

.about-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.highlight-card {
  background-color: hsl(var(--card));
  border: 0;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow 0.3s ease-in-out;
}

.highlight-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.highlight-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.highlight-icon {
  width: 2rem;
  height: 2rem;
  color: hsl(var(--accent));
}

.highlight-title {
  font-weight: 600;
  color: hsl(var(--primary));
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.highlight-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
}

.results-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: hsl(var(--surface));
}

.results-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* O .section-header já foi definido, mas caso precise de ajuste: */
.results-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.results-section .section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
  line-height: 1.2;
}
.results-section .section-header p {
  font-size: 1.15rem;
  color: hsl(var(--muted-foreground));
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.stat-card {
  text-align: center;
  border: 0;
  background-color: hsl(var(--card));
  border-radius: var(--radius);
  transition: box-shadow 0.3s ease-in-out;
}

.stat-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.stat-card-content {
  padding: 1.5rem;
}

.stat-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.stat-icon {
  width: 2rem;
  height: 2rem;
  color: hsl(var(--accent));
}

.stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 0.25rem;
  line-height: 1;
}

.stat-label {
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.stat-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
}

.why-us-card {
  background-color: hsl(var(--card));
  border-radius: 1rem;
  padding: 2rem;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.why-us-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 1.5rem;
}

.why-us-description {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.benefit-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--accent));
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-text {
  color: hsl(var(--foreground));
  font-size: 1rem;
  line-height: 1.6;
}

.contact-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: hsl(var(--background));
}

.contact-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.contact-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.contact-section .section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
  line-height: 1.2;
}
.contact-section .section-header p {
  font-size: 1.15rem;
  color: hsl(var(--muted-foreground));
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.contact-channels-wrapper {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.channels-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 2rem;
  text-align: center;
}

.channels-list {
  display: flex;
  flex-direction: column;
}

.channel-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid hsl(var(--border));
}

.channel-item:first-child {
  border-top: 1px solid hsl(var(--border));
}

.channel-icon-wrapper {
  background-color: hsl(var(--accent) / 0.1);
  padding: 0.75rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.channel-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--accent));
}

.channel-content {
  flex-grow: 1;
}

.channel-title-item {
  font-weight: 600;
  color: hsl(var(--primary));
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.channel-text {
  color: hsl(var(--muted-foreground));
  font-size: 0.95rem;
  line-height: 1.5;
}

.special-support-box {
  background-color: hsl(var(--surface));
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  margin-top: 2rem;
}

.special-support-title {
  font-weight: 600;
  color: hsl(var(--primary));
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.special-support-text {
  color: hsl(var(--muted-foreground));
  font-size: 0.95rem;
  line-height: 1.5;
}

.site-footer-final {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.footer-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  height: 2.5rem;
  width: auto;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--primary-foreground));
}

.footer-description {
  color: hsl(var(--primary-foreground) / 0.8);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--primary-foreground));
}

.footer-icon {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--accent));
  flex-shrink: 0;
}

.footer-col-services h3,
.footer-col-info h3 {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: hsl(var(--primary-foreground));
}

.footer-service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.footer-service-list li {
  color: hsl(var(--primary-foreground) / 0.8);
}

.footer-info-title {
  font-weight: 500;
  color: hsl(var(--accent));
  margin-bottom: 0.5rem;
}

.footer-info-text {
  font-size: 0.875rem;
  color: hsl(var(--primary-foreground) / 0.8);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  line-height: 1.5;
}

.footer-separator {
  margin-top: 2rem;
  margin-bottom: 2rem;
  height: 1px;
  background-color: hsl(var(--primary-foreground) / 0.2);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-copyright {
  font-size: 0.875rem;
  color: hsl(var(--primary-foreground) / 0.8);
}

@media (min-width: 640px) {
  .logo-text {
    display: inline;
  }
  
  .phone-link {
    display: flex;
  }

  .hero-buttons {
    flex-direction: row;
  }

  .section-header h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .hero-title {
    font-size: 3.75rem;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-title {
    font-size: 2.25rem;
  }

  .results-section .section-header h2 {
    font-size: 2.25rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .why-us-card {
    padding: 3rem;
  }

  .why-us-grid {
    gap: 3rem;
  }

  .why-us-title {
    font-size: 1.875rem;
  }

  .contact-section .section-header h2 {
    font-size: 2.25rem;
  }

  .special-support-box {
     padding: 2rem;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 5rem;
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}