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

body {
  font-family: "Inter", sans-serif;
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
}

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

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #374151;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  height: 2.5rem;
  width: 2.5rem;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
}

.cta-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(to right, #06b6d4, #10b981);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: linear-gradient(to right, #0891b2, #059669);
}

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

/* Hero Section */
.hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, #000000, #111827);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(to right, rgba(6, 182, 212, 0.2), rgba(16, 185, 129, 0.2));
  color: #22d3ee;
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  width: fit-content;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.gradient-text {
  color: #22d3ee !important;
  display: block;
}

.hero-description {
  font-size: 1.125rem;
  color: #d1d5db;
  line-height: 1.6;
}

.hero-cta {
  padding: 1rem 2rem;
  background: linear-gradient(to right, #06b6d4, #10b981);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
}

.hero-cta:hover {
  background: linear-gradient(to right, #0891b2, #059669);
}

.hero-features {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1rem;
}

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

.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #4ade80;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.stats-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: #111827;
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid #374151;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatars {
  display: flex;
  margin-left: -0.5rem;
}

.avatar {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(to right, rgba(6, 182, 212, 0.3), rgba(16, 185, 129, 0.3));
  border-radius: 50%;
  border: 2px solid #111827;
  margin-left: -0.5rem;
}

.stats-number {
  font-weight: 500;
  font-size: 0.875rem;
  color: #ffffff;
}

.stats-label {
  font-size: 0.75rem;
  color: #9ca3af;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background: #111827;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .badge {
  margin: 0 auto 1rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-description {
  font-size: 1.125rem;
  color: #d1d5db;
  max-width: 32rem;
  margin: 0 auto;
}

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

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

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

.service-card {
  background: #000000;
  border: 1px solid #374151;
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 10px 15px -3px rgba(6, 182, 212, 0.2);
  border-color: rgba(6, 182, 212, 0.5);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(to right, rgba(6, 182, 212, 0.2), rgba(16, 185, 129, 0.2));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22d3ee;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(to right, #06b6d4, #10b981);
  color: white;
}

.service-icon svg {
  width: 2rem;
  height: 2rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.service-description {
  color: #d1d5db;
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: #d1d5db;
}

.service-features .check-icon {
  width: 1rem;
  height: 1rem;
  color: #4ade80;
  flex-shrink: 0;
}

/* About Section */
.about {
  padding: 5rem 0;
  background: #000000;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-description {
  font-size: 1.125rem;
  color: #d1d5db;
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 1.5rem 0;
}

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

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #22d3ee;
}

.stat-label {
  font-size: 0.875rem;
  color: #9ca3af;
}

.schedule-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
}

.clock-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #22d3ee;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background: #111827;
}

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

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

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

.testimonial-card {
  background: #000000;
  border: 1px solid #374151;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  width: 1rem;
  height: 1rem;
  color: #4ade80;
}

.testimonial-text {
  color: #d1d5db;
  margin-bottom: 1rem;
  line-height: 1.6;
}

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

.author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(to right, rgba(6, 182, 212, 0.3), rgba(16, 185, 129, 0.3));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  color: #22d3ee;
}

.author-name {
  font-weight: 500;
  font-size: 0.875rem;
  color: #ffffff;
}

.author-role {
  font-size: 0.75rem;
  color: #9ca3af;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background: #000000;
}

.contact-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: #111827;
  border: 1px solid #374151;
  border-radius: 0.75rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(to right, rgba(6, 182, 212, 0.2), rgba(16, 185, 129, 0.2));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22d3ee;
}

.contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

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

.contact-label {
  font-weight: 500;
  font-size: 0.875rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.contact-value {
  color: #d1d5db;
}

.whatsapp-section {
  padding-top: 1rem;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(to right, #06b6d4, #10b981);
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  background: linear-gradient(to right, #0891b2, #059669);
}

/* Footer */
.footer {
  background: #111827;
  border-top: 1px solid #374151;
  padding: 3rem 0;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo .logo {
  height: 2rem;
  width: 2rem;
}

.footer-description {
  font-size: 0.875rem;
  color: #9ca3af;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: #9ca3af;
}

.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

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

  .hero-cta,
  .whatsapp-button {
    width: 100%;
    justify-content: center;
  }

  .stats-card {
    position: static;
    margin-top: 1rem;
  }
}
