/* Base Styles */
body {
  font-family: 'Inter', sans-serif;
  background-color: #f8f9fa;
  color: #2d3640;
  margin: 0; /* Remove default margin */
  padding: 0; /* Remove default padding */
  scroll-behavior: smooth;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 20px;
}

.section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Centered and Green Section Titles */
.section h2 {
  text-align: center;
  color: #28bf49;
  margin-bottom: 40px; /* Distancia uniforme entre el título y la tarjeta */
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 999;
}

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

.logo {
  max-width: 140px;
  height: auto;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #0f2d2a;
}

.menu {
  display: flex;
  align-items: center;
}

.menu a {
  margin-left: 20px;
  text-decoration: none;
  color: #0f2d2a;
  font-weight: 600;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #28bf49;
}

/* Hero Section */
.hero {
  width: 100%; /* Ensure the hero container spans the full width */
  margin: 0; /* Remove any default margins */
  padding: 0; /* Remove any default padding */
}

.hero-clean {
  margin-top: 80px; /* Space for the fixed nav */
  background: url("hero.png") no-repeat center center/cover;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero-cta-wide {
  background-color: #51f5ba;
  padding: 60px 20px;
  text-align: center;
  width: 100%; /* Ensure it spans the full width */
  margin: 0; /* Remove any default margins */
}

.hero-cta-wide p {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f2d2a;
}

/* CTA Button */
.btn-inverse {
  background-color: white;
  color: #0f2d2a;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-inverse:hover {
  background-color: #0f2d2a;
  color: white;
  border-color: white;
}

/* Services Section */
.services-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service {
  background-color: #0f2d2a;
  color: white;
  padding: 30px;
  border-radius: 12px;
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  transition: transform 0.2s ease;
}

.service:hover {
  transform: translateY(-5px);
}

.service h3 {
  margin: 0;
  color: #ffffff;
}

.service p {
  color: #d0e7dd;
  margin: 0;
  line-height: 1.7;
}

.btn-primary {
  background-color: #28bf49;
  border: none;
  padding: 12px 24px;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.btn-primary:hover {
  background-color: #0f2d2a;
}

/* Book a Visit Section */
#schedule {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* Contact Us Section */
#contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.visit-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 30px;
  width: 100%;
  max-width: 1000px;
  flex: 1;
}

.visit-card h3 {
  margin-top: 0;
  font-size: 1.4rem;
  color: #0f2d2a;
  text-align: center;
}

/* Calendly Embed */
.calendar-placeholder {
  background: #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: 650px;
}

.calendar-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact Card Specific Styles */
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-card form {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Floating Labels & Icons */
.form-group {
  position: relative;
  margin-bottom: 0;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 14px 14px 40px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  background-color: #f9f9f9;
  transition: border 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #28bf49;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(40, 191, 73, 0.3);
}

.form-group label {
  position: absolute;
  top: 14px;
  left: 40px;
  font-size: 0.95rem;
  color: #777;
  pointer-events: none;
  transition: all 0.2s ease;
  background: #f8f9fa;
  padding: 0 4px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 36px;
  font-size: 0.75rem;
  color: #0f2d2a;
}

.form-group .icon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  font-size: 1rem;
  color: #888;
}

/* Submit Button */
input[type="submit"] {
  background-color: #28bf49;
  color: white;
  font-weight: bold;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.1s ease;
  font-size: 1rem;
  align-self: center;
}

input[type="submit"]:hover {
  background-color: #0f2d2a;
  transform: scale(1.05);
}

/* Footer */
.footer {
  background-color: #2d3640;
  color: #fff;
  padding: 30px 20px;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-left p {
  margin: 5px 0;
}

.footer-left a {
  color: #ffffff;
  text-decoration: none;
}

.footer-left a:hover {
  color: #51f5ba;
}

.footer-right a {
  margin-left: 20px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-right a:hover {
  color: #51f5ba;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
	flex-wrap: wrap;
	justify-content: space-between;
  }

  .menu-toggle {
	display: block;
  }

  .menu {
	display: none;
	width: 100%;
	flex-direction: column;
	text-align: center;
	padding: 10px 0;
  }

  .menu.active {
	display: flex;
  }

  .menu a {
	margin: 10px 0;
  }

  .hero-clean {
	height: 40