* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #fff;
  color: #2d3748;
}

/* Barra superior */
.top-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #f8f8f8;
  color: #5a5a5a;
  font-size: 14px;
  padding: 6px 60px;
}

.top-bar div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar i {
  color: #78b65d;
}

/* === Responsive Top Bar === */
@media (max-width: 900px) {
  .top-bar {
    flex-direction: column; /* elementos en columna */
    padding: 10px 20px;
    font-size: 13px;
    gap: 8px;
  }

  .top-bar .btn {
    width: 100%; /* botón ocupa toda la línea */
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
  }

  .top-bar div {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .top-bar {
    font-size: 12px;
    padding: 8px 10px;
  }

  .top-bar .btn {
    font-size: 12px;
    padding: 6px 0;
  }
}


/* Barra principal */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: white;
  border-bottom: 1px solid #eee;
  
}




/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 200px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text h1 {
  color: #6abf6f;
  font-size: 26px;
  font-weight: 700;
}

.logo-text span {
  font-size: 15px;
  color: #888;
  font-weight: 400;
}

/* Menú */
.menu {
  display: flex;
  align-items: center;
  gap: 35px;
  font-weight: 600;
  font-size: 15px;
}

.menu a {
  text-decoration: none;
  color: #2b3a47;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #6abf6f;
}


/* Botón */
.btn {
  background-color: #5f916e;
  color: white;
  padding: 12px 26px;
  border-radius: 25px;
  border: none;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #4d7659;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
}

.content h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.btn {
  background: white;
  color: #1f8b4c;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.2rem;
  border: 2px solid #1f8b4c;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 120px;
}

.btn:hover {
  background: #1f8b4c;
  color: white;
}

.dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  opacity: 0.6;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  opacity: 1;
  background: #1f8b4c;
}

/* === Responsive Carrusel === */
@media (max-width: 900px) {
  .content h1 {
    font-size: 2rem; /* texto más pequeño */
  }

  .btn {
    padding: 12px 25px; /* botón más pequeño */
    font-size: 1rem;
    width: auto; /* ajustable */
    margin-left: 0; /* centrado */
  }
}

@media (max-width: 600px) {
  .content h1 {
    font-size: 1.5rem; /* texto aún más pequeño */
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

.services {
  padding: 80px 10%;
  background-color: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #1f8b4c;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 50px;
}

/* ===== CONTENEDOR DE CARDS ===== */
.cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

/* ===== TARJETAS ===== */
.card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 320px;
  height: 400px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card img {
  margin-top: 15px;
  width: 45%;
  height: 110px;
  object-fit: cover;
}

.card h3 {
  color: #1f8b4c;
  font-size: 1.4rem;
  margin: 15px 0 10px;
}

.card p {
  color: #444;
  font-size: 1rem;
  padding: 0 20px 25px;
  line-height: 1.5;
}

.about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  padding: 60px 10%;
  color: #333;
}

.tabs {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.tab {
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: bold;
  color: #888;
  cursor: pointer;
  transition: color 0.3s ease;
}

.tab.active {
  color: #1f8b4c;
  border-bottom: 3px solid #1f8b4c;
}

.tab-content {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
}

.tab-content.active {
  display: flex;
}

.content-text {
  flex: 1;
}

.content-image {
  flex: 1;
  text-align: right;
}

.content-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

.features {
  columns: 2;
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.features li {
  margin: 8px 0;
  color: #1f8b4c;
  font-weight: 500;
}

.why-item {
  margin-bottom: 20px;
}

.why-item h4 {
  color: #1f8b4c;
  margin-bottom: 5px;
}

.reasons-section {
  padding: 80px 10%;
  background-color: #fff;
  display: flex;
  justify-content: center;
}

.reasons-container {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
}

.reasons-images {
  flex: 1;
  display: grid;
  grid-template-columns: 0fr 1fr;
  gap: 20px;
}

.reason-img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.reasons-content {
  flex: 1;
  max-width: 500px;
}

.reasons-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #333;
}

.reasons-content h2 span {
  color: #3a8b4f; /* verde suave */
}

.reasons-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.reason-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}

.reason-item i {
  color: #3a8b4f;
  font-size: 1.2rem;
  margin-top: 5px;
}

.reason-item h3 {
  color: #222;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.reason-item p {
  color: #555;
  line-height: 1.5;
}

/* ✅ Responsive */
@media (max-width: 900px) {
  .reasons-container {
    flex-direction: column;
  }
  .reasons-images {
    grid-template-columns: 1fr;
  }
}

.testimonial-section {
  position: relative;
  background-image: url("img/fondo.jpg"); 
  background-size: cover;
  background-position: center;
  color: #333;
  text-align: center;
  padding-top: 80px;
}

.testimonial-overlay {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(3px);
  padding: 60px 20px;
}

.testimonial-section h2 {
  font-size: 2rem;
  color: #2a2a2a;
  margin-bottom: 20px;
  font-weight: 600;
}

.testimonial-text {
  font-style: italic;
  color: #444;
  max-width: 800px;
  margin: 0 auto 15px;
  line-height: 1.7;
}

.testimonial-author {
  color: #2e7d32;
  font-weight: 500;
}

.testimonial-author span {
  color: #1b5e20;
  font-weight: 600;
}

/* Parte inferior (estadísticas) */
.stats-section {
  display: flex;
  justify-content: center;
  gap: 60px;
  background: rgba(0, 0, 0, 0.5);
  padding: 50px 20px;
  color: #fff;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  flex: 1 1 200px;
}

.stat-item i {
  font-size: 2rem;
  color: #a8e6cf;
  margin-bottom: 10px;
}

.stat-item h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.stat-item p {
  color: #ddd;
}

/* Responsivo */
@media (max-width: 768px) {
  .stats-section {
    flex-direction: column;
    gap: 30px;
  }
}

/* === Section: Estimate === */
section.estimate {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 10%;
  gap: 60px;
  background-color: #fff;
}

/* === Left column (text) === */
.estimate-text {
  flex: 1;
  max-width: 500px;
}

.estimate-text h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.estimate-text h2 span {
  color: #3ca535;
}

.estimate-text h3 {
  font-size: 1.1rem;
  color: #444;
  font-weight: 600;
  margin-bottom: 15px;
}

.estimate-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 10px;
}

/* === Button === */
.btn-estimate {
  display: inline-flex;
  align-items: center;
  background-color: #3ca535;
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  cursor: pointer;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.btn-estimate:hover {
  background-color: #2e8b28;
}

.btn-estimate i {
  margin-right: 8px;
}

/* === Right column (images) === */
.estimate-images {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  flex: 1;
  max-width: 450px;
}

/* Contenedor individual de imagen + overlay */
.estimate-images .image-box {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.estimate-images img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* === Overlay efecto hover === */
.estimate-images .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #fff;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: 1rem;
  font-weight: 500;
  padding-bottom: 20px;
  border-radius: 10px;
  transition: opacity 0.4s ease;
}

/* Efecto al pasar el mouse */
.estimate-images .image-box:hover img {
  transform: scale(1.05);
}

.estimate-images .image-box:hover .overlay {
  opacity: 1;
}

/* === Responsive === */
@media (max-width: 900px) {
  section.estimate {
    flex-direction: column;
    text-align: center;
  }

  .estimate-images {
    max-width: 100%;
  }
}

/* === Section: Reason (Natural Cleaning) === */
section.reason {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 80px 10%;
  background-color: #f8f8f8;
}

/* Imagen a la izquierda */
.reason-image {
  flex: 1;
  max-width: 500px;
}

.reason-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Texto a la derecha */
.reason-text {
  flex: 1;
  max-width: 550px;
}

.reason-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #3ca535;
  margin-bottom: 15px;
}

.reason-text h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-top: 25px;
  margin-bottom: 10px;
}

.reason-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* === Responsive === */
@media (max-width: 900px) {
  section.reason {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 60px 5%;
  }

  .reason-image,
  .reason-text {
    max-width: 100%;
  }
}














/* === About Section (Image + Text) === */
.about-section {
  background-color: #f8f8f8;
  padding: 100px 10%;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* Imagen izquierda */
.about-image {
  flex: 1;
  overflow: hidden;
  border-radius: 10px;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  transition: transform 0.5s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

/* Texto derecha */
.about-text {
  flex: 1;
  color: #333;
}

.about-text h2 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #555;
}

/* === Responsive === */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    margin-top: 30px;
  }
}
/* === Values Section === */
.values-section {
  padding: 80px 10%;
  background-color: #fff;
}

.values-intro {
  text-align: center;
  color: #444;
  font-size: 0.95rem;
  margin-bottom: 50px;
}

/* Bloque 1 */
.values-block {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
}

.values-image {
  flex: 1;
}

.values-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.values-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.value-item i {
  font-size: 1.5rem;
  color: #3ca535;
  margin-top: 5px;
}

.value-item h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 6px;
}

.value-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Bloque 2 */
.guarantee-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.guarantee-text {
  flex: 1;
}

.guarantee-text h2 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.guarantee-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.guarantee-image {
  flex: 1;
  position: relative;
}

.guarantee-image img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.seal-overlay {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 140px;
  opacity: 0.7;
}

/* Botón reutilizado */
.btn-estimate {
  display: inline-flex;
  align-items: center;
  background-color: #3ca535;
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  cursor: pointer;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.btn-estimate:hover {
  background-color: #2e8b28;
}

.btn-estimate i {
  margin-right: 8px;
}

/* === Responsive === */
@media (max-width: 900px) {
  .values-block,
  .guarantee-block {
    flex-direction: column;
    text-align: center;
  }

  .values-text,
  .guarantee-text {
    order: 2;
  }

  .values-image,
  .guarantee-image {
    order: 1;
  }

  .seal-overlay {
    position: static;
    display: block;
    margin: 0 auto 20px;
  }
}
.why-hire-us {
  text-align: center;
  padding: 80px 20px;
}

.why-hire-us h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.why-hire-us .intro {
  color: #777;
  max-width: 600px;
  margin: 0 auto 60px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- GRID DE 3 COLUMNAS --- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-content: center;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.icon {
  font-size: 2.2rem;
  color: #2ecc71;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cards {
    grid-template-columns: 1fr;
  }
}


.our-services {
  text-align: center;
  padding: 80px 20px;
  background-color: #fff;
}

.our-services h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.our-services .intro {
  color: #666;
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === GRID DE SERVICIOS === */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* === CADA CARD === */
.service-card {
  background-color: transparent;
  text-align: center;
  transition: transform 0.3s ease;
}

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

/* Imagen circular */
.service-card img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.service-card h3 {
  color: #2c3e50;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: #666;
  max-width: 300px;
  margin: 0 auto;
  line-height: 1.5;
}

/* === Responsive === */
@media (max-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card img {
    width: 130px;
    height: 130px;
  }
}



.faq-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #222;
}

.faq-intro {
  text-align: center;
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.faq-category {
  margin-bottom: 50px;
}

.faq-category h3 {
  font-size: 1.5rem;
  color: #2e8b28;
  margin-bottom: 20px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  background: #f9f9f9;
  border: none;
  padding: 15px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f0f0f0;
}

.faq-answer {
  display: none;
  padding: 15px;
  background: #fff;
  font-size: 0.95rem;
  line-height: 1.6;
  border-left: 3px solid #00cc22;
}

.faq-item.active .faq-answer {
  display: block;
}




/* === Contact Section === */
.contact-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  padding: 100px 10%;
  background-color: #f8f8f8;
}

/* Información lateral izquierda */
.contact-info {
  flex: 1;
  max-width: 30%;
  color: #333;
}

.contact-info h2 {
  font-size: 1.8rem;
  color: #3ca535;
  margin-bottom: 10px;
}

.contact-info h3 {
  font-size: 1.2rem;
  margin-top: 25px;
  color: #444;
}

.contact-info p {
  font-size: 1rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 15px;
  margin: 10px 0 20px;
}

.social-links img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s;
}

.social-links img:hover {
  transform: scale(1.1);
}

.quote-text {
  margin-top: 25px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
}

/* Formulario */
.contact-form {
  flex: 2;
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  color: #3ca535;
  margin-bottom: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #3ca535;
}

.btn-submit {
  background: #3ca535;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: #2f7e28;
}

/* WhatsApp floating button */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.whatsapp-btn img {
  width: 35px;
  height: 35px;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* === Responsive === */
@media (max-width: 950px) {
  .contact-section {
    flex-direction: column;
    gap: 40px;
  }

  .contact-info {
    max-width: 100%;
    text-align: center;
  }

  .contact-form {
    width: 100%;
  }
}




.footer {
  background-color: #f4f6f5;
  padding: 60px 80px 30px;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 280px;
}

.footer-logo {
  width: 200px;
  margin-bottom: 20px;
}

.footer-col h3 {
  color: #2b3a3a;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  color: #496158;
  font-size: 1rem;
}

.contact-info li {
  font-size: 0.95rem;
}

.footer-btn {
  background-color: #58b475;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 25px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 15px;
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.15);
  transition: background 0.3s;
}

.footer-btn:hover {
  background-color: #4da76c;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
  font-size: 0.95rem;
  color: #555;
}

.social-icons a {
  color: #555;
  margin-left: 15px;
  font-size: 1.2rem;
  text-decoration: none;
}

.social-icons a:hover {
  color: #58b475;
}











/* ===== MENU HAMBURGUESA ===== 
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Animación del icono al abrir 
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === NAVBAR RESPONSIVE === 
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #2b3a47;
}

/* Ocultar el menú en móviles por defecto 
@media (max-width: 900px) {
  .top-bar {
    flex-direction: column;
    font-size: 12px;
    padding: 8px 20px;
  }

  .navbar {
    flex-wrap: wrap;
    padding: 15px 20px;
  }

  .logo img {
    height: 90px;
  }

  .menu {
    width: 100%;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    background-color: white;
    border-top: 1px solid #eee;
    padding: 15px 0;
    display: none;
  }

  .menu.active {
    display: flex;
  }

  .btn {
    margin: 0 auto;
  }

  .menu-toggle {
    display: block;
  }
}*/


/* === NAVBAR === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo img {
  height: 90px;
}

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

.menu a {
  text-decoration: none;
  color: #2b3a47;
  font-weight: 600;
}

/* === NAVBAR RESPONSIVE === */
.menu-toggle {
  display: none; /* oculto por defecto */
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background-color: #2b3a47;
  border-radius: 2px;
}

/* Media query para móviles */
@media (max-width: 900px) {
  .navbar {
    flex-wrap: wrap;
    padding: 15px 20px;
  }

  .logo img {
    height: 70px; /* tamaño ajustado para móviles */
  }

  .menu {
    width: 100%;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    background-color: white;
    border-top: 1px solid #eee;
    padding: 15px 0;
    display: none; /* oculto por defecto */
    transition: max-height 0.3s ease;
    overflow: hidden;
  }

  .menu.active {
    display: flex;
  }

  .menu-toggle {
    display: flex; /* mostrar toggle en móviles */
  }
}

/* Opcional: animación toggle abierta (hamburguesa a X) */
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
