@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap');

/* =====================================================
   DIGITAL GROUP — Landing CTV
   Basado en diseño Figma: DG-landing---CTV
   ===================================================== */

/* ---- Reset & Variables ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --dg-dark: #000000;
  --dg-dark-2: #0A0A0A;
  --dg-teal: #489EB4;
  --dg-teal-dark: #3A8FA4;
  --dg-teal-bg: #489EB4;
  --dg-orange: #F5A500;
  --dg-orange-dark: #D48E00;
  --dg-white: #FFFFFF;
  --dg-light: #F8F8FA;
  --dg-light-2: #E1E1E1;
  --dg-gray: #6E6E6E;
  --dg-gray-dark: #444444;
  --dg-text: #1A1A1A;

  /* Futura PT (official Adobe Fonts Typekit) & Futura LT (commercial fallback) */
  /* Jost is imported as a premium Google Font fallback (looks almost identical to Futura). */
  --font-main: "futura-pt", 'Futura LT', 'FuturaLT', 'Futura-Medium', 'Futura', 'Jost', 'Century Gothic', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--dg-text);
  background: var(--dg-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---- Container ---- */
.dg-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .dg-container {
    padding: 0 20px;
  }
}

/* ======================================================
   SECTION 0 — HEADER / NAV
   ====================================================== */
.dg-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 0;
}

.dg-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dg-header__logo img {
  height: 40px;
  width: auto;
}

.dg-header__logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--dg-white);
  letter-spacing: -0.5px;
}

.dg-btn-contact {
  background: #000000;
  color: var(--dg-white);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}

.dg-btn-contact:hover {
  background: #222222;
}

/* ======================================================
   SECTION 1 — HERO
   ====================================================== */
.dg-hero {
  background: var(--dg-dark);
  display: flex;
  flex-direction: column;
  padding-top: 100px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.dg-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 158, 180, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Video de fondo premium */
.dg-hero__video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.dg-hero__video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.dg-hero__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 2;
}

.dg-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0 60px;
  position: relative;
  z-index: 3;
}

.dg-hero__content {}

.dg-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dg-teal);
  margin-bottom: 24px;
}

.dg-hero__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--dg-white);
  line-height: 1.1;
  margin-bottom: 8px;
}

.dg-hero__title-alt {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: #6E6E6E;
  line-height: 1.1;
  margin-bottom: 24px;
  font-style: italic;
}

.dg-hero__subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 440px;
}

.dg-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.dg-btn-primary {
  background: var(--dg-teal);
  color: var(--dg-white);
  font-size: 20px;
  font-weight: 600;
  padding: 12px 40px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
  text-align: center;
  height: 52px;
  line-height: 28px;
}

.dg-btn-primary:hover {
  background: var(--dg-teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(72, 158, 180, 0.35);
}

.dg-btn-secondary {
  background: transparent;
  color: var(--dg-white);
  font-size: 20px;
  font-weight: 600;
  padding: 12px 40px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
  text-align: center;
  height: 52px;
  line-height: 24px;
}

.dg-btn-secondary:hover {
  border-color: var(--dg-white);
  background: rgba(255, 255, 255, 0.06);
}

.dg-btn-orange {
  background: var(--dg-orange);
  color: var(--dg-dark);
  font-size: 20px;
  font-weight: 700;
  padding: 12px 40px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
  height: 52px;
  line-height: 28px;
}

.dg-btn-orange:hover {
  background: var(--dg-orange-dark);
  transform: translateY(-1px);
}

/* Hero form */
.dg-hero__form-wrap {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(10px);
}

.dg-hero__form-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dg-white);
  margin-bottom: 8px;
}

.dg-hero__form-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
  line-height: 1.5;
}

.dg-form-group {
  margin-bottom: 14px;
}

.dg-form-group input,
.dg-form-group select,
.dg-form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--dg-white);
  outline: none;
  transition: border-color 0.2s;
  font-family: var(--font-main);
}

.dg-form-group input::placeholder,
.dg-form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.dg-form-group input:focus,
.dg-form-group select:focus {
  border-color: var(--dg-teal);
}

.dg-form-group select {
  color: rgba(255, 255, 255, 0.55);
}

.dg-form-group select option {
  background: var(--dg-dark-2);
  color: var(--dg-white);
}

.dg-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dg-form-submit {
  width: 100%;
  background: var(--dg-teal);
  color: var(--dg-white);
  font-size: 20px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.2s;
  font-family: var(--font-main);
  height: 52px;
}

.dg-form-submit:hover {
  background: var(--dg-teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(72, 158, 180, 0.4);
}

.dg-form-legal {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 12px;
  text-align: center;
  line-height: 1.5;
}

/* ======================================================
   HUBSPOT FORMS PREMIUM STYLING OVERRIDES
   ====================================================== */
/* Altísima especificidad para neutralizar fondos blancos o estilos inyectados por HubSpot */
.dg-landing-ctv .hs-form,
.dg-landing-ctv form.hs-form,
.dg-landing-ctv form.hs-form-private,
.dg-landing-ctv .hs-form-private,
.dg-landing-ctv .hs-form-inner,
.dg-landing-ctv [data-hs-forms-root],
.dg-landing-ctv form[class^="hs-form-"] {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.hs-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hs-form fieldset,
.hs-form .hs-form-row {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  min-width: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hs-form .form-columns-2,
.hs-form .hs-form-row.form-columns-2 {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
}

.hs-form .form-columns-3,
.hs-form .hs-form-row.form-columns-3 {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  gap: 12px !important;
}

@media (max-width: 768px) {

  .hs-form .form-columns-2,
  .hs-form .hs-form-row.form-columns-2,
  .hs-form .form-columns-3,
  .hs-form .hs-form-row.form-columns-3 {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
}

.hs-form .hs-richtext,
.hs-form .hs-form-required,
.hs-form .hs_error_rollup {
  display: none !important;
}

.hs-form-field {
  margin-bottom: 2px;
  text-align: left;
}

.hs-form-field>label {
  display: block;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  margin-bottom: 6px !important;
  text-align: left;
  font-family: var(--font-main);
}

.hs-form-field>label span {
  color: rgba(255, 255, 255, 0.85) !important;
}

.hs-form input[type="text"],
.hs-form input[type="email"],
.hs-form input[type="tel"],
.hs-form select,
.hs-form textarea {
  width: 100% !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: var(--radius) !important;
  padding: 12px 16px !important;
  font-size: 14px !important;
  color: #FFFFFF !important;
  outline: none !important;
  transition: border-color 0.2s !important;
  font-family: var(--font-main) !important;
  box-sizing: border-box !important;
}

.hs-form input:focus,
.hs-form select:focus,
.hs-form textarea:focus {
  border-color: var(--dg-teal) !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

.hs-form select {
  color: rgba(255, 255, 255, 0.55) !important;
}

.hs-form select option {
  background: var(--dg-dark-2) !important;
  color: #FFFFFF !important;
}

.hs-form textarea {
  resize: vertical !important;
  min-height: 80px !important;
}

.hs-form .inputs-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 8px 0 0 0 !important;
}

.hs-form .inputs-list li {
  list-style: none !important;
  margin-bottom: 10px !important;
  padding: 0 !important;
}

.hs-form .hs-form-checkbox,
.hs-form .hs-form-checkbox-display,
.hs-form .hs-form-booleancheckbox,
.hs-form .hs-form-booleancheckbox-display {
  display: flex !important;
  align-items: flex-start !important;
  gap: 8px !important;
  cursor: pointer !important;
  text-align: left !important;
}

.hs-form .hs-form-checkbox input[type="checkbox"],
.hs-form .hs-form-checkbox-display input[type="checkbox"],
.hs-form .hs-form-booleancheckbox input[type="checkbox"],
.hs-form .hs-form-booleancheckbox-display input[type="checkbox"] {
  width: 16px !important;
  height: 16px !important;
  margin: 2px 0 0 0 !important;
  flex-shrink: 0 !important;
  cursor: pointer !important;
}

.hs-form .hs-form-checkbox label,
.hs-form .hs-form-checkbox-display label,
.hs-form .hs-form-checkbox span,
.hs-form .hs-form-checkbox-display span,
.hs-form .hs-form-checkbox p,
.hs-form .hs-form-checkbox-display p,
.hs-form .hs-form-booleancheckbox label,
.hs-form .hs-form-booleancheckbox-display label,
.hs-form .hs-form-booleancheckbox span,
.hs-form .hs-form-booleancheckbox-display span,
.hs-form .hs-form-booleancheckbox p,
.hs-form .hs-form-booleancheckbox-display p,
.hs-form .legal-consent-container,
.hs-form .legal-consent-container p,
.hs-form .legal-consent-container span,
.hs-form .hs-field-desc {
  font-size: 16px !important;
  line-height: 1.4 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  font-family: var(--font-main) !important;
  margin: 0 !important;
  display: inline !important;
}

.hs-form .hs-form-checkbox label a,
.hs-form .hs-form-checkbox-display label a,
.hs-form .hs-form-checkbox-display a,
.hs-form .legal-consent-container a {
  color: var(--dg-teal) !important;
  text-decoration: underline !important;
}

.hs-submit {
  margin-top: 8px !important;
  padding: 0 !important;
}

.hs-form .hs-button {
  width: 100% !important;
  background: var(--dg-teal) !important;
  color: #FFFFFF !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  padding: 12px 24px !important;
  border-radius: 10px !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  height: 52px !important;
  line-height: 28px !important;
  font-family: var(--font-main) !important;
  text-align: center !important;
}

.hs-form .hs-button:hover {
  background: var(--dg-teal-dark) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 16px rgba(72, 158, 180, 0.4) !important;
}

.hs-form .hs-error-msg {
  color: #E53939 !important;
  font-size: 16px !important;
  margin-top: 4px !important;
  display: block !important;
  font-family: var(--font-main) !important;
  text-align: left;
}

/* Hero contact line */
.dg-hero__contact-line {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.dg-hero__contact-line a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.dg-hero__contact-line a:hover {
  color: var(--dg-teal);
}

/* Stats bar */
.dg-hero__stats {
  background: var(--dg-teal);
  border-top: none;
  position: relative;
  z-index: 3;
}

.dg-hero__stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 32px 0;
}

.dg-stat {
  text-align: left;
  padding: 0 20px;
  border-right: none;
}

.dg-stat:last-child {
  border-right: none;
}

.dg-stat__number {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--dg-white);
  line-height: 1;
  margin-bottom: 8px;
}

.dg-stat__label {
  font-size: 14px;
  color: var(--dg-white);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
}

/* ======================================================
   SECTION 2 — LA TV LLEGÓ A TU PRESUPUESTO
   ====================================================== */
.dg-tv-budget {
  background: #e1e1e1;
  padding: 100px 0;
}

.dg-tv-budget__inner {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 60px;
  align-items: center;
}

.dg-section-label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--dg-teal);
  margin-bottom: 16px;
  display: block;
}

.dg-section-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  color: var(--dg-text);
  line-height: 1.1;
  margin-bottom: 24px;
}

.dg-section-title em {
  color: var(--dg-gray-dark);
  font-style: italic;
  font-weight: 500;
}

.dg-section-text {
  font-size: 20px;
  color: var(--dg-gray);
  line-height: 1.6;
  margin-bottom: 32px;
}

.dg-tv-budget__right {}

/* TV Tables */
.dg-tv-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dg-tv-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dg-tv-col__title {
  font-size: 12px;
  font-weight: 700;
  color: #6E6E6E;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  padding-left: 0;
}

.dg-tv-card {
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 130px;
}

.dg-tv-col--old .dg-tv-card {
  background: #D1D1D1;
  color: #1a1a1a;
}

.dg-tv-col--new .dg-tv-card {
  background: #489EB4;
  color: #1a1a1a;
}

.dg-tv-card__label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 4px;
  opacity: 0.8;
  letter-spacing: 0.5px;
}

.dg-tv-card__value {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.1;
}

.dg-tv-card__desc {
  font-size: 12px;
  opacity: 0.7;
  line-height: 1.3;
}

/* hide old compare elements */
.dg-price-compare,
.dg-features-grid {
  display: none !important;
}

/* ======================================================
   SECTION 3 — DE BRIEFING A PANTALLA
   ====================================================== */
.dg-briefing {
  background: #F8F8F8;
  padding: 100px 0;
}

.dg-briefing__header {
  text-align: left;
  margin-bottom: 64px;
}

.dg-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.dg-step {
  position: relative;
  z-index: 1;
  background: var(--dg-white);
  border: 1px solid #EBEBEB;
  border-radius: 12px;
  padding: 32px 24px;
}

.dg-step__number {
  color: #A7D2DC;
  font-size: 64px;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.dg-step__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dg-text);
  margin-bottom: 12px;
}

.dg-step__text {
  font-size: 12px;
  color: var(--dg-gray);
  line-height: 1.5;
}

/* ======================================================
   SECTION 4 — CANALES
   ====================================================== */
.dg-channels {
  background: #000;
  padding: 100px 0;
  color: var(--dg-white);
}

.dg-channels__header {
  margin-bottom: 48px;
}

.dg-channels .dg-section-title em {
  color: #6E6E6E;
  font-style: italic;
  font-weight: 500;
}

.dg-channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.dg-channel-card {
  display: flex;
  gap: 16px;
  background: #5C5C5C;
  border-radius: 12px;
  padding: 16px;
  align-items: center;
  color: #FFF;
}

.dg-channel-card__img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  line-height: 1.1;
  color: #FFF;
  overflow: hidden;
  text-transform: uppercase;
}

.dg-channel-card__img img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  display: block;
}

.dg-channel-card__content h4 {
  font-size: 13px;
  margin: 0 0 4px 0;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.dg-channel-card__content p {
  margin: 0;
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.4;
  color: #F0F0F0;
}

/* ======================================================
   SECTION 5 — PUBLICIDAD ADAPTADA A LA NUEVA TV
   ====================================================== */
.dg-formats {
  background: #F8F8F8;
  padding: 100px 0;
}

.dg-formats__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.dg-formats__left .dg-section-label {
  color: #489EB4;
  display: inline-block;
  margin-bottom: 16px;
  font-weight: bold;
}

.dg-formats__left .dg-section-title {
  margin-bottom: 24px;
}

.dg-formats__left .dg-section-title em {
  color: #6E6E6E;
  font-style: italic;
  font-weight: 500;
}

.dg-tv-mockup {
  position: relative;
  width: 100%;
  aspect-ratio: 8199/5466;
  /* Exact ratio of the transparent monitor PNG */
  overflow: visible;
}

.dg-tv-mockup__screen {
  position: absolute;
  left: 10.062%;
  top: 6.952%;
  width: 80.022%;
  height: 67.069%;
  z-index: 1;
  background: var(--dg-dark);
  overflow: hidden;
  transition: opacity 0.3s ease;
}

/* TV screen content transitions */
#dg-tv-screen>* {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation: dg-screen-in 0.4s ease;
}

@keyframes dg-screen-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.dg-tv-default-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  height: 100% !important;
  background: var(--dg-dark);
}

.dg-tv-default-state img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Format items pointer cursor */
.dg-format-item[data-format] {
  cursor: pointer;
}

.dg-tv-mockup__screen::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--dg-teal), var(--dg-orange));
  z-index: 3;
}

.dg-tv-mockup__frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  display: block;
}

.dg-formats__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dg-format-item {
  background: #EBEBEB;
  border: 1px solid #A7D2DC;
  border-radius: 12px;
  padding: 20px 24px;
  cursor: pointer;
  transition: all 0.2s;
}

.dg-format-item:hover {
  background: #E2E2E2;
}

.dg-format-item__content {
  flex: 1;
}

.dg-format-item__title {
  font-size: 13px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.dg-format-item__desc {
  font-size: 16px;
  color: #555;
  line-height: 1.4;
}

.dg-format-item__arrow {
  color: var(--dg-teal);
  font-size: 18px;
  flex-shrink: 0;
}

.dg-formats-pagination {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.dg-format-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  outline: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
}

.dg-format-dot.is-active {
  background: var(--dg-teal);
  width: 24px;
  border-radius: 4px;
}

/* ======================================================
   SECTION 6 — LLEGA A QUIEN REALMENTE IMPORTA
   ====================================================== */
.dg-targeting {
  background: #E1E1E1;
  padding: 100px 0;
}

.dg-targeting__header {
  margin-bottom: 56px;
}

.dg-targeting__header .dg-section-title em {
  color: #6E6E6E;
  font-style: italic;
  font-weight: 500;
}

.dg-targeting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.dg-targeting-card {
  background: #FFF;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.2s;
}

.dg-targeting-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.dg-targeting-card__icon {
  width: 32px;
  height: 32px;
  color: #489EB4;
  margin-bottom: 16px;
}

.dg-targeting-card__icon svg {
  width: 100%;
  height: 100%;
}

.dg-targeting-card__title {
  font-size: 13px;
  font-weight: 800;
  color: #000;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.dg-targeting-card__text {
  font-size: 16px;
  color: #555;
  line-height: 1.4;
}

/* ======================================================
   SECTION 7 — UN PLAN PARA CADA TAMAÑO
   ====================================================== */
.dg-pricing {
  background: #F8F8F8;
  padding: 100px 0;
}

.dg-pricing__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.dg-pricing__left .dg-section-label {
  color: #489EB4;
}

.dg-pricing__left .dg-section-title em {
  color: #6E6E6E;
  font-style: italic;
  font-weight: 500;
}

.dg-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dg-pricing-card {
  border-radius: 12px;
  padding: 32px 24px;
  border: 1px solid #EBEBEB;
  position: relative;
  overflow: hidden;
  background: #F8F8F8;
  transition: all 0.3s ease;
}

.dg-pricing-card--pro {
  border: 3px solid #489EB4 !important;
  box-shadow: 0 12px 36px rgba(72, 158, 180, 0.16) !important;
  transform: scale(1.03);
  background: #FFFFFF !important;
  z-index: 2;
}

.dg-pricing-card--pro:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 16px 48px rgba(72, 158, 180, 0.22) !important;
}

.dg-pricing-card:not(.dg-pricing-card--pro):hover {
  border-color: #CCCCCC;
  transform: translateY(-2px);
}

.dg-pricing-card__title {
  font-size: 16px;
  font-weight: 800;
  color: #489EB4;
  font-style: italic;
  margin-bottom: 12px;
}

.dg-pricing-card__name-sub {
  font-size: 10px;
  font-weight: 700;
  color: #6E6E6E;
  margin-bottom: 4px;
}

.dg-pricing-card__price {
  font-size: 36px;
  font-weight: 900;
  color: #000;
  line-height: 1;
  margin-bottom: 24px;
}

.dg-pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.dg-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.dg-pricing-check {
  color: #489EB4;
  font-size: 14px;
  flex-shrink: 0;
}

.dg-pricing-feature-content span {
  font-size: 12px;
  color: #6E6E6E;
  font-weight: 500;
  display: block;
  margin-top: 2px;
}

.dg-pricing-card__cta {
  display: inline-block;
  background: #489EB4;
  color: #FFF;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s;
  width: 100%;
}

.dg-pricing-card__cta:hover {
  background: #3a8296;
}

/* ======================================================
   SECTION 8 — EXPERTOS EN MEDIOS
   ====================================================== */
.dg-experts {
  background: linear-gradient(180deg, rgba(72, 158, 180, 0.88) 0%, rgba(58, 143, 164, 0.94) 100%), url('../img/DG.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: scroll;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.dg-experts__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(100px, 15vw, 250px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  line-height: 0.9;
  letter-spacing: -2px;
  pointer-events: none;
  user-select: none;
  text-align: center;
}

.dg-experts__header {
  margin-bottom: 56px;
}

.dg-experts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.dg-expert-card {
  background: #FFF;
  border-radius: 12px;
  padding: 24px;
}

.dg-expert-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #489EB4;
  margin-bottom: 12px;
  line-height: 1.2;
}

.dg-expert-card__text {
  font-size: 16px;
  color: #1a1a1a;
  line-height: 1.5;
}

/* ======================================================
   SECTION 9 — TU PRIMERA CAMPAÑA CTV
   ====================================================== */
.dg-cta-form {
  background: #000;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.dg-cta-form__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.dg-cta-form__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #FFF;
  line-height: 1.1;
  margin-bottom: 8px;
}

.dg-cta-form__title em {
  color: #6E6E6E;
  font-style: italic;
  font-weight: 500;
}

.dg-cta-form__subtitle {
  font-size: 13px;
  color: #6E6E6E;
  line-height: 1.5;
  margin-bottom: 24px;
}

.dg-cta-form__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.dg-cta-form__actions .dg-btn-primary {
  background: #489EB4;
  color: #FFF;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  border: none;
}

.dg-cta-form__contact-info {
  font-size: 13px;
  color: #6E6E6E;
}

.dg-cta-form__form-wrap {
  background: #4A4A4A;
  border-radius: 12px;
  padding: 32px;
}

.dg-form-group {
  margin-bottom: 12px;
}

.dg-form-group input,
.dg-form-group select,
.dg-form-group textarea {
  width: 100%;
  background: #FFF;
  border: none;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 16px;
  color: #1a1a1a;
  outline: none;
  font-family: var(--font-main);
}

.dg-form-group input::placeholder,
.dg-form-group textarea::placeholder {
  color: #A4A4A4;
}

.dg-form-submit {
  width: auto;
  display: block;
  margin: 16px auto 0;
  background: #000;
  color: #FFF;
  font-size: 12px;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.dg-form-submit:hover {
  background: #1a1a1a;
}

.dg-form-legal {
  font-size: 12px;
  color: #E1E1E1;
  text-align: center;
  line-height: 1.4;
  margin-top: 12px;
}

/* ======================================================
   FOOTER
   ====================================================== */
.dg-footer {
  background: #080808;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dg-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.dg-footer__logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--dg-white);
}

.dg-footer__logo img {
  height: 32px;
  width: auto;
  display: block;
}

.dg-footer__logo span {
  color: var(--dg-teal);
}

.dg-footer__links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.dg-footer__links li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.dg-footer__links li a:hover {
  color: var(--dg-teal);
}

.dg-footer__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1024px) {
  .dg-channels-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dg-targeting-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dg-experts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .dg-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0 40px;
  }

  .dg-hero__title,
  .dg-hero__title-alt {
    font-size: 36px;
  }

  .dg-tv-budget__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dg-tv-budget {
    overflow-x: hidden;
  }

  .dg-tv-tables {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .dg-tv-card {
    padding: 16px 12px;
    min-height: 100px;
  }

  .dg-tv-card__value {
    font-size: 18px;
    word-break: break-word;
  }

  .dg-tv-card__desc {
    font-size: 16px;
  }

  .dg-tv-col__title {
    font-size: 16px;
  }

  .dg-briefing {
    padding: 70px 0;
  }

  .dg-steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .dg-steps-grid::before {
    display: none;
  }

  .dg-channels {
    overflow-x: hidden;
  }

  .dg-channels-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 24px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .dg-channels-grid::-webkit-scrollbar {
    display: none;
  }

  .dg-channel-card {
    flex: 0 0 160px;
    flex-direction: column;
    text-align: center;
    padding: 24px 16px;
    position: relative;
    cursor: pointer;
    min-height: 180px;
    justify-content: center;
  }

  .dg-channel-card__img {
    margin: 0 auto 12px;
  }

  .dg-channel-card__content p {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(92, 92, 92, 0.98);
    border-radius: 12px;
    padding: 16px;
    color: white;
    font-size: 12px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    margin: 0;
  }

  .dg-channel-card:hover .dg-channel-card__content p,
  .dg-channel-card:active .dg-channel-card__content p {
    opacity: 1;
    pointer-events: auto;
  }

  .dg-formats__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dg-formats {
    overflow-x: hidden;
  }

  .dg-formats__right {
    min-width: 0;
  }

  .dg-formats__list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 8px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .dg-formats__list::-webkit-scrollbar {
    display: none;
  }

  .dg-format-item {
    flex: 0 0 85%;
    scroll-snap-align: center;
    margin-bottom: 0;
  }

  .dg-formats-pagination {
    display: flex;
  }

  .dg-targeting-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .dg-targeting-card {
    padding: 16px;
  }

  .dg-pricing__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dg-pricing-grid {
    grid-template-columns: 1fr;
  }

  .dg-experts-grid {
    grid-template-columns: 1fr;
  }

  .dg-cta-form__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dg-hero__stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .dg-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px;
  }

  .dg-stat:nth-child(2n) {
    border-right: none;
  }

  .dg-footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .dg-form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .dg-steps-grid {
    grid-template-columns: 1fr;
  }

  .dg-pricing-card {
    padding: 24px 20px;
  }

  .dg-hero__actions {
    flex-direction: column;
  }

  .dg-hero__actions .dg-btn-primary,
  .dg-hero__actions .dg-btn-orange {
    text-align: center;
  }
}

/* ======================================================
   ANIMATIONS
   ====================================================== */
.dg-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.dg-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.dg-fade-up:nth-child(2) {
  transition-delay: 0.1s;
}

.dg-fade-up:nth-child(3) {
  transition-delay: 0.2s;
}

.dg-fade-up:nth-child(4) {
  transition-delay: 0.3s;
}