/* styles.css */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Mulish', sans-serif;
  background: #fff;
}

.header {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.header-container {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1200px;
  max-width: 90%;
  padding: 0 40px;
  height: 90px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
}

.logo img {
  height: 60px;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  transition: color 0.2s ease;
}

.nav a.active {
  color: #F25822;
}

.nav a:hover {
  color: #F25822;
}

.cta {
  background: #F25822;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.cta:hover {
  background: #d94b18;
}

/* Responsive */
@media (max-width: 900px) {
  .header-container {
    flex-wrap: wrap;
    gap: 20px;
    height: auto;
    padding: 20px;
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .cta {
    width: 100%;
    text-align: center;
  }
}

/* === HERO SECTION === */
.hero {
  background: #f9f9f9 url('assets/pattern.png') center/cover no-repeat;
  padding: 0px 0;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 0 0px;
}

.hero-text {
  max-width: 600px;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #000;
  font-size: 18px;
  margin-bottom: 20px;
}

.hero-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid #F25822;
  border-radius: 50%;
  background: transparent;
}

.hero h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #000;
}

.hero p {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
}

.hero-image img {
  max-width: 500px;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .hero-text {
    max-width: 100%;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero p {
    font-size: 18px;
  }
  .hero-image img {
    max-width: 80%;
  }
}

/* === NEWSLETTER + BENEFICIOS === */
.newsletter-benefits {
  padding: 60px 0 80px;
  background: #fafafa;
}

.newsletter-benefits .container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* --- LEFT CARD --- */
.newsletter-card {
  flex: 1;
  background: #111;
  color: #fff;
  border-radius: 28px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.newsletter-card h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}

.newsletter-card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #eaeaea;
  margin-bottom: 28px;
}

.newsletter-form {
  display: flex;
  gap: 16px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid #fff;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 16px;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #aaa;
}

.newsletter-form button {
  padding: 14px 28px;
  background: #fff;
  color: #111;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}

.newsletter-form button:hover {
  background: #f25822;
  color: #fff;
}

/* --- RIGHT CARD --- */
.benefits-card {
  flex: 1;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
  padding: 48px 40px;
  display: flex;
  align-items: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #4b4b4b;
}

.benefit-item img {
  height: 50px;
  width: 50px;
  object-fit: contain;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .newsletter-benefits .container {
    flex-direction: column;
    gap: 32px;
  }

  .newsletter-card, .benefits-card {
    padding: 36px 28px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
/* === SOBRE NOSOTROS === */
.about {
  padding: 100px 0;
  background: #fff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}

/* Imagen izquierda */
.image-wrapper {
  position: relative;
  display: inline-block;
  border: 2px solid #F25822;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 12px 12px 0px #000;
}

.image-wrapper img {
  display: block;
  max-width: 400px;
  height: auto;
}

/* Texto derecha */
.about-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  margin-bottom: 16px;
}

.label-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #F25822;
  border-radius: 50%;
}

.about-text h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #000;
}

.about-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 540px;
}

/* Beneficios */
.about-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
  margin: 0;
}

.about-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
}

.benefit-icon img {
  width: 50px;
  height: 50px;
}

.benefit-icon.orange {
  background: #F25822;
}

.benefit-icon.white {
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.about-benefits h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #000;
}

.about-benefits p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
  max-width: 480px;
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .image-wrapper img {
    max-width: 90%;
  }

  .about-text {
    text-align: center;
  }

  .about-benefits li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* === ESTADÍSTICAS === */
.stats {
  background: #fff;
  padding: 80px 0;
}

.stats-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  align-items: center;
  gap: 60px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.stat-number .plus {
  color: #F25822;
  font-size: 36px;
  font-weight: 800;
  margin-left: 4px;
  line-height: 1;
}

.stat-label {
  margin-top: 8px;
  font-size: 16px;
  color: #6B6B6B;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .stat-number {
    font-size: 40px;
  }
  .stat-number .plus {
    font-size: 30px;
  }
}

@media (max-width: 600px) {
  .stats-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
/* === INTRO SERVICIOS === */
.services-intro {
  background: #f9f9fb url('assets/pattern.png') center/cover no-repeat;
  padding: 100px 0;
  text-align: center;
}

.services-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.services-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 18px;
}

.services-label .label-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #F25822;
  border-radius: 50%;
}

.services-container h2 {
  font-size: 36px;
  font-weight: 800;
  color: #000;
  margin-bottom: 12px;
}

.services-container p {
  font-size: 18px;
  color: #757575;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .services-container h2 {
    font-size: 28px;
  }

  .services-container p {
    font-size: 16px;
  }
}
/* === SOLUCIONES === */
.solutions {
  background: #f9f9fb url('assets/pattern.png') center/cover no-repeat;
  padding: 80px 0 100px;
}

.solutions-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.solution-card {
  background: #fff;
  border-radius: 24px;
  padding: 64px 28px 36px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.solution-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #000;
}

.solution-card p {
  font-size: 16px;
  line-height: 1.5;
  color: #666;
}

.icon-circle {
  width: 56px;
  height: 56px;
  background: #F25822;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -28px;
  left: 28px;
}

.icon-circle img {
  width: 57px;
  height: 57px;
  object-fit: contain;
}

/* Tarjeta naranja */
.orange-card {
  background: #F25822;
  color: #fff;
}

.orange-card h3 {
  color: #fff;
}

.orange-card p {
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .solutions-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .solutions-container {
    grid-template-columns: 1fr;
  }
  .icon-circle {
    left: 20px;
  }
}
/* === COMO FUNCIONA === */
.how-it-works {
  background: #fff;
  padding: 100px 0;
}

.how-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}

.how-image img {
  max-width: 500px;
  height: auto;
  display: block;
}

/* Texto */
.how-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  margin-bottom: 16px;
}

.label-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #F25822;
  border-radius: 50%;
}

.how-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
}

.how-content .intro {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 540px;
}

/* Timeline */
.timeline {
  list-style: none;
  position: relative;
  padding-left: 28px;
  margin: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 8px;
  width: 2px;
  height: calc(100% - 10px);
  border-left: 2px dashed #F25822;
}

.timeline li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
  position: relative;
}

.timeline .dot {
  width: 16px;
  height: 16px;
  background: #F25822;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  margin-top: 4px;
}

.timeline h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #000;
}

.timeline p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
  max-width: 500px;
}

/* Responsive */
@media (max-width: 900px) {
  .how-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .how-image img {
    max-width: 90%;
  }

  .how-content {
    text-align: left;
  }
}
/* === FAQ === */
.faq {
  background: #fff;
  padding: 100px 0;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.faq-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  margin-bottom: 16px;
}

.label-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #F25822;
  border-radius: 50%;
}

.faq-left h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 28px;
}

/* Accordion */
.accordion-item {
  background: #fff;
  border-radius: 50px;
     box-shadow: 0 6px 12px rgb(0 0 0 / 52%);
  margin-bottom: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 28px;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Mulish';
    font-weight: bold;
}

.accordion-header .arrow {
  font-size: 20px;
  color: #F25822;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header .arrow {
  transform: rotate(180deg);
}

.accordion-body {
  display: none;
  padding: 0 28px 20px;
  color: #555;
  font-size: 16px;
}

.accordion-item.active .accordion-body {
  display: block;
}

/* Right side */
.faq-right h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.faq-right p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.tips {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.tips li {
  font-size: 16px;
  color: #000;
  margin-bottom: 8px;
  position: relative;
  padding-left: 24px;
}

.tips li::before {
  content: "✔";
  color: #F25822;
  position: absolute;
  left: 0;
  top: 0;
}

hr {
  border: none;
  height: 1px;
  background: #e0e0e0;
  margin: 24px 0;
}

/* Contact */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-item img {
  width: 28px;
  height: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .faq-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* === FOOTER === */
.footer {
  background: #000;
  padding: 80px 0;
  color: #fff;
  font-family: 'Mulish', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr;
  gap: 60px;
}

/* Columna 1 */
.footer-about {
  background: #F25822;
  padding: 40px 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-about h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-about p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
}

.social-icons img {
  width: 25px;
  height: 25px;
}

/* Columna 2 */
.footer-contact h3,
.footer-app h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
}

.footer-contact li img {
  width: 18px;
  flex-shrink: 0;
}

/* Columna 3 */
.footer-app p {
  font-size: 15px;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-app .privacy {
  color: #F25822;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
}

.playstore img {
  width: 160px;
  height: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 700px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  .footer-about {
    margin-bottom: 20px;
  }
}

/* ===== Reset mínimo + fuente ===== */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:Mulish,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:#111}

/* ===== Variables y helpers ===== */
:root{
  --pp-orange:#F25822;
  --capsule-radius:44px;
  --shadow:0 10px 24px rgba(0,0,0,.06);
  --container:1200px;
}
/* offset para anclas (las secciones paran debajo del header) */
section, footer{scroll-margin-top:120px}



/* Nav (desktop) */
.nav{display:flex;align-items:center;justify-content:space-between;gap:24px}
.nav ul{list-style:none;display:flex;gap:36px;margin:0;padding:0}
.nav a{text-decoration:none;color:#000;font-weight:700}
.nav a.active,.nav a:hover{color:var(--pp-orange)}
.cta{
  text-decoration:none;background:var(--pp-orange);color:#fff;font-weight:800;
  padding:14px 24px;border-radius:999px;box-shadow:0 10px 22px rgba(242,88,34,.25)
}

/* Botón hamburguesa (oculto en desktop) */
.nav-toggle{
  display:none;margin-left:auto;width:44px;height:36px;background:#fff;border:1px solid #eee;border-radius:10px
}
.nav-toggle span{display:block;height:2px;background:#111;margin:7px 8px;border-radius:2px}

/* ===== Responsive ===== */
@media (max-width:1024px){
  .header-container{height:86px;padding:0 18px}
  .logo img{height:48px}
}
@media (max-width:900px){
  .nav-toggle{display:block}
  .nav{
    position:absolute;right:24px;top:calc(100% + 12px);
    display:none;flex-direction:column;align-items:stretch;gap:16px;
    width:min(92vw, 320px);background:#fff;border:1px solid #eee;border-radius:16px;padding:18px;box-shadow:var(--shadow)
  }
  .nav.open{display:flex}
  .nav ul{flex-direction:column;gap:14px}
  .nav a{padding:8px 0}
  .cta{width:100%;text-align:center;padding:12px 18px}
}

/* ===== Opcional: contenedores genéricos de secciones ===== */
.container,.hero-container,.about-container,.how-container,.solutions-container,.stats-container,.services-container,.faq-container{
  max-width:var(--container);margin:0 auto;padding:0 40px
}

/* (El resto de tus estilos de secciones puede ir debajo sin problemas) */
