/* Freelance PrestaShop — ink + teal. Not purple / cream / amber clone. */
/* Fonts: Manrope sitewide; Georgia for display. No @import. */

.page-freelance-prestashop.fp-page,
.fp-page {
  --fp-ink: #0e1a1f;
  --fp-slate: #24343a;
  --fp-muted: #5a6472;
  --fp-accent: #1f8a7a;
  --fp-accent-soft: rgba(31, 138, 122, 0.12);
  --fp-paper: #eef4f3;
  --fp-display: "Fraunces", "Libre Baskerville", Georgia, serif;
  --fp-sans: "Manrope", "DM Sans", system-ui, sans-serif;
  font-family: var(--fp-sans);
  color: var(--fp-ink);
}

.fp-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #12151a;
  padding-top: 72px;
  box-sizing: border-box;
}

.fp-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fp-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 40%;
  transform: scale(1.04);
  animation: fp-hero-pan 18s ease-in-out infinite alternate;
}

@keyframes fp-hero-pan {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.2%, -1%, 0); }
}

.fp-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(5, 10, 18, 0.97) 0%, rgba(5, 10, 18, 0.92) 40%, rgba(5, 10, 18, 0.55) 68%, rgba(5, 10, 18, 0.3) 100%),
    linear-gradient(180deg, rgba(5, 10, 18, 0.6) 0%, rgba(5, 10, 18, 0.25) 48%, rgba(5, 10, 18, 0.75) 100%);
  pointer-events: none;
}

.page-freelance-prestashop .fp-hero h1,
.fp-page .fp-hero h1,
.fp-hero h1 {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.page-freelance-prestashop .fp-brand,
.fp-page .fp-brand,
.fp-hero .fp-brand {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.page-freelance-prestashop .fp-hero-copy,
.fp-page .fp-hero-copy,
.fp-hero .fp-hero-copy {
  color: #e8f7fc !important;
  -webkit-text-fill-color: #e8f7fc !important;
}


.fp-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(88px, 12vh, 120px) 0;
}

.fp-brand {
  display: inline-block;
  margin: 0 0 0.85rem;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
  animation: fp-rise 0.7s ease both;
}

.fp-hero h1 {
  margin: 0;
  max-width: 14ch;
  font-family: var(--fp-display);
  font-size: clamp(2.45rem, 6vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.5);
  animation: fp-rise 0.75s ease 0.08s both;
}

.fp-hero h1 .accent,
.fp-hero h1 .home-hero-accent,
.fp-hero h1 .accent::after,
.fp-hero h1 .home-hero-accent::after {
  color: #fff !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #fff !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

.fp-hero h1 .accent,
.fp-hero h1 .home-hero-accent {
  border-bottom: 3px solid #e8c56a;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.55);
}

.fp-hero-copy {
  margin: 1rem 0 0;
  max-width: 34rem;
  font-size: clamp(1.08rem, 1.7vw, 1.25rem);
  line-height: 1.55;
  font-weight: 500;
  color: #edf0f4 !important;
  -webkit-text-fill-color: #edf0f4 !important;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
  animation: fp-rise 0.75s ease 0.16s both;
}

.fp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.55rem;
  animation: fp-rise 0.75s ease 0.24s both;
}

.fp-hero-actions .btn-green {
  box-shadow: 0 14px 36px rgba(31, 138, 122, 0.28);
  animation: fp-pulse 2.4s ease-in-out infinite;
}

@keyframes fp-pulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

.fp-hero-actions .btn-outline,
.fp-final-actions .btn-outline {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.fp-hero-proof {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  color: #eef1f5;
  font-size: 0.98rem;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  animation: fp-rise 0.75s ease 0.32s both;
}

.fp-hero-proof span::before {
  content: "✓ ";
  color: #e8c56a;
}

@keyframes fp-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .fp-hero-media img,
  .fp-hero-actions .btn-green,
  .fp-brand,
  .fp-hero h1,
  .fp-hero-copy,
  .fp-hero-actions,
  .fp-hero-proof {
    animation: none !important;
  }
}

.fp-section {
  padding: clamp(56px, 8vw, 96px) 0;
}

.fp-section--paper {
  background:
    radial-gradient(700px 280px at 12% 0%, rgba(31, 138, 122, 0.08), transparent 60%),
    linear-gradient(180deg, #f6f7f9 0%, #e9edf2 100%);
}

.fp-section--ink {
  background:
    radial-gradient(700px 320px at 88% 10%, rgba(31, 138, 122, 0.16), transparent 55%),
    linear-gradient(160deg, #12151a 0%, #232a36 100%);
  color: #e8ecf2;
}

.fp-section .section-header {
  max-width: 46rem;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.fp-section .section-kicker,
.fp-section .section-header .section-kicker,
.fp-final .section-kicker {
  display: inline-block !important;
  color: var(--fp-accent) !important;
  -webkit-text-fill-color: var(--fp-accent) !important;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  font-family: var(--fp-sans) !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem !important;
}

.fp-section h2,
.fp-section .section-header h2 {
  margin: 0.55rem 0 0.7rem !important;
  font-family: var(--fp-display) !important;
  font-size: clamp(1.85rem, 3.5vw, 2.65rem) !important;
  letter-spacing: -0.02em;
  color: var(--fp-ink) !important;
  -webkit-text-fill-color: var(--fp-ink) !important;
  line-height: 1.18 !important;
  font-weight: 700 !important;
}

.fp-section .lead,
.fp-section .section-header .lead {
  margin: 0 auto !important;
  max-width: 40rem;
  color: var(--fp-muted) !important;
  -webkit-text-fill-color: var(--fp-muted) !important;
  font-size: 1.12rem !important;
  line-height: 1.65 !important;
  font-weight: 600 !important;
}

.fp-section--ink .section-kicker {
  color: #e8c56a !important;
  -webkit-text-fill-color: #e8c56a !important;
}

.fp-section--ink h2,
.fp-section.fp-section--ink h2,
.fp-section.fp-section--ink h3,
#precio-experto h2,
#tiendas-reales h2 {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.fp-section--ink .lead,
.fp-section--ink p,
.fp-section.fp-section--ink .lead,
.fp-section.fp-section--ink p,
#precio-experto .lead,
#precio-experto p,
#precio-experto .fp-price-note,
#precio-experto .fp-factors strong,
#precio-experto .fp-factors p,
#tiendas-reales .lead,
#tiendas-reales p {
  color: #e8ecf2 !important;
  -webkit-text-fill-color: #e8ecf2 !important;
}

#precio-experto .fp-factors strong,
#tiendas-reales .fp-stores strong {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-weight: 800;
}

.fp-why-grid,
.fp-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.fp-why,
.fp-service {
  padding: 1.25rem 1.2rem;
  border-top: 2px solid var(--fp-accent);
  background: rgba(255, 255, 255, 0.62);
}

.fp-why-code {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--fp-accent);
}

.fp-why h3,
.fp-service h3,
.fp-step h3,
.fp-faq-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--fp-display);
  font-size: 1.2rem;
  line-height: 1.25;
  color: var(--fp-ink);
}

.fp-why p,
.fp-service p,
.fp-step p,
.fp-faq-card p {
  margin: 0;
  color: var(--fp-muted);
  line-height: 1.55;
  font-weight: 500;
}

.fp-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 18px);
}

.fp-step {
  padding: 1.2rem 1.1rem;
  background: rgba(255, 255, 255, 0.75);
  border-left: 3px solid var(--fp-accent);
}

.fp-step-num {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 0.65rem;
  border-radius: 4px;
  background: var(--fp-accent-soft);
  color: #8a6a1f;
  font-size: 0.8rem;
  font-weight: 800;
}

.fp-proof {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.fp-stores {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.95rem;
}

.fp-stores li {
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.fp-proof-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  min-height: 280px;
}

.fp-pricing {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.fp-factors {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.fp-factors li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
}

.fp-factor-num {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: rgba(255, 122, 108, 0.16);
  color: #e8c56a;
  font-size: 0.8rem;
  font-weight: 800;
}

.fp-price-note {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 600;
  line-height: 1.55;
}

.fp-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.fp-faq-card {
  padding: 1.25rem 1.2rem;
  background: rgba(255, 255, 255, 0.75);
  border-top: 2px solid rgba(31, 138, 122, 0.5);
}

.fp-final {
  padding: clamp(56px, 8vw, 88px) 0;
  background:
    radial-gradient(640px 280px at 20% 0%, rgba(31, 138, 122, 0.18), transparent 55%),
    linear-gradient(160deg, #12151a 0%, #1c222c 100%);
  color: #fff;
}

.fp-final-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
}

.fp-final h2 {
  margin: 0.5rem 0 0.7rem;
  font-family: var(--fp-display);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.15;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.fp-final p {
  margin: 0;
  max-width: 36rem;
  color: #e2e7ee !important;
  -webkit-text-fill-color: #e2e7ee !important;
  font-size: 1.1rem;
  line-height: 1.55;
  font-weight: 500;
}

.fp-final-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fp-related {
  padding: clamp(40px, 6vw, 64px) 0;
  background: #f1f3f6;
}

.fp-related-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}

.fp-related-list a {
  color: var(--fp-ink);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--fp-accent);
}

@media (max-width: 980px) {
  .fp-why-grid,
  .fp-service-grid,
  .fp-process,
  .fp-proof,
  .fp-pricing,
  .fp-faq-grid,
  .fp-final-inner {
    grid-template-columns: 1fr;
  }
  .fp-process {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .fp-process,
  .fp-why-grid,
  .fp-service-grid,
  .fp-faq-grid {
    grid-template-columns: 1fr;
  }
  .fp-hero h1 {
    max-width: 12ch;
  }
}



.fp-service a {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 700;
  color: var(--fp-ink);
  text-decoration: none;
  border-bottom: 2px solid var(--fp-accent);
}
.fp-service a:hover { color: #8a6a1f; }

.fp-hero-glow {
  position: absolute;
  inset: auto auto -18% -10%;
  width: 52vw;
  height: 52vw;
  z-index: 1;
  background: radial-gradient(circle, rgba(31, 138, 122, 0.22), transparent 68%);
  pointer-events: none;
  animation: fp-glow 8s ease-in-out infinite alternate;
}
@keyframes fp-glow {
  from { opacity: 0.55; transform: translate3d(0, 0, 0); }
  to { opacity: 1; transform: translate3d(6%, -4%, 0); }
}
