/* ============================= */
/* NAVBAR CORPORATIVO RESTIFY */
/* ============================= */

.custom-navbar {
  background-color: #FFFFFF;
  padding: 18px 0;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08); /* sombra oficial */
  z-index: 1000;
}

/* Logo */
.brand-text {
  color: #0F172A;
  font-weight: 600;
  letter-spacing: -0.3px;
}

/* Links */
.custom-link {
  color: #1E293B;
  font-weight: 500;
  transition: color 0.2s ease;
}

.custom-link:hover {
  color: #0F172A;
}

/* Bot車n principal */
.btn-primary-custom {
  background-color: #16A34A;
  color: #FFFFFF;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  transition: all 0.2s ease;
}

.btn-primary-custom:hover {
  background-color: #15803D;
  transform: translateY(-1px);
}

/* Navbar al hacer scroll (opcional pro) */
.navbar-scrolled {
  padding: 12px 0;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
}

/* ============================= */
/* HERO SECTION RESTIFY */
/* ============================= */

.hero-section {
  background-color: #0F172A; /* Azul profundo oficial */
  padding-top: 120px;
  padding-bottom: 100px;
  position: relative;
}

/* T赤tulos */
.hero-section h1 {
  color: #FFFFFF;
  font-weight: 700;
  letter-spacing: -1px;
}

.hero-section h1.text-800 {
  color: #E2E8F0;
  font-weight: 500;
}

/* P芍rrafo */
.hero-section p {
  color: #CBD5E1;
  font-size: 16px;
  line-height: 1.6;
}

/* Imagen dashboard */
.img-landing-banner img {
  border-radius: 14px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

/* Card simulador */
.hero-section .card {
  border: none;
  border-radius: 14px;
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08); /* usamos tu sombra oficial */
}

/* Inputs */
.hero-section .form-control {
  border-radius: 8px;
  border: 1px solid #E2E8F0;
  padding: 10px 14px;
}

.hero-section .form-control:focus {
  border-color: #16A34A;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}

/* Bot車n principal */
.btn-hero-primary {
  background-color: #16A34A;
  color: #FFFFFF;
  border-radius: 10px;
  font-weight: 600;
  padding: 12px;
  border: none;
  transition: all 0.2s ease;
}

.btn-hero-primary:hover {
  background-color: #15803D;
  transform: translateY(-1px);
}

/* CTA interno elegante */
.hero-section .bg-light {
  background-color: #F8FAFC !important;
  border: 1px solid #E2E8F0;
}
/* ============================= */
/* HOW IT WORKS SECTION */
/* ============================= */

.how-section {
  background-color: #F8FAFC; /* gris ultra elegante */
  padding-top: 100px;
  padding-bottom: 100px;
}

/* T赤tulo */
.how-section h2 {
  color: #0F172A;
  font-weight: 800;
  letter-spacing: -0.5px;
}

/* Subt赤tulo */
.how-section p.section-subtitle {
  color: #1E293B;
  opacity: 0.75;
  font-size: 16px;
}

/* Cards */
.card-fintech {
  background-color: #FFFFFF;
  border-radius: 14px;
  border: 1px solid #E2E8F0;
  transition: all 0.25s ease;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.card-fintech:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

/* T赤tulo card */
.card-fintech h5 {
  color: #0F172A;
  font-weight: 600;
}

/* Texto card */
.card-fintech p {
  color: #1E293B;
  opacity: 0.75;
  font-size: 14px;
}

/* CTA secci車n */
.btn-saas-primary {
  display: inline-block;
  background-color: #16A34A;
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-saas-primary:hover {
  background-color: #15803D;
  transform: translateY(-2px);
}
/* ============================= */
/* PRICING SECTION */
/* ============================= */

.pricing-section {
  background-color: #FFFFFF;
  padding-top: 100px;
  padding-bottom: 100px;
}

/* Card principal */
.card-pricing {
  background-color: #F8FAFC;
  border-radius: 18px;
  border: 1px solid #E2E8F0;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.card-pricing:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

/* T赤tulo */
.pricing-title {
  color: #0F172A;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.highlight {
  color: #16A34A;
}

/* Texto */
.pricing-section p {
  color: #1E293B;
  opacity: 0.85;
}

/* Lista */
.pricing-section ul {
  padding-left: 18px;
  color: #1E293B;
}

.pricing-section ul li {
  margin-bottom: 8px;
}

/* Bot車n */
.btn-pricing-primary {
  display: inline-block;
  background-color: #16A34A;
  color: #FFFFFF;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-pricing-primary:hover {
  background-color: #15803D;
  transform: translateY(-2px);
}
/* ============================= */
/* PLAN PRO DESTACADO */
/* ============================= */

.pricing-pro {
  background-color: #FFFFFF;
  padding-top: 60px;
  padding-bottom: 100px;
}

/* Card Pro destacada */
.card-pro {
  background-color: #0F172A; /* Azul profundo */
  color: #FFFFFF;
  border: none;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.18);
}

.card-pro .pricing-title {
  color: #FFFFFF;
}

.card-pro p {
  color: #CBD5E1;
  opacity: 1;
}

.card-pro ul {
  color: #E2E8F0;
}

.card-pro ul li {
  margin-bottom: 10px;
}

/* Badge opcional */
.card-pro::before {
  content: "Más popular";
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #16A34A;
  color: #FFFFFF;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 20px;
  font-weight: 600;
}
/* ============================= */
/* PLAN BUSINESS */
/* ============================= */

.pricing-business {
  background-color: #F8FAFC;
  padding-top: 60px;
  padding-bottom: 120px;
}

/* Card Business */
.card-business {
  background-color: #FFFFFF;
  border-radius: 18px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.07);
  transition: all 0.3s ease;
}

.card-business:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.1);
}

/* T赤tulo Business */
.highlight-business {
  color: #0F172A;
  font-weight: 700;
}

/* Texto */
.card-business p {
  color: #1E293B;
  opacity: 0.9;
}

/* Lista */
.card-business ul {
  color: #1E293B;
}

/* Bot車n Business (outline elegante) */
.btn-business {
  display: inline-block;
  background-color: transparent;
  color: #0F172A;
  border: 2px solid #0F172A;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-business:hover {
  background-color: #0F172A;
  color: #FFFFFF;
}
/* ============================= */
/* FINANCIAL CONTROL SECTION */
/* ============================= */

.fintech-section {
  background-color: #F8FAFC;
  padding-top: 100px;
  padding-bottom: 100px;
}

/* T赤tulo principal */
.fintech-title {
  color: #0F172A;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.fintech-subtitle {
  color: #334155;
  opacity: 0.8;
  font-size: 18px;
}

/* Card Antes */
.card-before {
  background: linear-gradient(180deg, rgba(220,38,38,0.05), rgba(220,38,38,0.02));
  border: 1px solid rgba(220,38,38,0.15);
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.04);
}

/* Card Despu谷s */
.card-after {
  background: linear-gradient(180deg, rgba(22,163,74,0.08), rgba(22,163,74,0.03));
  border: 1px solid rgba(22,163,74,0.2);
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.04);
}

/* M谷tricas */
.metric-card {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  transition: all 0.25s ease;
}

.metric-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15,23,42,0.08);
}

.metric-icon {
  font-size: 22px;
  color: #16A34A;
}

/* Mini dashboard */
.mini-dashboard {
  background-color: #FFFFFF;
  border-radius: 18px;
  border: 1px solid #E2E8F0;
  padding: 40px;
}

/* CTA final */
.fintech-cta {
  padding-top: 80px;
  padding-bottom: 80px;
}

.btn-fintech {
  background-color: #16A34A;
  color: #FFFFFF;
  border-radius: 12px;
  padding: 16px 40px;
  font-weight: 600;
  transition: all 0.2s ease;
  border: none;
}

.btn-fintech:hover {
  background-color: #15803D;
  transform: translateY(-3px);
}
/* ============================= */
/* TESTIMONIALS SECTION */
/* ============================= */

.testimonials-section {
  background-color: #F8FAFC;
  padding-top: 100px;
  padding-bottom: 100px;
}

/* T赤tulo */
.testimonials-title {
  color: #0F172A;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.testimonials-subtitle {
  font-size: 18px;
  color: #334155;
  opacity: 0.8;
}

/* Cards de restaurantes */
.testimonial-card {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 35px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(15,23,42,0.04);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(15,23,42,0.08);
}

/* M谷trica destacada */
.metric-highlight {
  color: #16A34A;
  font-weight: 800;
  font-size: 22px;
}

/* Testimonio grande */
.featured-testimonial {
  background: linear-gradient(
    180deg,
    rgba(22,163,74,0.08),
    rgba(22,163,74,0.03)
  );
  border: 1px solid rgba(22,163,74,0.2);
  border-radius: 22px;
  padding: 60px;
  box-shadow: 0 20px 60px rgba(15,23,42,0.06);
}

.featured-testimonial h4 {
  font-weight: 700;
  line-height: 1.5;
  color: #0F172A;
}

.featured-testimonial p {
  color: #475569;
  opacity: 0.85;
}

/* CTA */
.testimonials-cta-title {
  color: #0F172A;
  font-weight: 800;
}

.btn-testimonials {
  background-color: #16A34A;
  color: #FFFFFF;
  border-radius: 12px;
  padding: 16px 40px;
  font-weight: 600;
  border: none;
  transition: all 0.2s ease;
}

.btn-testimonials:hover {
  background-color: #15803D;
  transform: translateY(-3px);
}
/* ============================= */
/* BUSINESS TYPES SECTION */
/* ============================= */

.business-types-section {
  background-color: #FFFFFF;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}

/* T赤tulo */
.business-types-title {
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.5px;
}

.business-types-text {
  color: #334155;
  opacity: 0.85;
  font-size: 18px;
  line-height: 1.7;
}

/* Bot車n ver todos */
.btn-view-all {
  font-weight: 600;
  color: #16A34A;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-view-all:hover {
  color: #15803D;
  transform: translateX(4px);
}

/* Cards circulares */
.food-type-card {
  background: #F8FAFC;
  border-radius: 50%;
  padding: 18px;
  border: 1px solid #E2E8F0;
  transition: all 0.3s ease;
  text-align: center;
}

.food-type-card img {
  border-radius: 50%;
  transition: transform 0.4s ease;
}

.food-type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15,23,42,0.08);
}

.food-type-card:hover img {
  transform: scale(1.08);
}

/* Nombre categor赤a */
.food-type-title {
  font-weight: 700;
  margin-top: 12px;
  color: #0F172A;
}
/* ============================= */
/* FINAL CTA SECTION */
/* ============================= */

.cta-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #0F172A 0%, #111827 100%);
  overflow: hidden;
  text-align: center;
}

/* Glow suave verde */
.cta-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(22,163,74,0.15) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  z-index: 0;
}

/* Contenido encima */
.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  color: #FFFFFF;
  font-weight: 800;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.cta-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 40px;
}

/* Bot車n principal */
.btn-cta-primary {
  background: #16A34A;
  color: #FFFFFF;
  padding: 16px 40px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  transition: all 0.25s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-cta-primary:hover {
  background: #15803D;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(22,163,74,0.35);
}
/* ============================= */
/* FOOTER SECTION */
/* ============================= */

.footer-section {
  background: #0B1220;
  padding-top: 100px;
  padding-bottom: 40px;
  color: #94A3B8;
}

.footer-title {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-link {
  color: #94A3B8;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: all 0.2s ease;
  font-size: 14px;
}

.footer-link:hover {
  color: #16A34A;
  transform: translateX(4px);
}

.footer-newsletter-title {
  color: #FFFFFF;
  font-weight: 700;
}

.footer-newsletter-sub {
  color: #94A3B8;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-input {
  background: #111827;
  border: 1px solid #1F2937;
  color: #FFFFFF;
  border-radius: 10px;
  padding: 12px 16px;
  width: 100%;
}

.footer-input::placeholder {
  color: #64748B;
}

.footer-btn {
  background: #16A34A;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  color: #FFFFFF;
  font-weight: 600;
  transition: 0.2s ease;
}

.footer-btn:hover {
  background: #15803D;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid #1F2937;
  margin-top: 60px;
  padding-top: 20px;
  font-size: 13px;
  color: #64748B;
}
/* ============================= */
/* FOOD TYPE CARDS */
/* ============================= */

.food-type-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.food-type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.food-img-wrapper {
  background: #F8FAFC;
  width: 120px;
  height: 120px;
  margin: 0 auto 20px auto;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.food-type-card:hover .food-img-wrapper {
  background: #ECFDF5;
}

.food-img {
  max-width: 70px;
  height: auto;
}

.food-type-title {
  font-size: 16px;
  font-weight: 600;
  color: #0F172A;
  margin: 0;
}
.fintech-section-redesign {
  padding: 100px 0;
  background: #F8FAFC;
}

/* T赤tulos */
.fintech-main-title {
  font-size: 42px;
  font-weight: 800;
  color: #0F172A;
}

.fintech-subtitle {
  color: #64748B;
  max-width: 600px;
  margin: auto;
}

/* Compare Cards */
.fintech-compare-card {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.fintech-compare-card.after {
  border: 2px solid #16A34A;
}

.compare-header {
  font-weight: 700;
  margin-bottom: 20px;
}

.compare-list {
  padding-left: 20px;
  color: #475569;
}

.compare-result {
  margin-top: 20px;
  font-weight: 700;
}

.negative {
  color: #DC2626;
}

.positive {
  color: #16A34A;
}

/* KPI */
.kpi-card {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.kpi-card h2 {
  font-size: 36px;
  font-weight: 800;
  color: #16A34A;
}

/* Dashboard */
.fintech-dashboard {
  background: #0F172A;
  padding: 60px;
  border-radius: 24px;
  color: #FFFFFF;
  margin-top: 80px;
}

.dashboard-cards {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.dash-item {
  text-align: center;
}

.result-after {
  background: #16A34A;
  padding: 30px;
  border-radius: 16px;
  margin-top: 20px;
}

/* CTA */
.btn-fintech-primary {
  background: #16A34A;
  padding: 16px 40px;
  border-radius: 14px;
  color: #FFFFFF;
  border: none;
  font-weight: 600;
}
.fintech-dashboard-v2 {
  background: #FFFFFF;
  padding: 60px;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(15,23,42,0.08);
  margin-top: 80px;
}

/* Header */
.dashboard-sub {
  color: #64748B;
  margin-top: 10px;
}

/* Flujo */
.dashboard-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}

.flow-card {
  background: #F1F5F9;
  padding: 20px 30px;
  border-radius: 14px;
  text-align: center;
  min-width: 150px;
}

.flow-card span {
  display: block;
  font-size: 13px;
  color: #64748B;
}

.flow-card h3 {
  margin: 0;
  font-weight: 700;
  color: #0F172A;
}

.flow-divider {
  font-size: 24px;
  font-weight: 700;
  color: #94A3B8;
}

/* Resultado negativo */
.flow-result {
  text-align: center;
}

.flow-result.negative h2 {
  color: #DC2626;
  font-weight: 800;
}

/* Resultado optimizado */
.optimized-result {
  text-align: center;
}

.optimized-box {
  background: linear-gradient(135deg, #16A34A, #15803D);
  padding: 40px;
  border-radius: 20px;
  color: #FFFFFF;
  display: inline-block;
  min-width: 320px;
}

.optimized-box h1 {
  font-size: 48px;
  font-weight: 800;
  margin: 10px 0;
}

.optimized-box span {
  font-weight: 500;
  opacity: 0.9;
}