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

@font-face {
  font-family: 'CelsiusFlower';
  src: url('fonts/CelsiusFlower.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #333;
  scroll-behavior: smooth;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background: #2f4f4f;
  padding: 15px 40px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
  position: sticky;
  top: 0;
  z-index: 1000;
  margin-bottom: 0px;
}

.left-side {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: 0;
}

.logo {
  display: flex;
  align-items: center;
  font-family: 'CelsiusFlower', sans-serif;
  font-size: 50px;
  color: #f5f0e6;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.3s ease;
}
.logo-img {
  height: 50px;
  margin-right: 12px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #f5f0e6;
  font-weight: 500;
  font-size: 21px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.nav-links a:hover {
  transform: scale(1.1);
}

.nav-links li a {
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.nav-links li a:hover {
  transform: scale(1.1);
}

.hero {
  background: linear-gradient(to right, #c5d1c5, #e8ede8);
  padding: 320px 40px;
  text-align: center;
}

.hero h1 {
  font-family: 'Merriweather', serif;
  font-size: 55px;
  margin-bottom: 20px;
  color: #2f4f4f;
}

.poppins-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 30px;
  color: #555;
  margin-top: 10px;
}

.interactive-area {
  padding: 80px 100px;
  text-align: center;
}
main {
  flex: 1;
}

.main-display {
  background: #e5e3e3;
  padding: 50px;
  margin-bottom: 40px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
  transition: opacity 0.5s ease;
}

.two-column {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.text-content {
  flex: 1;
}

.image-content {
  flex: 1;
}

.image-content img {
  max-width: 450px;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.buttons-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.option-button {
  background: #fff;
  border: 1px solid #e1e1e1;
  padding: 24px;
  width: 260px;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, .1);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
}

.option-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

.features {
  padding: 80px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.feature-card {
  background: #e5e3e3;
  padding: 30px;
  width: 300px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

.feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

footer {
  padding: 20px 40px;
  text-align: center;
  background: #d3d2d2;
  font-size: 0.9rem;
  color: #777;
  margin-top: 0;
}

.pdf-container {
  display: flex;
  justify-content: center;
  margin: 20px auto 40px;
  padding: 0 20px;
}

.pdf-embed {
  width: 100%;
  max-width: 1000px;
  height: 80vh;
  border: none;
}

@media (max-width: 768px) {
  .buttons-area {
    flex-direction: column;
    align-items: center;
  }
  .pdf-embed {
    height: 70vh;
  }

  .two-column {
    flex-direction: column;
  }

  .image-content,
  .text-content {
    text-align: center;
  }
}
    .servicios-section {
  padding: 40px 40px;
  background-color: #f5f5f5;
  text-align: center;
}

.servicios-section h2 {
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  margin-bottom: 40px;
  color: #2f4f4f;
  text-align: center;
  margin-top: 0;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin: 0 auto 60px;
  max-width: 900px;
}

.servicio-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.servicio-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.servicio-card p {
  font-size: 1rem;
  color: #555;
}

.mini-servicios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.mini-servicio {
  background: #e5e3e3;
  padding: 20px;
  border-radius: 8px;
  font-size: 10 px ;
  color: #2f4f4f;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  font-weight: bold;
}

.logo:hover {
  transform: scale(1.1);
}

.faq-section {
  padding: 80px 40px 120px;
  background-color: #f5f5f5;
}

.faq-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.faq-title {
  flex: 1;
  min-width: 250px;
}

.faq-title h2 {
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  color: #2f4f4f;
}

.faq-content {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 300px;
}

.faq-item h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}
.faq-item {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}
.faq-item:nth-child(1) {
  animation-delay: 0.2s;
}
.faq-item:nth-child(2) {
  animation-delay: 0.4s;
}
.faq-item:nth-child(3) {
  animation-delay: 0.6s;
}
.faq-item:nth-child(4) {
  animation-delay: 0.8s;
}

@media (max-width: 768px) {
  .faq-container {
    flex-direction: column;
    gap: 40px;
  }

  .faq-title {
    text-align: center;
  }
}
.about-team {
  padding: 80px 40px 40px;
  background-color: #f5f5f5;
  text-align: center;
}

.about-team h2 {
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  color: #2f4f4f;
  margin-bottom: 50px;
}

.cofounders {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.co-card {
  background: #fff;
  padding: 30px;
  width: 260px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-family: 'Poppins', sans-serif;
}

.co-card h3 {
  font-size: 1.5rem;
  color: #2f4f4f;
  margin-bottom: 10px;
}

.co-card p {
  font-size: 1rem;
  color: #777;
}

.about-story {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.about-story h2 {
  font-family: 'Merriweather', serif;
  font-size: 2.5rem;
  color: #2f4f4f;
  margin-bottom: 30px;
  text-align: center;
}

.about-story p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}

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

.co-card {
  background: #fff;
  padding: 30px;
  width: 260px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-family: 'Poppins', sans-serif;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}


.cofounders .co-card:nth-child(1) {
  animation-delay: 0.2s;
}
.cofounders .co-card:nth-child(2) {
  animation-delay: 0.4s;
}
.servicios-grid .servicio-card:nth-child(1) {
  animation-delay: 0.2s;
}
.servicios-grid .servicio-card:nth-child(2) {
  animation-delay: 0.4s;
}
.servicios-grid .servicio-card:nth-child(3) {
  animation-delay: 0.6s;
}
.servicios-grid .servicio-card:nth-child(4) {
  animation-delay: 0.8s;
}
 /*original oclor: #bfd3c7 */
.contact-section {
  padding: 60px 40px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  background-color: #eef3ee;
  border-radius: 12px;
}

.contact-section h2 {
  font-family: 'Merriweather', serif;
  font-size: 2.5rem;
  color: #2f4f4f;
  margin-bottom: 40px;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  font-weight: 600;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  resize: none;
}

.contact-form button {
  background-color: #007BFF;
  color: white;
  padding: 14px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  align-self: center;
  width: 150px;
}

.contact-form button:hover {
  background-color: #0056b3;
}

body.contact-page {
  background-color: #eef3ee;
}
.mas-info-btn {
  display: inline-block;
  margin-top: 35px;
  padding: 8px 18px;
  background-color: #2f4f4f;
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.mas-info-btn:hover {
  background-color: #598d8d;
}
@keyframes fadeInButton {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mas-info-btn.animate {
  animation: fadeInButton 0.5s ease-out;
}

.cta-servicios {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.cta-button {
  white-space: nowrap;
  padding: 14px 28px;
  background-color: #2f4f4f;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #598d8d;
}
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #f5f0e6;
}
.navbar {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background: #2f4f4f;
  position: sticky;
  top: 0;
  z-index: 1000;
  gap: 40px;
  justify-content: space-between;
}


@media (max-width: 992px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #2f4f4f;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .left-side {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .right-side {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .servicios-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .mini-servicios-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 20px;
  }
}


.cta-header-button:hover {
  background-color: #3b9441;
  transform: scale(1.05);
}


.cta-header-button {
  background-color: #f5f0e6;
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1em;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  color: #2f4f4f;
}

.cta-header-button:hover {
  background-color: #dfe6df;
  transform: scale(1.05);
}

.cta-desktop {
  display: block;
}

.cta-mobile {
  display: none;
}

.cta-header-button.cta-desktop {
  margin-left: auto;
}

@media (max-width: 992px) {
  .right-side .cta-header-button {
    display: none;
  }
  .cta-desktop {
    display: none;
  }

  .cta-mobile {
    display: block;
    text-align: center;
    margin-top: 10px;
  }

  .cta-mobile a {
    display: inline-block;
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .cta-mobile a:hover {
    background-color: #3b9441;
    transform: scale(1.05);
  }

}

.contact-container {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
  justify-content: space-between;
}
/*#dbe6e1 COLOR VERDE*/

.contact-formulario {
  background-color: #bdd1c8;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1.5;
  min-width: 300px;
}
.contact-info {
  flex: 1;
  min-width: 250px;
  padding: 10px 10px 10px 25px;
  font-family: 'Poppins', sans-serif;
  border-left: 2px solid #ccc;
}


.contact-info h3 {
  margin-bottom: 20px;
  color: #2f4f4f;
  font-size: 1.3rem;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #333;
}

.contact-info i {
  margin-right: 10px;
  color: #2f4f4f;
  font-size: 1.1rem;
}

.contact-info a {
  text-decoration: none;
  color: #2f4f4f;
  display: flex;
  align-items: center;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #007BFF;
}








