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

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #FFE9E9;
}

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

/* Header Styles */
.header {
  background-color: rgba(255, 255, 255, 0);
  backdrop-filter: blur(3px);
  padding: 0rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

}

.logo img {
  width: 80px;
  height: 80px;
  margin-top: 10px;
}

.logo-text {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-text h1 {
  color: rgb(0, 0, 0);
  font-size: 1.2rem;
  line-height: 1.2;

}

.nav {
  display: flex;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #e74c3c;
}

.nav-position {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* Main Content */
.main {
  margin-top: 100px;
  min-height: calc(100vh - 100px);
}

.main.remove {
  margin-top: 0;
}

/* Buttons */
.btn-primary {
  background-color: #27ae60;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #219a52;
}

.btn-secondary {
  background-color: #e74c3c;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn-secondary:hover {
  background-color: #c0392b;
}

/* Form Styles */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #e74c3c;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row .form-group {
  flex: 1;
}

/* Footer */
.footer {
  background-color: #ffffff00;
  color: rgb(0, 0, 0);
  padding: 2rem 0;
  margin-top: 3rem;
  text-align: center;
  font-size: 26px;
}

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

.separador {
  position: relative;
  height: 200px;
  width: 3px;
  border-radius: 3px;
  background-color: rgb(14, 14, 14);
}

.contact-info h3,
.hours h3 {
  margin-bottom: 1rem;
  color: #000000;
  width: 100%;
  flex: 4;

}

.phone {
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    display: flex;
    position: absolute;
    top: 100%;
    background-color: rgb(255, 255, 255);
    flex-direction: column;
    padding: 1.2rem;
    gap: 1rem;
    width: 50%;
    right: -50%;
    border-radius:  20px 0 0 20px;
    transition:  all 0.3s ease-in-out;
    font-size: 30px
  }

  .mobile-menu-btn {
    display: flex;
  }

  .container {
    padding: 0 15px;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .form-row {
    flex-direction: column;
  }

  .separador {
    position: relative;
    height: 3px;
    width: 250px;
    border-radius: 3px;
    background-color: rgb(14, 14, 14);
  }

}

@media (max-width: 480px) {
  .logo-text h1 {
    font-size: 1rem;
  }

  .logo img {
    width: 50px;
    height: 50px;
  }
}

/* Desktop specific styles for home page header */
@media (min-width: 769px) {
  .home-page .header {
    background-color: transparent;
    backdrop-filter: none;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }

  .home-page .header .logo-text h1,
  .home-page .header .nav-link {
    color: white;
    transition: color 0.3s ease-in-out;
  }

  .home-page .header .nav-link.active {
      color: #e74c3c;
  }

  .home-page .header.scrolled {
    background-color: rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0;
    backdrop-filter: blur(3px);
  }

  .home-page .header.scrolled .logo-text h1,
  .home-page .header.scrolled .nav-link {
    color: black;
  }

  .home-page .header.scrolled .nav-link:hover,
  .home-page .header.scrolled .nav-link.active {
    color: #e74c3c;
  }
}

/* Mobile specific styles for home page header */
@media (max-width: 768px) {
  .home-page .header .logo-text h1 {
    color: white;
    transition: color 0.3s ease-in-out;
  }

  .home-page .header.scrolled .logo-text h1 {
    color: black;
  }
}