/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation Styles */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

.logo-img {
  height: 45px;
  width: auto;
  transition: transform 0.3s ease;
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
}

.nav-link {
  color: #2d3748;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 10px 20px;
  border-radius: 25px;
  position: relative;
}

.nav-link:hover {
  color: #fff;
  background: linear-gradient(135deg, #e53e3e 0%, #c41e3a 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(229, 62, 62, 0.3);
}

.nav-link.active {
  color: #e53e3e;
  font-weight: 700;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 20px;
  right: 20px;
  height: 3px;
  background: linear-gradient(135deg, #e53e3e 0%, #c41e3a 100%);
  border-radius: 2px;
  z-index: 10;
}

.nav-link.active:hover::after {
  background: #fff;
  opacity: 0.8;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.bar {
  width: 26px;
  height: 3px;
  background-color: #2d3748;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 3px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(45, 45, 45, 0.8) 50%, rgba(26, 26, 26, 0.8) 100%), url('attached_assets/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(229, 62, 62, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(229, 62, 62, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="60" height="60" fill="url(%23grid)"/></svg>');
  opacity: 0.4;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #e53e3e 0%, #c41e3a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
  animation: fadeInUp 0.8s ease;
  white-space: nowrap;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.hero-subtitle {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #f7fafc;
  animation: fadeInUp 1s ease;
  letter-spacing: -0.5px;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  color: #cbd5e0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  animation: fadeInUp 1.2s ease;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.4s ease;
}

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

/* Button Styles */
.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, #e53e3e 0%, #c41e3a 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(229, 62, 62, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(229, 62, 62, 0.4);
  background: linear-gradient(135deg, #c41e3a 0%, #a01729 100%);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-full {
  width: 100%;
}

/* Section Styles */
section {
  padding: 100px 0;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  color: #1a1a1a;
  position: relative;
  letter-spacing: -1px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #e53e3e 0%, #c41e3a 100%);
  border-radius: 2px;
}

/* Services Section */
.services {
  background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e53e3e 0%, #c41e3a 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

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

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  color: #e53e3e;
  background: linear-gradient(135deg, rgba(229, 62, 62, 0.1) 0%, rgba(196, 30, 58, 0.1) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #e53e3e 0%, #c41e3a 100%);
  color: #fff;
}

.service-icon svg {
  width: 30px;
  height: 30px;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.service-card p {
  color: #4a5568;
  line-height: 1.6;
  font-size: 0.9rem;
}

/* About Section */
.about {
  background: #ffffff;
}

.about-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem;
}

.about-text h2 {
  text-align: left;
  margin-bottom: 2rem;
}

.about-text h2::after {
  left: 0;
  transform: none;
}

.about-text p {
  font-size: 1.15rem;
  color: #4a5568;
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.expertise-list {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.expertise-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.expertise-number {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #e53e3e 0%, #c41e3a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.expertise-text {
  font-size: 1rem;
  color: #4a5568;
  font-weight: 600;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-logo {
  width: 100%;
  max-width: 350px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

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

/* Industry-Specific Solutions Section */
.solutions {
  background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
  position: relative;
}

.solutions-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #4a5568;
  margin-bottom: 4rem;
  margin-top: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.solution-card {
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  min-width: 0;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e53e3e 0%, #c41e3a 100%);
  border-radius: 20px 20px 0 0;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(229, 62, 62, 0.15);
}

.solution-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  color: #e53e3e;
  background: linear-gradient(135deg, rgba(229, 62, 62, 0.1) 0%, rgba(196, 30, 58, 0.1) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #e53e3e 0%, #c41e3a 100%);
  color: #fff;
}

.solution-icon svg {
  width: 30px;
  height: 30px;
}

.solution-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.solution-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.solution-list li {
  color: #4a5568;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.6;
  position: relative;
  padding-left: 1.2rem;
}

.solution-list li::before {
  content: '•';
  color: #e53e3e;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* Clients Section */
.clients {
  background: #ffffff;
  position: relative;
}

.clients-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #4a5568;
  margin-bottom: 4rem;
  margin-top: 1.5rem;
}

.clients-scroll-wrapper {
  overflow: hidden;
  margin-top: 3rem;
  padding: 20px 0;
  margin-bottom: 20px;
}

.clients-scroll-container {
  overflow: visible;
  position: relative;
}

.clients-scroll-track {
  display: flex;
  gap: 2.5rem;
  animation: scroll 30s linear infinite;
  width: fit-content;
}

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

.client-card {
  background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #e2e8f0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  min-width: 250px;
  flex-shrink: 0;
}

.client-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e53e3e 0%, #c41e3a 100%);
  border-radius: 18px 18px 0 0;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.client-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(229, 62, 62, 0.15);
  border-color: #e53e3e;
}

.client-logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
}

.client-logo-img {
  width: 100%;
  max-width: 150px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.9;
}

.client-card:hover .client-logo-img {
  transform: scale(1.08);
  opacity: 1;
  filter: grayscale(0);
}

.client-card:hover .client-logo {
  background: linear-gradient(135deg, #e53e3e 0%, #c41e3a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: scale(1.05);
}

.client-industry {
  font-size: 0.95rem;
  color: #718096;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Contact Section */
.contact {
  background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}

.contact-info h3 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.contact-info p {
  font-size: 1.15rem;
  color: #4a5568;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.1rem;
  color: #2d3748;
  padding: 1rem;
  background: #f7fafc;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: #fff;
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-method svg {
  width: 28px;
  height: 28px;
  color: #e53e3e;
  flex-shrink: 0;
}

.contact-email {
  color: #2d3748;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-email:hover {
  color: #e53e3e;
}

/* WhatsApp CTA Section */
.whatsapp-cta {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  padding: 4rem 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(34, 197, 94, 0.15);
  border: 2px solid #bbf7d0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.whatsapp-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
  }
}

.whatsapp-icon svg {
  width: 55px;
  height: 55px;
  color: #ffffff;
}

.whatsapp-cta h3 {
  font-size: 2rem;
  color: #166534;
  margin-bottom: 1rem;
  font-weight: 700;
}

.whatsapp-cta p {
  font-size: 1.1rem;
  color: #15803d;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 500px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  padding: 18px 40px;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  border: none;
  cursor: pointer;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #20bd5a 0%, #0f7a6e 100%);
}

.whatsapp-btn-icon {
  width: 24px;
  height: 24px;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
  color: #1a1a1a;
  padding: 4rem 0 2rem;
  border-top: 1px solid #e2e8f0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #e53e3e 0%, #c41e3a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}

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

.footer-brand p {
  color: #4a5568;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.footer-copyright {
  color: #718096 !important;
  font-size: 0.9rem !important;
  margin-top: 1rem !important;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
  font-weight: 700;
}

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

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #4a5568;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.footer-links a:hover {
  color: #e53e3e;
  padding-left: 5px;
}

.footer-contact p {
  color: #4a5568;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.footer-email {
  color: #4a5568;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-email:hover {
  color: #e53e3e;
}

.footer-whatsapp {
  display: inline-block;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.footer-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.footer-legal {
  margin: 1rem 0;
}

.privacy-policy {
  color: #4a5568;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.privacy-policy:hover {
  color: #e53e3e;
  border-bottom-color: #e53e3e;
}

.footer-social h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
  font-weight: 700;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #4a5568;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.social-link:hover {
  color: #e53e3e;
  transform: translateX(5px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}

.social-link.instagram:hover svg {
  color: #E4405F;
}

.social-link.linkedin:hover svg {
  color: #0077B5;
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero {
    background-attachment: scroll;
  }
  
  .hero-title {
    font-size: 3.5rem;
    white-space: normal;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .about-text h2 {
    text-align: center;
  }
  
  .about-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .expertise-list {
    justify-content: center;
  }
  
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .clients-scroll-track {
    gap: 2rem;
  }
  
  .client-card {
    min-width: 200px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .footer-brand h3 {
    font-size: 1.8rem;
  }
  
  .social-links {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: #ffffff;
    width: 100%;
    text-align: center;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
    gap: 0;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-item {
    margin: 0.5rem 0;
  }
  
  .nav-link {
    display: block;
    padding: 1rem 2rem;
    width: 100%;
  }
  
  .hero {
    padding: 160px 0 160px;
    min-height: auto;
    background-attachment: scroll;
  }
  
  .hero-content {
    padding: 0 20px;
  }
  
  .hero-title {
    font-size: 2.5rem;
    white-space: normal;
    line-height: 2;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
  }
  
  .expertise-list {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .solution-card {
    padding: 2rem 1.5rem;
  }
  
  .clients-scroll-track {
    gap: 1.5rem;
  }
  
  .client-card {
    min-width: 180px;
    padding: 2rem 1.5rem;
  }
  
  .whatsapp-cta {
    padding: 3rem 2rem;
  }
  
  .whatsapp-cta h3 {
    font-size: 1.6rem;
  }
  
  .whatsapp-cta p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 20px;
  }
  
  .hero {
    padding: 200px 0 150px;
    background-attachment: scroll;
  }
  
  .hero-content {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
    letter-spacing: -0.5px;
    white-space: normal;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .hero-buttons {
    gap: 1rem;
  }
  
  .btn {
    padding: 14px 30px;
    font-size: 0.95rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
  }
  
  .whatsapp-cta {
    padding: 2.5rem 1.5rem;
  }
  
  .whatsapp-icon {
    width: 80px;
    height: 80px;
  }
  
  .whatsapp-icon svg {
    width: 45px;
    height: 45px;
  }
  
  .btn-whatsapp {
    padding: 15px 30px;
    font-size: 1rem;
  }
  
  .about-logo {
    max-width: 250px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  
  .social-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #e53e3e 0%, #c41e3a 100%);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #c41e3a 0%, #a01729 100%);
}