/** Shopify CDN: Minification failed

Line 84:72 Unterminated string token
Line 201:0 Expected ")" to go with "("

**/
/* === RESET BÁSICO === */
body, h1, h2, h3, h4, h5, p, ul, li, a {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  color: #333;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* === ESTILOS GENERALES === */
body {
  background: #f8fafc;
  line-height: 1.6;
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}
h1, h2 {
  color: #1d3557;
}
h3 {
  color: #457b9d;
}
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s ease;
}
.btn-primary {
  background: #1d3557;
  color: white;
}
.btn-primary:hover {
  background: #457b9d;
}
.btn-secondary {
  background: #a8dadc;
  color: #1d3557;
}
.btn-secondary:hover {
  background: #457b9d;
  color: #fff;
}

/* === HEADER === */
.site-header {
  background: white;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #eee;
}
.site-header .main-menu ul {
  display: flex;
  gap: 20px;
}
.site-header .btn {
  margin-left: 15px;
}
.contact-phone {
  font-weight: bold;
  color: #1d3557;
}

/* === HERO === */
.hero {
  background: url('{{ "hero.jpg" | asset_url }}) center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
}
.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}
.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

/* === BENEFICIOS === */
.benefits {
  background: #e9f5f6;
  padding: 60px 20px;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* === SERVICIOS === */
.services {
  padding: 60px 20px;
  text-align: center;
}
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.service-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* === PLANES === */
.pricing {
  background: #f1f8ff;
  padding: 60px 20px;
  text-align: center;
}
.pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.plan {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.plan.featured {
  border: 3px solid #1d3557;
}

/* === TESTIMONIOS === */
.testimonials {
  padding: 60px 20px;
  text-align: center;
}
.testimonial {
  background: white;
  margin: 20px auto;
  padding: 20px;
  border-radius: 12px;
  max-width: 600px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* === SOBRE NOSOTROS === */
.about-us {
  padding: 60px 20px;
  text-align: center;
}
.about-us img {
  max-width: 500px;
  border-radius: 12px;
  margin-top: 20px;
}

/* === CTA FINAL === */
.cta-final {
  background: #1d3557;
  color: white;
  text-align: center;
  padding: 80px 20px;
}
.cta-final .btn {
  margin-top: 20px;
}

/* === FOOTER === */
.site-footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 40px 20px;
}
.site-footer a {
  color: #a8dadc;
}
.site-footer .footer-links {
  margin: 15px 0;
}
