* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; overflow-x: hidden; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; }
body { width: 100%; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

header {
  background: linear-gradient(135deg, #2c7a7b 0%, #285e61 100%);
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  width: 100%;
}
nav { display: flex; justify-content: space-between; align-items: center; width: 100%; flex-wrap: wrap; gap: 0.5rem; }
.logo { font-size: 1.5rem; font-weight: bold; }
nav ul { display: flex; list-style: none; gap: 2rem; flex-wrap: wrap; }
nav a { color: white; text-decoration: none; transition: opacity 0.3s; }
nav a:hover { opacity: 0.8; }

.breadcrumb { background: #f0f5f5; padding: 0.8rem 0; font-size: 0.9rem; }
.breadcrumb a { color: #2c7a7b; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: #888; margin: 0 0.4rem; }

.hero {
  position: relative;
  background: #2c7a7b;
  color: white;
  padding: 4rem 0;
  text-align: center;
  width: 100%;
  overflow: hidden;
  min-height: 380px;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('fondo-hero.jpg') center center no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(ellipse at center, rgba(44,122,123,0.30) 0%, rgba(40,94,97,0.55) 60%, rgba(40,94,97,0.70) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero h1 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: white;
  -webkit-text-stroke: 1px rgba(0,0,0,0.6);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero p {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  color: white;
  -webkit-text-stroke: 0.5px rgba(0,0,0,0.5);
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.hero-badges { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin: 2rem 0; }
.badge {
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  -webkit-text-stroke: 0.3px rgba(0,0,0,0.4);
}

.cta-button {
  display: inline-block;
  background: #4CAF50;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(76,175,80,0.4);
  font-size: 1.05rem;
  -webkit-text-stroke: 0.5px rgba(0,0,0,0.5);
}
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(76,175,80,0.5); }

.hero .texto-final {
  margin-top: 1.5rem;
  opacity: 0.95;
  font-size: 0.95rem;
  -webkit-text-stroke: 0.3px rgba(0,0,0,0.4);
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.content-section { padding: 4rem 0; background: white; width: 100%; }
.content-section.alt { background: #f8f9fa; }
.section-title { text-align: center; font-size: 2rem; margin-bottom: 1rem; color: #2c7a7b; }
.section-subtitle { text-align: center; color: #666; margin-bottom: 3rem; font-size: 1.1rem; }

.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.benefit-card { background: white; padding: 1.8rem; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
.benefit-card h3 { color: #2c7a7b; margin-bottom: 0.6rem; font-size: 1.15rem; }
.benefit-card p { color: #555; font-size: 0.95rem; }

.intro-text { max-width: 780px; margin: 0 auto 2rem; text-align: center; color: #444; font-size: 1.05rem; }

.related-services { padding: 3rem 0; background: white; text-align: center; }
.related-links { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.related-links a {
  background: #f0f5f5;
  color: #2c7a7b;
  padding: 0.7rem 1.4rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid #2c7a7b;
  transition: all 0.3s;
}
.related-links a:hover { background: #2c7a7b; color: white; }

.faq { padding: 4rem 0; background: #f8f9fa; width: 100%; }
.faq-item { background: white; padding: 1.5rem 2rem; margin-bottom: 1rem; border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); border-left: 4px solid #2c7a7b; }
.faq-item h3 { color: #2c7a7b; margin-bottom: 0.5rem; font-size: 1.1rem; }
.faq-item p { color: #555; }

.contact {
  position: relative;
  background: #285e61;
  padding: 4rem 0;
  color: white;
  text-align: center;
  width: 100%;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('fondo-hero.jpg') center center no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.contact::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(rgba(44,122,123,0.85), rgba(40,94,97,0.85));
  z-index: 1;
}
.contact .container { position: relative; z-index: 2; }
.contact h2 { font-size: 2rem; margin-bottom: 1rem; text-shadow: 0 2px 6px rgba(0,0,0,0.4); }
.contact p { margin-bottom: 1.5rem; }

footer { background: #1a3a3a; color: white; padding: 2rem 0; text-align: center; width: 100%; }
footer p { margin: 0.5rem 0; opacity: 0.85; }
footer a { color: #9fd8d9; text-decoration: none; }

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: white;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 9999;
  transition: all 0.3s;
  text-decoration: none;
  animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 38px; height: 38px; fill: white; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@media (max-width: 768px) {
  nav ul { gap: 0.8rem; font-size: 0.85rem; }
  .hero { padding: 3rem 0; min-height: auto; }
  .hero::after { background: linear-gradient(rgba(44,122,123,0.50), rgba(40,94,97,0.50)); }
  .hero h1 { font-size: 1.7rem; }
  .hero p { font-size: 1rem; }
  .container { padding: 0 15px; }
  .badge { font-size: 0.85rem; padding: 0.5rem 1rem; }
  .whatsapp-float { width: 55px; height: 55px; bottom: 20px; right: 20px; }
  .whatsapp-float svg { width: 32px; height: 32px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.4rem; }
  .section-title { font-size: 1.6rem; }
  nav ul { gap: 0.5rem; font-size: 0.75rem; }
  .logo { font-size: 1.2rem; }
}

