* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
} 
 
body { 
  font-family: 'Inter', Arial, sans-serif;
  background-color: #f8f9fa; 
  color: #2d3748; 
  line-height: 1.7; 
  text-align: justify;
} 
 
.container { 
  width: 90%; 
  max-width: 1200px; 
  margin: auto; 
} 
 
/* HEADER */ 
header { 
  background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%); 
  color: #fff; 
  padding: 0; 
  position: sticky; 
  top: 0; 
  z-index: 100; 
  box-shadow: 0 2px 20px rgba(0,0,0,0.15); 
} 
 
.header-top { 
  padding: 15px 0; 
  border-bottom: 1px solid rgba(255,255,255,0.1); 
} 
 
.header-flex { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  flex-wrap: wrap; 
  gap: 15px; 
} 
 
.logo h1 { 
  font-family: 'Playfair Display', Georgia, serif; 
  font-size: 14px; 
  font-weight: 700; 
  letter-spacing: 0.5px; 
} 
 
.logo .subtitle { 
  font-size: 12px; 
  opacity: 0.8; 
  font-weight: 400; 
  letter-spacing: 1px; 
  text-transform: uppercase; 
  margin-top: 2px; 
} 
 
nav { 
  padding: 12px 0; 
} 
 
nav ul { 
  list-style: none; 
  display: flex; 
  gap: 8px; 
  flex-wrap: wrap; 
  justify-content: center; 
} 
 
nav a { 
  color: #fff; 
  text-decoration: none; 
  font-weight: 500; 
  font-size: 14px; 
  padding: 8px 16px; 
  border-radius: 6px; 
  transition: all 0.3s ease; 
} 
 
nav a:hover { 
  background-color: rgba(255,255,255,0.15); 
} 
 
nav a.active { 
  background-color: #c9a962; 
  color: #1a2332; 
} 
 
/* HERO */ 
.hero { 
  background: linear-gradient(135deg, #1a2332 0%, #34495e 100%); 
  color: #fff; 
  padding: 80px 0; 
  position: relative; 
  overflow: hidden; 
} 
 
.hero-content { 
  display: flex; 
  align-items: center; 
  gap: 60px; 
  position: relative; 
  z-index: 1; 
} 
 
.hero-text { 
  flex: 1.2; 
} 
 
.hero-text h2 { 
  font-family: 'Inter', Arial, sans-serif;
  font-size: 42px; 
  margin-bottom: 24px; 
  line-height: 1.2; 
} 
 
.hero-text h2 span { 
  color: #c9a962; 
} 
 
.hero-text p { 
  font-size: 18px; 
  opacity: 0.9; 
  max-width: 500px; 
  margin-bottom: 30px; 
} 
 
.hero-btn { 
  display: inline-block; 
  background: #c9a962; 
  color: #1a2332; 
  padding: 14px 32px; 
  border-radius: 8px; 
  text-decoration: none; 
  font-weight: 600; 
  transition: all 0.3s ease; 
  box-shadow: 0 4px 15px rgba(201,169,98,0.3); 
} 
 
.hero-btn:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 6px 25px rgba(201,169,98,0.4); 
} 
 
.hero-image { 
  flex: 0.8; 
  text-align: center; 
} 
 
.hero-image img { 
  max-width: 320px; 
  width: 100%; 
  border-radius: 16px; 
  box-shadow: 0 20px 50px rgba(0,0,0,0.3); 
  border: 4px solid rgba(255,255,255,0.1); 
} 
 
/* STATS */ 
.stats { 
  background: #fff; 
  padding: 40px 0; 
  box-shadow: 0 4px 20px rgba(0,0,0,0.05); 
} 
 
.stats-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
  gap: 30px; 
  text-align: center; 
} 
 
.stat-item h3 { 
  font-family: 'Playfair Display', Georgia, serif; 
  font-size: 42px; 
  color: #c9a962; 
  margin-bottom: 8px; 
} 
 
.stat-item p { 
  font-size: 14px; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
  color: #666; 
} 
 
/* SECCIONES */ 
section { 
  background-color: #fff; 
  padding: 80px 0; 
} 
 
section.alt { 
  background-color: #f8f9fa; 
} 
 
.section-title { 
  font-family: 'Playfair Display', Georgia, serif; 
  font-size: 36px; 
  margin-bottom: 16px; 
  color: #1a2332; 
  text-align: center; 
} 
 
.section-subtitle { 
  text-align: center; 
  color: #666; 
  max-width: 600px; 
  margin: 0 auto 50px; 
} 
 
.container-flex { 
  display: flex; 
  gap: 60px; 
  align-items: center; 
} 
 
.container-flex.reverse { 
  flex-direction: row-reverse; 
} 
 
.container-text { 
  flex: 1.2; 
} 
 
.container-text h2 { 
  font-family: 'Playfair Display', Georgia, serif; 
  font-size: 32px; 
  margin-bottom: 20px; 
  color: #1a2332; 
} 
 
.container-text p { 
  margin-bottom: 16px; 
  color: #4a5568; 
} 
 
.container-image { 
  flex: 0.8; 
  text-align: center; 
} 
 
.container-image img { 
  max-width: 300px; 
  width: 100%; 
  border-radius: 16px; 
  box-shadow: 0 15px 40px rgba(0,0,0,0.12); 
} 
 
/* SERVICIOS */ 
.services-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 30px; 
} 
 
.service-card { 
  background: #fff; 
  padding: 40px 30px; 
  border-radius: 16px; 
  box-shadow: 0 5px 30px rgba(0,0,0,0.08); 
  transition: all 0.3s ease; 
  border: 1px solid #eee; 
} 
 
.service-card:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 15px 40px rgba(0,0,0,0.12); 
} 
 
.service-card h3 { 
  font-family: 'Playfair Display', Georgia, serif; 
  font-size: 22px; 
  margin-bottom: 15px; 
  color: #1a2332; 
} 
 
.service-card p { 
  color: #666; 
  font-size: 15px; 
} 
 
.service-icon { 
  width: 60px; 
  height: 60px; 
  background: linear-gradient(135deg, #c9a962, #dfc078); 
  border-radius: 12px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  margin-bottom: 20px; 
  font-size: 28px; 
} 
 
/* CTA */ 
.cta { 
  background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%); 
  color: #fff; 
  padding: 80px 20px; 
  text-align: center; 
} 
 
.cta h2 { 
  font-family: 'Playfair Display', Georgia, serif; 
  font-size: 36px; 
  margin-bottom: 16px; 
} 
 
.cta p { 
  opacity: 0.9; 
  margin-bottom: 30px; 
  font-size: 18px; 
} 
 
.cta a { 
  display: inline-block; 
  background: #c9a962; 
  color: #1a2332; 
  padding: 16px 40px; 
  border-radius: 8px; 
  text-decoration: none; 
  font-weight: 600; 
  font-size: 16px; 
  transition: all 0.3s ease; 
} 
 
.cta a:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 6px 25px rgba(201,169,98,0.4); 
} 
 
/* FOOTER */ 
footer { 
  background-color: #1a2332; 
  color: #fff; 
  padding: 50px 0 20px; 
} 
 
.footer-content { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
  gap: 40px; 
  margin-bottom: 40px; 
} 
 
.footer-col h4 { 
  font-family: 'Playfair Display', Georgia, serif; 
  font-size: 20px; 
  margin-bottom: 20px; 
  color: #c9a962; 
} 
 
.footer-col p, .footer-col a { 
  color: rgba(255,255,255,0.7); 
  font-size: 14px; 
  text-decoration: none; 
  display: block; 
  margin-bottom: 10px; 
  transition: color 0.3s; 
} 
 
.footer-col a:hover { 
  color: #c9a962; 
} 
 
.footer-bottom { 
  border-top: 1px solid rgba(255,255,255,0.1); 
  padding-top: 20px; 
  text-align: center; 
  font-size: 13px; 
  opacity: 0.7; 
} 
 
/* WHATSAPP */ 
.whatsapp-float { 
  position: fixed; 
  bottom: 25px; 
  right: 25px; 
  background: linear-gradient(135deg, #25d366, #128c7e); 
  color: #fff; 
  padding: 16px 24px; 
  border-radius: 50px; 
  font-weight: 600; 
  text-decoration: none; 
  box-shadow: 0 6px 25px rgba(37,211,102,0.4); 
  z-index: 1000; 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  transition: all 0.3s ease; 
} 
 
.whatsapp-float:hover { 
  transform: translateY(-3px); 
  box-shadow: 0 10px 35px rgba(37,211,102,0.5); 
} 
 
.whatsapp-float svg { 
  width: 24px; 
  height: 24px; 
} 
 
/* RESPONSIVE */ 
@media (max-width: 992px) { 
  .hero-content { 
    flex-direction: column; 
    text-align: center; 
  } 
 
  .hero-text p { 
    margin-left: auto; 
    margin-right: auto; 
  } 
 
  .container-flex, 
  .container-flex.reverse { 
    flex-direction: column; 
    text-align: center; 
  } 
} 
 
@media (max-width: 768px) { 
  .header-flex { 
    justify-content: center; 
    text-align: center; 
  } 
 
  .logo { 
    width: 100%; 
  } 
 
  nav ul { 
    justify-content: center; 
  } 
 
  nav a { 
    padding: 8px 12px; 
    font-size: 13px; 
  } 
 
  .hero { 
    padding: 50px 0; 
  } 
 
  .hero-text h2 { 
    font-size: 30px; 
  } 
 
  .hero-text p { 
    font-size: 16px; 
  } 
 
  .hero-image img { 
    max-width: 250px; 
  } 
 
  .section-title { 
    font-size: 28px; 
  } 
 
  section { 
    padding: 50px 0; 
  } 
 
  .whatsapp-float span { 
    display: none; 
  } 
 
  .whatsapp-float { 
    padding: 16px; 
    border-radius: 50%; 
  } 
} 
 
@media (max-width: 480px) { 
  .logo h1 { 
    font-size: 22px; 
  } 
 
  .hero-text h2 { 
    font-size: 26px; 
  } 
 
  .stat-item h3 { 
    font-size: 32px; 
  } 
 
  .cta h2 { 
    font-size: 26px; 
  } 
}

/* FAQ / ACCORDION */
.faq { 
  margin-top: 40px; 
}

.accordion-item {
  margin-bottom: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 18px 20px;
  background: #fff;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #1a2332;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: #f8f9fa;
}

.accordion-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-content p {
  padding: 0 20px 18px;
  color: #4a5568;
  line-height: 1.7;
}

/* PAGE INTRO */
.page-intro {
  background: linear-gradient(135deg, #1a2332 0%, #34495e 100%);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.page-intro h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  margin-bottom: 16px;
}

.page-intro p {
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
  font-size: 18px;
}

/* CONTENT SECTION */
.content-section {
  padding: 60px 0;
}

.content-section h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  color: #1a2332;
  margin-bottom: 16px;
}

.content-section p {
  color: #4a5568;
  margin-bottom: 16px;
}

.content-section ul {
  list-style: none;
  margin-bottom: 20px;
}

.content-section ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #4a5568;
}

.content-section ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #c9a962;
  font-weight: bold;
}


