/* ============================= */
/* MARKETING.CSS - MISMO ESTILO INICIO */
/* ============================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f7fb;
  color: #071b38;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ============================= */
/* NAVBAR IGUAL AL INICIO */
/* ============================= */

.navbar {
  width: 100%;
  height: 86px;
  padding: 0 7%;
  background: rgba(247, 250, 255, 0.94);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(7, 27, 56, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #060b18, #4c1d95);
  color: #8b5cf6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(8, 26, 51, 0.25);
}

.logo-text h2 {
  font-family: Georgia, serif;
  font-size: 25px;
  line-height: 0.85;
  color: #050505;
}

.logo-text span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
  color: #071b38;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: #111827;
  font-size: 15px;
  font-weight: 800;
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  width: 0;
  height: 3px;
  background: #071b38;
  border-radius: 999px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 8px;
}

.nav-btn {
  padding: 16px 28px;
  border-radius: 10px;
  background: #071b38;
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 16px 35px rgba(8, 26, 51, 0.25);
}

/* ============================= */
/* HERO MARKETING IGUAL AL INICIO */
/* ============================= */

.marketing-hero-page {
  min-height: 100vh;
  padding: 145px 7% 70px;
  background: linear-gradient(135deg, #f8fbff 0%, #eef3fb 100%);
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: 65px;
}

.marketing-hero-content .mini-title {
  display: inline-block;
  margin-bottom: 18px;
  color: #071b38;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.marketing-hero-content h1 {
  max-width: 680px;
  font-family: Georgia, serif;
  font-size: clamp(56px, 6.6vw, 86px);
  line-height: 0.92;
  color: #050505;
  margin-bottom: 28px;
}

.marketing-hero-content h1 em {
  color: #071b38;
  font-style: italic;
}

.marketing-hero-content p {
  max-width: 640px;
  font-size: 18px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 34px;
}

.marketing-hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  min-height: 54px;
  padding: 0 26px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.primary-btn {
  background: #071b38;
  color: #ffffff;
  box-shadow: 0 16px 35px rgba(7, 27, 56, 0.25);
}

.secondary-btn {
  background: #ffffff;
  color: #071b38;
  border: 1px solid rgba(7, 27, 56, 0.12);
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-3px);
}

/* ============================= */
/* VISUAL DERECHA TIPO INICIO */
/* ============================= */

.marketing-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-card {
  width: min(560px, 100%);
  min-height: 460px;
  padding: 28px;
  border-radius: 30px;
  background: #071b38;
  box-shadow: 0 38px 85px rgba(7, 27, 56, 0.23);
  position: relative;
  overflow: hidden;
}

.phone-card::before {
  content: "";
  position: absolute;
  inset: 26px;
  border-radius: 24px;
  background: linear-gradient(135deg, #5b21b6, #2e1065 55%, #111827);
}

.phone-card::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -90px;
  bottom: -120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.phone-top {
  width: 150px;
  height: 18px;
  border-radius: 999px;
  background: #cbd5e1;
  margin: 0 auto 34px;
  position: relative;
  z-index: 3;
}

.post-card {
  width: 78%;
  margin: 20px auto 0;
  padding: 34px;
  border-radius: 24px;
  background: rgba(17, 24, 39, 0.72);
  color: #ffffff;
  position: relative;
  z-index: 3;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.25);
}

.post-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: #c4b5fd;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.post-card h3 {
  font-size: 42px;
  margin-bottom: 12px;
}

.post-card p {
  color: #e5e7eb;
  font-size: 16px;
  line-height: 1.6;
}

.stats-row {
  width: 78%;
  margin: 16px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  position: relative;
  z-index: 3;
}

.stats-row div {
  padding: 22px;
  background: #ffffff;
  border-radius: 18px;
}

.stats-row h4 {
  font-size: 28px;
  color: #071b38;
  margin-bottom: 4px;
}

.stats-row p {
  color: #6b7280;
  font-size: 14px;
  font-weight: 800;
}

/* ============================= */
/* SERVICIOS */
/* ============================= */

.marketing-services-page {
  padding: 105px 7%;
  background: #ffffff;
}

.section-header {
  max-width: 850px;
  margin-bottom: 55px;
}

.section-header span {
  color: #5b21b6;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.section-header h2 {
  margin-top: 14px;
  margin-bottom: 18px;
  font-family: Georgia, serif;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  color: #071b38;
}

.section-header p {
  color: #4b5563;
  font-size: 18px;
  line-height: 1.7;
}

.marketing-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.marketing-service-card {
  padding: 34px;
  border-radius: 26px;
  background: #f8fafc;
  border: 1px solid rgba(7, 27, 56, 0.08);
  box-shadow: 0 18px 45px rgba(7, 27, 56, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.marketing-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(7, 27, 56, 0.13);
}

.service-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, #071b38, #5b21b6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
}

.marketing-service-card h3 {
  color: #071b38;
  font-size: 23px;
  margin-bottom: 12px;
}

.marketing-service-card p {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.65;
}

/* ============================= */
/* PROCESO */
/* ============================= */

.marketing-process-page {
  padding: 105px 7%;
  background: #071b38;
  color: #ffffff;
}

.process-content {
  max-width: 760px;
  margin-bottom: 55px;
}

.process-content span {
  color: #c4b5fd;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.process-content h2 {
  margin-top: 14px;
  font-family: Georgia, serif;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-step {
  padding: 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.process-step strong {
  display: inline-block;
  color: #c4b5fd;
  font-size: 25px;
  margin-bottom: 18px;
}

.process-step h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.process-step p {
  color: #d1d5db;
  font-size: 15.5px;
  line-height: 1.65;
}

/* ============================= */
/* CTA FINAL */
/* ============================= */

.marketing-cta-page {
  padding: 105px 7%;
  text-align: center;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

.marketing-cta-page h2 {
  max-width: 850px;
  margin: 0 auto 20px;
  font-family: Georgia, serif;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  color: #071b38;
}

.marketing-cta-page p {
  max-width: 650px;
  margin: 0 auto 35px;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.7;
}

.marketing-cta-page a {
  display: inline-flex;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 10px;
  background: #071b38;
  color: #ffffff;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(7, 27, 56, 0.24);
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 1100px) {
  .nav-links {
    gap: 20px;
  }

  .marketing-hero-page {
    grid-template-columns: 1fr;
    padding-top: 125px;
  }

  .marketing-hero-visual {
    justify-content: flex-start;
  }

  .marketing-service-grid,
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .navbar {
    height: auto;
    padding: 18px 6%;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    position: relative;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 16px 22px;
  }

  .nav-btn {
    display: none;
  }

  .marketing-hero-page {
    padding: 70px 6%;
  }

  .marketing-hero-content h1 {
    font-size: 48px;
  }

  .marketing-services-page,
  .marketing-process-page,
  .marketing-cta-page {
    padding: 80px 6%;
  }

  .marketing-service-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .phone-card {
    min-height: 410px;
  }

  .post-card,
  .stats-row {
    width: 90%;
  }
}

@media (max-width: 520px) {
  .marketing-hero-content h1 {
    font-size: 42px;
  }

  .marketing-hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .phone-card {
    padding: 22px;
    border-radius: 26px;
  }

  .post-card {
    padding: 26px;
  }

  .post-card h3 {
    font-size: 34px;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }
}
/* ============================= */
/* MENÚ MÓVIL */
/* ============================= */

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 12px;
  background: #071b38;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  z-index: 1200;
}

.menu-toggle span {
  width: 22px;
  height: 3px;
  background: #ffffff;
  border-radius: 999px;
  transition: 0.3s ease;
}

.mobile-talk-btn {
  display: none;
}

@media (max-width: 850px) {
  .navbar {
    height: 78px;
    padding: 0 6%;
    flex-direction: row;
    align-items: center;
    position: fixed;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-btn {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 78px;
    left: 0;
    width: 100%;
    height: calc(100vh - 78px);
    padding: 34px 7%;
    background: rgba(247, 250, 255, 0.98);
    backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
    z-index: 1100;
    border-top: 1px solid rgba(7, 27, 56, 0.08);
  }

  .nav-links.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 22px;
    font-weight: 900;
    color: #071b38;
  }

  .nav-links a::after {
    display: none;
  }

  .mobile-talk-btn {
    display: inline-flex;
    margin-top: 15px;
    padding: 16px 26px;
    border-radius: 10px;
    background: #071b38;
    color: #ffffff !important;
    font-size: 16px !important;
    box-shadow: 0 16px 35px rgba(7, 27, 56, 0.25);
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .marketing-hero-page {
    padding-top: 115px;
  }
}
/* AJUSTE: menos zoom en la página de marketing */

.marketing-hero-page {
  min-height: 88vh;
  padding: 125px 8% 80px;
  gap: 90px;
}

.marketing-hero-content h1 {
  max-width: 620px;
  font-size: clamp(42px, 5.2vw, 68px);
  line-height: 1.02;
  margin-bottom: 26px;
}

.marketing-hero-content p {
  max-width: 600px;
  font-size: 17px;
  line-height: 1.75;
}

.marketing-hero-content .mini-title {
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.marketing-hero-buttons {
  margin-top: 6px;
}

.primary-btn,
.secondary-btn {
  min-height: 50px;
  padding: 0 24px;
  font-size: 14px;
}

.phone-card {
  width: min(500px, 100%);
  min-height: 430px;
}

.post-card {
  width: 76%;
  padding: 30px;
}

.post-card h3 {
  font-size: 36px;
}

.post-card p {
  font-size: 15px;
}

.stats-row {
  width: 76%;
}

.navbar {
  height: 82px;
}

.nav-links {
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
}

.nav-btn {
  padding: 14px 25px;
}
/* ============================= */
/* EXTRA MARKETING CONTENT */
/* ============================= */

.marketing-benefits {
  background: #ffffff;
}

.marketing-benefits__container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 55px;
  align-items: center;
}

.marketing-benefits .section-side p {
  margin-top: 20px;
  max-width: 440px;
  color: #666666;
  font-size: 15px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.benefit-card {
  padding: 30px 26px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(11, 31, 58, 0.12);
}

.benefit-card i {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: rgba(11, 31, 58, 0.12);
  color: #0B1F3A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111111;
}

.benefit-card p {
  font-size: 14px;
  color: #666666;
}

/* CANALES */

.marketing-channels {
  background: #fcfcfc;
}

.marketing-channels .section-header p {
  max-width: 620px;
  margin: 16px auto 0;
  color: #666666;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.channel-card {
  min-height: 250px;
  padding: 32px 26px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.channel-card:hover {
  transform: translateY(-8px);
  border-color: rgba(11, 31, 58, 0.35);
}

.channel-card__number {
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 900;
  color: #0B1F3A;
  letter-spacing: 1.5px;
}

.channel-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #111111;
}

.channel-card p {
  font-size: 14px;
  color: #666666;
}

/* PLANES */

.marketing-plans {
  background: #ffffff;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.plan-card {
  padding: 34px 30px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 22px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 50px rgba(11, 31, 58, 0.12);
}

.plan-card--featured {
  background: linear-gradient(135deg, #12345A, #0B1F3A);
  color: #ffffff;
  transform: translateY(-12px);
}

.plan-card__tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(11, 31, 58, 0.1);
  color: #0B1F3A;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-card--featured .plan-card__tag {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.plan-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.plan-card p {
  margin-bottom: 22px;
  font-size: 14px;
  color: #666666;
}

.plan-card--featured p {
  color: rgba(255, 255, 255, 0.75);
}

.plan-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
}

.plan-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #444444;
}

.plan-card--featured li {
  color: rgba(255, 255, 255, 0.85);
}

.plan-card li i {
  margin-top: 3px;
  color: #0B1F3A;
}

.plan-card--featured li i {
  color: #8FBCE6;
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .marketing-benefits__container {
    grid-template-columns: 1fr;
  }

  .channels-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plan-card--featured {
    transform: none;
  }
}

@media (max-width: 700px) {
  .benefits-grid,
  .channels-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .channel-card,
  .plan-card {
    padding: 28px 22px;
  }
}
/* ARREGLO TARJETA DESTACADA DE PLANES */

.plan-card--featured {
  background: linear-gradient(135deg, #12345A, #0B1F3A) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 24px 70px rgba(11, 31, 58, 0.28) !important;
}

.plan-card--featured .plan-card__tag {
  background: rgba(255, 255, 255, 0.16) !important;
  color: #ffffff !important;
}

.plan-card--featured h3,
.plan-card--featured p,
.plan-card--featured li,
.plan-card--featured i {
  color: #ffffff !important;
}

.plan-card--featured li i {
  color: #8FBCE6 !important;
}
/* CENTRAR MEJOR LA SECCIÓN DE SERVICIOS DE MARKETING */

#marketing-servicios .container {
  max-width: 1280px;
  margin: 0 auto;
}

#marketing-servicios .section-header {
  max-width: 850px;
  margin: 0 auto 55px;
  text-align: center;
}

#marketing-servicios .section-header h2 {
  max-width: 760px;
  margin: 14px auto 18px;
}

#marketing-servicios .section-header p {
  max-width: 620px;
  margin: 0 auto;
}

#marketing-servicios .services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 260px));
  justify-content: center;
  gap: 28px;
  margin: 0 auto;
}

#marketing-servicios .service-card {
  width: 100%;
  min-height: 290px;
}
/* CENTRAR SECCIÓN CANALES DIGITALES */

.marketing-channels .container {
  max-width: 1180px;
  margin: 0 auto;
}

.marketing-channels .section-header {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.marketing-channels .section-header .section-tag {
  display: block;
  text-align: center;
}

.marketing-channels .section-header h2 {
  max-width: 850px;
  margin: 14px auto 20px;
  text-align: center;
}

.marketing-channels .section-header p {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.marketing-channels .channels-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 280px));
  justify-content: center;
  gap: 24px;
}
/* ARREGLO RECUADROS PROCESO MARKETING */

.marketing-page .about-process {
  background: #ffffff;
}

.marketing-page .about-process__container {
  align-items: center;
}

.marketing-page .process-box .section-tag {
  color: #07162A;
}

.marketing-page .process-steps {
  gap: 20px;
}

.marketing-page .process-step {
  background: #ffffff !important;
  border: 1px solid #dbe3ef !important;
  border-radius: 24px;
  padding: 30px 26px;
  box-shadow: 0 18px 45px rgba(11, 31, 58, 0.08);
}

.marketing-page .process-step__number {
  background: #0B1F3A !important;
  color: #ffffff !important;
}

.marketing-page .process-step h3 {
  color: #07162A !important;
  font-size: 22px;
  margin-bottom: 12px;
}

.marketing-page .process-step p {
  color: #4b5563 !important;
  font-size: 15px;
  line-height: 1.7;
}
/* CENTRAR SECCIÓN FORMAS DE TRABAJO */

.marketing-plans {
  padding-top: 90px;
  padding-bottom: 100px;
}

.marketing-plans .container {
  max-width: 1180px;
  margin: 0 auto;
}

.marketing-plans .section-header {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.marketing-plans .section-header .section-tag {
  display: block;
  text-align: center;
}

.marketing-plans .section-header h2 {
  max-width: 850px;
  margin: 14px auto 20px;
  text-align: center;
}

.marketing-plans .plans-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 360px));
  justify-content: center;
  gap: 28px;
}