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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 2rem;
}
h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #059669;
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1000;
}

.skip-link:focus {
  top: 6px;
}

/* Focus styles */
*:focus-visible {
  outline: 2px solid #059669;
  outline-offset: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: none;
}

.btn:hover {
  transform: scale(1.05);
}

.btn-primary {
  background-color: #059669;
  color: white;
}

.btn-primary:hover {
  background-color: #047857;
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.3);
}

.btn-secondary {
  background-color: white;
  color: #059669;
}

.btn-secondary:hover {
  background-color: #f0fdf4;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background-color: white;
  color: #059669;
}

.btn-full {
  width: 100%;
  padding: 1rem;
  font-size: 1.125rem;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Header */
.header {
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

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

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #059669;
}

.nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: #059669;
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: white;
  padding: 5rem 0;
}

#hero .container {
  @media (min-width: 768px) {
    padding: 0 6rem;
    max-width: unset;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.hero-text {
  flex: 1;
  text-align: center;
}

.hero-logo {
  margin-bottom: 2rem;
}

.logo-image {
  margin: 0 auto 1.5rem;
  animation: bounce 3s infinite;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.text-accent {
  color: #a7f3d0;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #a7f3d0;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.hero-cards {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.hero-card-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  color: #a7f3d0;
}

.hero-card h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero-card p {
  font-size: 0.875rem;
  color: #a7f3d0;
  margin: 0;
}

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

@media (min-width: 1024px) {
  .hero-content {
    flex-direction: row;
    text-align: left;
  }

  .hero-text {
    text-align: left;
  }

  .hero-title {
    font-size: 3.75rem;
  }

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

  .hero-buttons {
    flex-direction: row;
    justify-content: flex-start;
  }

  .logo-image {
    margin-left: 0;
  }
}

/* Section Styles */
section {
  padding: 5rem 0;
}

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

.section-header h2 {
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.section-header p {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 48rem;
  margin: 0 auto;
}

/* About Section */
.about {
  background-color: #f9fafb;
}

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

.about-text h3 {
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.quote {
  background-color: #059669;
  color: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.quote:hover {
  background-color: #047857;
  transform: scale(1.05);
}

.quote p {
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0;
}

.about-values {
  display: grid;
  gap: 1.5rem;
}

.value-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #059669;
  transition: all 0.3s ease;
  cursor: pointer;
}

.value-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.value-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: #059669;
  margin-bottom: 1rem;
}

.value-card h4 {
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.value-card p {
  color: #6b7280;
  margin: 0;
}

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

/* Services Section */
.services {
  background-color: white;
}

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

.service-step {
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-step:hover {
  transform: scale(1.05);
}

.step-icon {
  background-color: #d1fae5;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.step-icon:hover {
  background-color: #a7f3d0;
}

.step-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: #059669;
}

.service-step h3 {
  color: #1f2937;
  margin-bottom: 1rem;
}

.service-step p {
  color: #6b7280;
  margin: 0;
}

.services-equipment {
  background-color: #f0fdf4;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.services-equipment:hover {
  background-color: #dcfce7;
}

.services-equipment h3 {
  text-align: center;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

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

.equipment-item {
  background: white;
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.equipment-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.equipment-item h4 {
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.equipment-item p {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
}

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

  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .equipment-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Process Section */
.process {
  background-color: #f9fafb;
}

.process-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.process-step:hover {
  transform: scale(1.05);
}

.process-icon {
  background-color: #059669;
  color: white;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process-step h3 {
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: #6b7280;
  margin: 0;
}

.process-timeline {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.process-timeline:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

.process-timeline h3 {
  color: #1f2937;
  margin-bottom: 1.5rem;
}

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

.timeline-item {
  border-left: 4px solid #059669;
  padding-left: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.timeline-item:hover {
  background-color: #f9fafb;
}

.timeline-item:nth-child(2) {
  border-left-color: #10b981;
}

.timeline-item:nth-child(3) {
  border-left-color: #34d399;
}

.timeline-item:nth-child(4) {
  border-left-color: #6ee7b7;
}

.timeline-item h4 {
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.timeline-item p {
  color: #6b7280;
  margin: 0;
}

.timeline-highlight {
  margin-top: 2rem;
  background-color: #f0fdf4;
  padding: 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.timeline-highlight:hover {
  background-color: #dcfce7;
}

.timeline-highlight p {
  color: #065f46;
  font-weight: 500;
  text-align: center;
  margin: 0;
}

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

/* Benefits Section */
.benefits {
  background-color: white;
}

.benefits-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.benefits-left,
.benefits-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.benefit-item {
  display: flex;
  gap: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.benefit-item:hover {
  transform: scale(1.05);
}

.benefit-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.benefit-icon-green {
  background-color: #dcfce7;
  color: #16a34a;
}

.benefit-icon-green:hover {
  background-color: #bbf7d0;
}

.benefit-icon-blue {
  background-color: #dbeafe;
  color: #2563eb;
}

.benefit-icon-blue:hover {
  background-color: #bfdbfe;
}

.benefit-icon-purple {
  background-color: #f3e8ff;
  color: #9333ea;
}

.benefit-icon-purple:hover {
  background-color: #e9d5ff;
}

.benefit-icon-orange {
  background-color: #fed7aa;
  color: #ea580c;
}

.benefit-icon-orange:hover {
  background-color: #fdba74;
}

.benefit-item h3 {
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.benefit-item p {
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.benefit-highlight {
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0;
}

.benefits-stats {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  border-radius: 1rem;
  padding: 2rem;
  color: white;
  transition: all 0.3s ease;
  cursor: pointer;
}

.benefits-stats:hover {
  transform: scale(1.05);
}

.benefits-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

.stat-item {
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: scale(1.1);
}

.stat-item h3 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: #a7f3d0;
  margin: 0;
}

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

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

/* Contact Section */
.contact {
  background-color: #f9fafb;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-form-section h3 {
  color: #1f2937;
  margin-bottom: 1.5rem;
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:hover,
.form-group textarea:hover {
  border-color: #059669;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.btn-loading {
  display: none;
}

.contact-info h3 {
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-style: normal;
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-item:hover {
  transform: scale(1.05);
}

.contact-icon {
  background-color: #d1fae5;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-icon:hover {
  background-color: #a7f3d0;
}

.contact-icon svg {
  color: #059669;
}

.contact-item h4 {
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.contact-item p,
.contact-item a {
  color: #6b7280;
  text-decoration: none;
  margin: 0;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #059669;
}

.contact-highlights {
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-highlights:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.contact-highlights h4 {
  color: #1f2937;
  margin-bottom: 1rem;
}

.contact-highlights ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-highlights li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  transition: color 0.3s ease;
}

.contact-highlights li:hover {
  color: #059669;
}

.highlight-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #059669;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

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

/* Footer */
.footer {
  background-color: #1f2937;
  color: white;
  padding: 3rem 0 1rem;
}

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

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

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

.footer-logo span {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-brand p {
  color: #9ca3af;
  margin: 0;
}

.footer-links h3 {
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links li {
  color: #9ca3af;
}

.footer-links button {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  text-align: left;
  padding: 0;
  transition: color 0.3s ease;
}

.footer-links button:hover {
  color: white;
}

.footer-contact h3 {
  margin-bottom: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
  margin-bottom: 0.75rem;
}

.footer-contact-item svg {
  flex-shrink: 0;
}

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

.footer-bottom p {
  color: #9ca3af;
  margin: 0;
}

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

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background-color: #25d366;
  color: white;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-btn:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  background-color: #1f2937;
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  white-space: nowrap;
  margin-right: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes bounceSlow {
  0%,
  20%,
  53%,
  80%,
  100% {
    transform: translateY(0);
  }
  40%,
  43% {
    transform: translateY(-10px);
  }
  70% {
    transform: translateY(-5px);
  }
  90% {
    transform: translateY(-2px);
  }
}

@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    transform: translateY(0);
  }
  40%,
  43% {
    transform: translateY(-15px);
  }
  70% {
    transform: translateY(-7px);
  }
  90% {
    transform: translateY(-3px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  will-change: transform, opacity;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.8s ease-out forwards;
  will-change: transform, opacity;
}

.animate-fade-in-right {
  animation: fadeInRight 0.8s ease-out forwards;
  will-change: transform, opacity;
}

.animate-bounce-slow {
  animation: bounceSlow 3s infinite;
  will-change: transform;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

.animation-delay-200 {
  animation-delay: 0.2s;
}

.animation-delay-300 {
  animation-delay: 0.3s;
}

.animation-delay-400 {
  animation-delay: 0.4s;
}

.animation-delay-600 {
  animation-delay: 0.6s;
}

.animation-delay-800 {
  animation-delay: 0.8s;
}

.animation-delay-900 {
  animation-delay: 0.9s;
}

/* Performance optimizations */
img {
  content-visibility: auto;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn-primary {
    background-color: #000000 !important;
    border: 2px solid #ffffff;
  }

  .hero {
    background: #000000 !important;
  }

  .text-accent {
    color: #ffffff !important;
  }
}

/* Print styles */
@media print {
  .no-print,
  .whatsapp-btn,
  .header {
    display: none !important;
  }

  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }
}
