/* =====================================================================
   PAGE MODULE — en-services-branding-video-strategy
   Extracted verbatim from inline <style> of: servicios/branding/estrategia-video.html, en/services/branding/video-strategy.html
   Design unchanged; loaded via `pageCss` front-matter.
   ===================================================================== */

/* Hero Video Background */
.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(38, 49, 89, 0.7) 0%, rgba(166, 25, 99, 0.5) 100%);
  z-index: 2;
}

.video-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 2rem;
}

.video-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.2;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.video-content h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 1.5rem;
  color: white;
  opacity: 0.95;
  line-height: 1.4;
}

.video-content .hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 0 0 2rem;
  opacity: 0.9;
  max-width: 75ch;
  margin-left: auto;
  margin-right: auto;
}

/* Content Sections */
.content-section {
  padding: 5rem 3rem;
}

.content-section.bg-light {
  background: #FAF9F6;
}

.content-section.first {
  padding-top: 6rem;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #263159;
  margin: 0 0 1rem;
}

.section-header .subtitle {
  font-size: 1.125rem;
  color: #718096;
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid Layouts */
.three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.two-col-grid:last-child {
  margin-bottom: 0;
}

.icon-60 {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.icon-50 {
  width: 50px;
  height: 50px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.gradient-bg {
  background: linear-gradient(135deg, #17A7AF 0%, #A61963 100%);
  padding: 15px;
}

.icon-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4A5568;
  margin: 0;
}

.icon-card a {
  color: #17A7AF;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.icon-card a:hover {
  border-bottom-color: #17A7AF;
}


/* Text Content */
.text-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #263159;
  margin: 0 0 1.5rem;
}

.text-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #263159;
  margin: 0 0 1.5rem;
}

.text-content p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #4A5568;
  margin: 0 0 1.5rem;
  max-width: 75ch;
}

.image-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Portrait Video */
.video-content-portrait {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.portrait-video {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .video-content-portrait {
    max-width: 100%;
  }
}

/* Feature Blocks */
.feature-blocks {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-block {
  text-align: center;
}

.feature-block h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #263159;
  margin: 0 0 1rem;
}

.feature-block p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4A5568;
  margin: 0;
}

/* Industry Grid */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

/* Pricing Cards */
.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

/* Platform Grid */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.platform-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.platform-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #263159;
  margin: 0 0 1rem;
  text-align: center;
}

.platform-card h3 i {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #17A7AF 0%, #A61963 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  vertical-align: middle;
  margin-right: 0.5rem;
}

.platform-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4A5568;
  margin: 0;
  text-align: left;
}

.platform-card strong {
  display: block;
  color: #263159;
  margin-bottom: 0.5rem;
}

/* Pricing Cards */

.pricing-card {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  border: 3px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.pricing-card.traditional {
  border-color: #17A7AF;
}

.pricing-card.ai-video {
  border-color: #A61963;
}

.card-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #A61963 0%, #752574 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #E2E8F0;
}

.card-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #263159;
  margin: 1rem 0 0.5rem;
}

.card-subtitle {
  font-size: 1rem;
  color: #718096;
  margin: 0;
}

.card-features {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4A5568;
}

.check-icon {
  color: #17A7AF;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.card-ideal {
  background: #FAF9F6;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4A5568;
}

.card-ideal strong {
  color: #263159;
  display: block;
  margin-bottom: 0.5rem;
}

.card-cta {
  text-align: center;
}

.comparison-note {
  margin-top: 3rem;
  padding: 2rem;
  background: white;
  border-radius: 8px;
  text-align: center;
  border-left: 4px solid #17A7AF;
}

.comparison-note p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #4A5568;
  margin: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-note strong {
  color: #263159;
}

/* Industry Grid */

.industry-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.industry-card h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #263159;
  margin: 0 0 1.5rem;
}

.industry-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.industry-card li {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4A5568;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.industry-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #17A7AF;
  font-weight: 600;
}

.industry-card a {
  color: #17A7AF;
  text-decoration: none;
}

.industry-card a:hover {
  text-decoration: underline;
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #263159;
  margin: 0 0 1rem;
}

.faq-item p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4A5568;
  margin: 0;
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 4rem 3rem;
  border-radius: 12px;
  text-align: center;
  overflow: hidden;
}

.cta-section.gradient-teal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://cdn.emkt.mx/icons/services/icon-video-camera.svg');
  background-repeat: repeat;
  background-size: 120px 120px;
  opacity: 0.08;
  z-index: 1;
  filter: brightness(0) invert(1);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.cta-content p {
  color: white;
  font-size: 1.125rem;
  margin: 0 0 2rem;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-video {
    height: 80vh;
    min-height: 500px;
  }
  
  .hero-video-bg {
    display: none;
  }
  
  .hero-video {
    background: linear-gradient(135deg, #263159 0%, #A61963 100%);
  }
  
  .video-content {
    padding-top: 6rem;
  }
  
  .video-content h1 {
    font-size: 2rem;
  }
  
  .video-content h2 {
    font-size: 1.125rem;
  }
  
  .video-content .hero-description {
    font-size: 1rem;
  }
  
  .content-section {
    padding: 3rem 1rem;
  }
  
  .content-section.first {
    padding-top: 4rem;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .three-col-grid,
  .two-col-grid,
  .industry-grid,
  .platform-grid,
  .pricing-cards-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-section {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 640px) {
  .video-content h1 {
    font-size: 1.75rem;
  }
}
