/* ==========================================
   ESTILOS PODCAST PACOZOM
   Marca Personal & Tips para Crecer Negocios
   ========================================== */

:root {
  --podcast-accent: #e3d043;
  --podcast-accent-2: #ffeb99;
  --podcast-bg: #172f3e;
  --podcast-card: #12313b;
  --podcast-muted: rgba(255, 255, 255, 0.8);
  --podcast-radius: 14px;
  --podcast-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   SECCIÓN PODCAST BLOG
   ========================================== */

.podcast-section {
  margin: 60px 0;
  padding: 50px 0;
  position: relative;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.podcast-header {
  text-align: center;
  margin-bottom: 40px;
  animation: fadeInDown 0.8s ease-out;
}

.podcast-emoji {
  font-size: 3.5rem;
  margin-bottom: 16px;
  display: block;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.podcast-title {
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(28px, 5vw, 48px);
  color: var(--podcast-accent);
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.podcast-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: #ffffff;
  font-weight: 300;
  margin: 0 0 8px;
  letter-spacing: 0.2px;
}

.podcast-description {
  font-size: 15px;
  color: var(--podcast-muted);
  max-width: 700px;
  margin: 12px auto 0;
  line-height: 1.8;
}

.podcast-divider {
  width: 200px;
  height: 8px;
  background: linear-gradient(90deg, var(--podcast-accent), var(--podcast-accent-2));
  border-radius: 10px;
  margin: 20px auto 0;
  box-shadow: 0 8px 24px rgba(227, 208, 67, 0.2);
  animation: dividePulse 3s ease-in-out infinite;
}

@keyframes dividePulse {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(1.05); }
}

/* ==========================================
   GRID PODCAST
   ========================================== */

.podcast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin: 40px 0 0;
}

@media (max-width: 768px) {
  .podcast-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ==========================================
   PODCAST CARD - PRESENTACIÓN
   ========================================== */

.podcast-card {
  background: linear-gradient(135deg, var(--podcast-card) 0%, rgba(18, 49, 59, 0.8) 100%);
  border: 1px solid rgba(227, 208, 67, 0.15);
  border-radius: var(--podcast-radius);
  padding: 32px;
  transition: var(--podcast-transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.podcast-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--podcast-accent), var(--podcast-accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--podcast-transition);
}

.podcast-card:hover {
  border-color: rgba(227, 208, 67, 0.35);
  box-shadow: 0 20px 60px rgba(227, 208, 67, 0.15);
  transform: translateY(-6px);
}

.podcast-card:hover::before {
  transform: scaleX(1);
}

.podcast-cover {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  transition: var(--podcast-transition);
}

.podcast-card:hover .podcast-cover {
  transform: scale(1.03);
  box-shadow: 0 16px 48px rgba(227, 208, 67, 0.2);
}

.podcast-card-title {
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(18px, 3vw, 24px);
  color: var(--podcast-accent);
  margin: 0 0 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.podcast-card-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.podcast-card-desc {
  font-size: 15px;
  color: var(--podcast-muted);
  margin: 0 0 24px;
  line-height: 1.7;
  flex-grow: 1;
}

.podcast-listeners {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.podcast-listeners-icon {
  font-size: 16px;
}

/* ==========================================
   PODCAST CTA BUTTONS
   ========================================== */

.podcast-ctas {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

@media (min-width: 600px) {
  .podcast-ctas {
    flex-direction: row;
  }
}

.podcast-btn {
  padding: 14px 24px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--podcast-transition);
  text-align: center;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  flex: 1;
}

@media (max-width: 600px) {
  .podcast-btn {
    flex: 1;
    padding: 12px 16px;
    font-size: 13px;
  }
}

.podcast-btn-primary {
  background: linear-gradient(135deg, var(--podcast-accent), var(--podcast-accent-2));
  color: var(--podcast-bg);
  box-shadow: 0 8px 24px rgba(227, 208, 67, 0.25);
}

.podcast-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(227, 208, 67, 0.4);
}

.podcast-btn-primary:active {
  transform: translateY(-1px);
}

.podcast-btn-secondary {
  background: transparent;
  color: var(--podcast-accent);
  border: 2px solid var(--podcast-accent);
}

.podcast-btn-secondary:hover {
  background: rgba(227, 208, 67, 0.1);
  border-color: var(--podcast-accent-2);
  color: var(--podcast-accent-2);
}

.podcast-btn-icon {
  font-size: 16px;
}

/* ==========================================
   SECCIÓN PODCAST WIDGET (PAGINAHOME)
   ========================================== */

.podcast-widget-section {
  background: linear-gradient(135deg, rgba(227, 208, 67, 0.08) 0%, rgba(255, 235, 153, 0.04) 100%);
  border: 1px solid rgba(227, 208, 67, 0.15);
  border-radius: var(--podcast-radius);
  padding: clamp(32px, 5vw, 50px);
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.podcast-widget-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(227, 208, 67, 0.08), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.podcast-widget-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.podcast-widget-header {
  text-align: center;
  margin-bottom: 40px;
}

.podcast-widget-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 12px;
}

.podcast-widget-title {
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(26px, 4vw, 42px);
  color: var(--podcast-accent);
  margin: 0 0 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.podcast-widget-subtitle {
  font-size: 16px;
  color: var(--podcast-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==========================================
   PODCAST GRID WIDGET (2 COL)
   ========================================== */

.podcast-widget-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .podcast-widget-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.podcast-widget-card {
  background: linear-gradient(135deg, var(--podcast-card) 0%, rgba(18, 49, 59, 0.8) 100%);
  border: 1px solid rgba(227, 208, 67, 0.15);
  border-radius: var(--podcast-radius);
  padding: 28px;
  transition: var(--podcast-transition);
  position: relative;
  text-align: center;
}

.podcast-widget-card:hover {
  border-color: rgba(227, 208, 67, 0.35);
  box-shadow: 0 16px 48px rgba(227, 208, 67, 0.15);
  transform: translateY(-4px);
}

.podcast-widget-number {
  font-size: 2.5rem;
  color: var(--podcast-accent);
  margin-bottom: 12px;
  font-weight: 700;
}

.podcast-widget-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin: 0;
}

/* ==========================================
   PODCAST CALL-TO-ACTION
   ========================================== */

.podcast-cta-section {
  text-align: center;
  margin-top: 48px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(227, 208, 67, 0.1), transparent);
  border-radius: var(--podcast-radius);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.podcast-cta-title {
  font-size: clamp(20px, 3vw, 28px);
  color: #ffffff;
  margin: 0 0 12px;
  font-weight: 600;
}

.podcast-cta-desc {
  font-size: 14px;
  color: var(--podcast-muted);
  margin: 0 0 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.podcast-cta-btn {
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--podcast-accent), var(--podcast-accent-2));
  color: var(--podcast-bg);
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--podcast-transition);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 36px rgba(227, 208, 67, 0.3);
}

.podcast-cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(227, 208, 67, 0.4);
}

.podcast-cta-btn:active {
  transform: translateY(-2px);
}

.podcast-cta-icon {
  font-size: 18px;
}

/* ==========================================
   RESPONSIVE ADJUSTMENTS
   ========================================== */

@media (max-width: 768px) {
  .podcast-section {
    margin: 40px 0;
    padding: 40px 0;
  }

  .podcast-header {
    margin-bottom: 30px;
  }

  .podcast-emoji {
    font-size: 2.5rem;
  }

  .podcast-title {
    font-size: 32px;
  }

  .podcast-widget-section {
    margin: 40px 0;
    padding: 24px;
  }

  .podcast-card {
    padding: 24px;
  }

  .podcast-ctas {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .podcast-section {
    margin: 32px 0;
    padding: 32px 0;
  }

  .podcast-title {
    font-size: 24px;
  }

  .podcast-card {
    padding: 16px;
  }

  .podcast-btn {
    padding: 12px 16px;
    font-size: 12px;
  }

  .podcast-widget-section {
    padding: 16px;
  }

  .podcast-widget-title {
    font-size: 24px;
  }
}

/* ==========================================
   ACCESIBILIDAD
   ========================================== */

.podcast-btn:focus,
.podcast-cta-btn:focus {
  outline: 3px solid var(--podcast-accent);
  outline-offset: 2px;
}

/* Soporte para prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .podcast-emoji,
  .podcast-section,
  .podcast-header,
  .podcast-card,
  .podcast-divider,
  .podcast-cta-section {
    animation: none;
  }

  .podcast-card,
  .podcast-btn,
  .podcast-cta-btn,
  .podcast-widget-card {
    transition: none;
  }
}

/* Dark mode soporte (opcional) */
@media (prefers-color-scheme: dark) {
  .podcast-section,
  .podcast-card {
    border-color: rgba(227, 208, 67, 0.2);
  }
}
