/*
Theme Name: WalkDogs Theme
Theme URI: https://walkdogs.pe
Description: Tema personalizado para WalkDogs - Plataforma de cursos de adiestramiento canino
Author: WalkDogs
Author URI: https://walkdogs.pe
Template: generatepress
Version: 1.0.0
Text Domain: walkdogs-theme
Tags: lms, e-learning, dogs, bootstrap
*/

/* =========================================================
   WALKDOGS DESIGN SYSTEM
   ========================================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;700;800;900&display=swap');

/* --- Variables CSS WalkDogs --- */
:root {
  /* ── Colores de marca WalkDog ── */
  --wd-primary:        #38BCEB;   /* Azul cielo principal     */
  --wd-primary-dark:   #1A9FD4;   /* Azul cielo oscuro        */
  --wd-primary-light:  #7DD6F5;   /* Azul cielo claro         */
  --wd-primary-bg:     #E8F7FD;   /* Fondo azul muy suave     */

  --wd-accent:         #F5A020;   /* Naranja principal        */
  --wd-accent-dark:    #D4840A;   /* Naranja oscuro           */
  --wd-accent-light:   #FFD080;   /* Naranja claro / hover    */
  --wd-accent-bg:      #FFF4E0;   /* Fondo naranja muy suave  */

  /* Azul oscuro (para navbar, footer, textos) */
  --wd-dark:           #0D2B3E;
  --wd-dark-2:         #12384F;
  --wd-dark-3:         #1A4F6E;

  /* Neutrales */
  --wd-gray-900:       #1E2D3A;
  --wd-gray-700:       #374151;
  --wd-gray-500:       #6B7280;
  --wd-gray-300:       #D1D5DB;
  --wd-gray-100:       #F0F8FC;   /* Tono azulado muy suave   */
  --wd-white:          #FFFFFF;
  --wd-off-white:      #F8FCFF;

  /* Tipografía */
  --wd-font-body:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --wd-font-display:   'Outfit', sans-serif;

  /* Espaciado */
  --wd-radius:         12px;
  --wd-radius-lg:      20px;
  --wd-radius-xl:      32px;
  --wd-shadow:         0 4px 24px rgba(0,0,0,0.08);
  --wd-shadow-lg:      0 12px 40px rgba(0,0,0,0.15);
  --wd-shadow-color:   0 8px 32px rgba(56,188,235,0.25);

  /* Bootstrap overrides */
  --bs-primary:        #38BCEB;
  --bs-secondary:      #F5A020;
  --bs-font-sans-serif: 'Inter', sans-serif;
  --bs-border-radius:  12px;
  --bs-link-color:     #1A9FD4;
  --bs-link-hover-color: #0D2B3E;
}

/* =========================================================
   BASE & RESET
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--wd-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--wd-gray-700);
  background-color: var(--wd-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--wd-font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--wd-dark);
}

a {
  color: var(--wd-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--wd-primary-dark); }

img { max-width: 100%; height: auto; }

/* =========================================================
   NAVBAR WALKDOGS
   ========================================================= */
.wd-navbar {
  background: rgba(26, 26, 46, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1050;
  transition: all 0.3s ease;
}

.wd-navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.wd-navbar .navbar-brand {
  font-family: var(--wd-font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--wd-white) !important;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
}

.wd-navbar .navbar-brand .brand-paw {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 8px rgba(244,194,66,0.6));
  animation: paw-wiggle 3s ease-in-out infinite;
}

@keyframes paw-wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-8deg); }
  75% { transform: rotate(8deg); }
}

.wd-navbar .nav-link {
  color: rgba(255,255,255,0.8) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 28px 16px !important;
  position: relative;
  transition: color 0.2s ease;
}

.wd-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--wd-accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 2px 2px 0 0;
}

.wd-navbar .nav-link:hover,
.wd-navbar .nav-link.active {
  color: var(--wd-accent) !important;
}

.wd-navbar .nav-link:hover::after,
.wd-navbar .nav-link.active::after {
  transform: scaleX(1);
}

.wd-navbar .navbar-toggler {
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 6px 10px;
}

.wd-navbar .navbar-toggler-icon {
  filter: invert(1);
}

/* Navbar badge "LIVE" */
.nav-live-badge {
  background: #EF4444;
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Navbar dropdown */
.wd-navbar .dropdown-menu {
  background: var(--wd-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--wd-radius);
  margin-top: 0;
  padding: 8px;
  box-shadow: var(--wd-shadow-lg);
}

.wd-navbar .dropdown-item {
  color: rgba(255,255,255,0.8);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.wd-navbar .dropdown-item:hover {
  background: rgba(45,106,79,0.3);
  color: var(--wd-accent);
}

/* Dropdown perfil (navbar) */
.wd-profile-dropdown {
  position: relative;
}

.wd-profile-dropdown__toggle {
  border: none;
  background: transparent;
  padding: 0;
  line-height: 1;
  box-shadow: none !important;
}

.wd-profile-dropdown__toggle::after {
  display: none !important;
}

.wd-profile-dropdown__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 1.35rem;
  transition: background 0.2s ease;
}

.wd-profile-dropdown__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wd-profile-dropdown__toggle:hover .wd-profile-dropdown__avatar,
.wd-profile-dropdown__toggle:focus-visible .wd-profile-dropdown__avatar,
.wd-profile-dropdown.show .wd-profile-dropdown__avatar {
  background: rgba(255, 255, 255, 0.28);
}

.wd-profile-dropdown__menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wd-profile-dropdown__menu .dropdown-item i {
  font-size: 1rem;
  opacity: 0.85;
}

.wd-profile-dropdown__logout {
  color: rgba(255, 255, 255, 0.75) !important;
}

.wd-profile-dropdown__logout:hover {
  color: #fca5a5 !important;
  background: rgba(239, 68, 68, 0.15) !important;
}

/* =========================================================
   BOTONES WALKDOGS
   ========================================================= */
.btn-wd-primary {
  background: var(--wd-primary);
  color: var(--wd-white);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(45,106,79,0.35);
}

.btn-wd-primary:hover {
  background: var(--wd-primary-dark);
  color: var(--wd-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45,106,79,0.45);
}

.btn-wd-accent {
  background: var(--wd-accent);
  color: var(--wd-dark);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(244,194,66,0.35);
}

.btn-wd-accent:hover {
  background: var(--wd-accent-dark);
  color: var(--wd-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(244,194,66,0.45);
}

.btn-wd-outline {
  background: transparent;
  color: var(--wd-white);
  border: 2px solid rgba(255,255,255,0.5);
  padding: 11px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-wd-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--wd-white);
  color: var(--wd-white);
  transform: translateY(-2px);
}

/* Botón navbar CTA */
.btn-navbar-cta {
  background: var(--wd-accent);
  color: var(--wd-dark) !important;
  border-radius: 50px !important;
  padding: 10px 22px !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  margin-left: 8px;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(244,194,66,0.3);
}

.btn-navbar-cta:hover {
  background: var(--wd-accent-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244,194,66,0.4);
}

.btn-navbar-cta::after { display: none !important; }

/* =========================================================
   CARDS WALKDOGS
   ========================================================= */
.wd-card {
  background: var(--wd-white);
  border-radius: var(--wd-radius-lg);
  border: 1px solid var(--wd-gray-100);
  box-shadow: var(--wd-shadow);
  overflow: hidden;
  transition: all 0.4s ease;
}

.wd-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--wd-shadow-lg);
  border-color: rgba(45,106,79,0.2);
}

.wd-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.wd-card:hover .wd-card-img {
  transform: scale(1.05);
}

.wd-card-body {
  padding: 24px;
}

/* Card glassmorphism (sobre fondo oscuro) */
.wd-card-glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--wd-radius-lg);
  transition: all 0.4s ease;
}

.wd-card-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(244,194,66,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* =========================================================
   BADGES / ETIQUETAS
   ========================================================= */
.wd-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.wd-badge-primary { background: rgba(45,106,79,0.12); color: var(--wd-primary); }
.wd-badge-accent  { background: rgba(244,194,66,0.15); color: #9A7000; }
.wd-badge-live    { background: rgba(239,68,68,0.12); color: #DC2626; }
.wd-badge-new     { background: rgba(59,130,246,0.12); color: #1D4ED8; }

/* =========================================================
   SECCIONES & LAYOUT
   ========================================================= */
.section-py { padding: 80px 0; }
.section-py-lg { padding: 110px 0; }

.section-title {
  font-family: var(--wd-font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--wd-dark);
  margin-bottom: 16px;
}

.section-title span {
  color: var(--wd-primary);
  position: relative;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--wd-gray-500);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* Divisor decorativo */
.wd-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--wd-primary), var(--wd-accent));
  border-radius: 4px;
  margin: 16px auto 32px;
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.wd-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--wd-dark) 0%, #0F2318 50%, #1A1A2E 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.wd-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 600px at 70% 50%, rgba(45,106,79,0.2) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 20% 80%, rgba(244,194,66,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Partículas pata decorativas */
.hero-paw-particle {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.05;
  animation: float-paw 6s ease-in-out infinite;
}

@keyframes float-paw {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.05; }
  50% { transform: translateY(-20px) rotate(10deg); opacity: 0.1; }
}

.wd-hero-title {
  font-family: var(--wd-font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--wd-white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.wd-hero-title .highlight {
  color: var(--wd-accent);
  text-shadow: 0 0 40px rgba(244,194,66,0.3);
}

.wd-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 520px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.hero-stat-item {
  text-align: left;
}

.hero-stat-number {
  display: block;
  font-family: var(--wd-font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--wd-accent);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* =========================================================
   PLANES / PRICING
   ========================================================= */
.pricing-card {
  border-radius: var(--wd-radius-xl);
  border: 2px solid var(--wd-gray-100);
  padding: 40px 36px;
  background: var(--wd-white);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card.popular {
  border-color: var(--wd-primary);
  transform: scale(1.04);
  box-shadow: 0 20px 60px rgba(45,106,79,0.2);
}

.pricing-card .popular-badge {
  position: absolute;
  top: 20px;
  right: -28px;
  background: var(--wd-accent);
  color: var(--wd-dark);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 40px;
  transform: rotate(45deg);
  letter-spacing: 0.05em;
}

.pricing-price {
  font-family: var(--wd-font-display);
  font-weight: 900;
  line-height: 1;
  color: var(--wd-dark);
}

.pricing-currency {
  font-size: 1.4rem;
  vertical-align: top;
  margin-top: 8px;
  font-weight: 700;
}

.pricing-amount {
  font-size: 3.5rem;
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--wd-gray-500);
  font-family: var(--wd-font-body);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--wd-gray-100);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features .check { color: var(--wd-primary); font-weight: 700; }
.pricing-features .cross { color: var(--wd-gray-300); }

/* =========================================================
   TESTIMONIALES
   ========================================================= */
.testimonial-card {
  background: var(--wd-white);
  border-radius: var(--wd-radius-lg);
  padding: 32px;
  border: 1px solid var(--wd-gray-100);
  box-shadow: var(--wd-shadow);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--wd-shadow-lg);
}

.testimonial-stars { color: var(--wd-accent); margin-bottom: 12px; }

.testimonial-text {
  font-style: italic;
  color: var(--wd-gray-700);
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--wd-primary);
}

.testimonial-name { font-weight: 700; font-size: 0.92rem; }
.testimonial-dog  { font-size: 0.8rem; color: var(--wd-gray-500); }

/* =========================================================
   DASHBOARD
   ========================================================= */
.wd-dashboard {
  background: var(--wd-gray-100);
  min-height: 100vh;
}

.dashboard-sidebar {
  background: var(--wd-dark);
  min-height: 100vh;
  padding: 32px 0;
  width: 260px;
}

.dashboard-sidebar .nav-link {
  color: rgba(255,255,255,0.65);
  padding: 12px 24px;
  border-radius: 0 50px 50px 0;
  margin-right: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: all 0.25s ease;
}

.dashboard-sidebar .nav-link:hover,
.dashboard-sidebar .nav-link.active {
  background: rgba(45,106,79,0.25);
  color: var(--wd-accent);
}

.dashboard-sidebar .nav-link i {
  width: 20px;
  text-align: center;
  font-size: 1rem;
}

/* Progress bar */
.wd-progress { height: 8px; border-radius: 50px; background: var(--wd-gray-300); overflow: hidden; }
.wd-progress-bar {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--wd-primary), var(--wd-accent));
  transition: width 0.8s ease;
}

/* Stat cards en dashboard */
.stat-card {
  background: var(--wd-white);
  border-radius: var(--wd-radius);
  padding: 24px;
  border-left: 4px solid var(--wd-primary);
  box-shadow: var(--wd-shadow);
}

.stat-card .stat-number {
  font-family: var(--wd-font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--wd-dark);
  line-height: 1;
}

.stat-card .stat-label {
  font-size: 0.82rem;
  color: var(--wd-gray-500);
  font-weight: 500;
  margin-top: 4px;
}

/* =========================================================
   LIVE CLASS COUNTDOWN
   ========================================================= */
.countdown-widget {
  background: linear-gradient(135deg, var(--wd-primary), var(--wd-primary-dark));
  border-radius: var(--wd-radius-lg);
  padding: 28px;
  color: var(--wd-white);
  position: relative;
  overflow: hidden;
}

.countdown-widget::before {
  content: '🐕';
  position: absolute;
  right: -10px;
  bottom: -10px;
  font-size: 5rem;
  opacity: 0.1;
}

.countdown-numbers {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.countdown-unit {
  text-align: center;
}

.countdown-num {
  font-family: var(--wd-font-display);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 10px 18px;
  min-width: 70px;
}

.countdown-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-top: 6px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.wd-footer {
  background: var(--wd-dark);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}

.wd-footer h5 {
  font-family: var(--wd-font-display);
  font-weight: 700;
  color: var(--wd-white);
  margin-bottom: 20px;
  font-size: 1rem;
}

.wd-footer a {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  transition: color 0.2s ease;
  display: block;
  margin-bottom: 10px;
}

.wd-footer a:hover { color: var(--wd-accent); }

.footer-brand {
  font-family: var(--wd-font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--wd-white);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7) !important;
  font-size: 1rem;
  margin: 0;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--wd-primary);
  color: var(--wd-white) !important;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  margin-top: 50px;
  font-size: 0.85rem;
}

/* =========================================================
   PERFILES / AUTH PAGES
   ========================================================= */
.auth-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--wd-dark) 0%, #0F2318 100%);
  display: flex;
  align-items: center;
}

.auth-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--wd-radius-xl);
  padding: 48px 40px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}

.auth-card h2 {
  color: var(--wd-white);
  font-family: var(--wd-font-display);
  font-weight: 800;
  font-size: 1.8rem;
}

.auth-card .form-control {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: var(--wd-white);
  padding: 14px 18px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.auth-card .form-control:focus {
  background: rgba(255,255,255,0.1);
  border-color: var(--wd-primary);
  box-shadow: 0 0 0 4px rgba(45,106,79,0.2);
  color: var(--wd-white);
}

.auth-card .form-control::placeholder { color: rgba(255,255,255,0.35); }

.auth-card .form-label {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Botón login Google */
.btn-google {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--wd-white) !important;
  border-radius: 10px;
  padding: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-google:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.3);
}

/* =========================================================
   UTILIDADES EXTRA
   ========================================================= */
.text-primary-wd  { color: var(--wd-primary) !important; }
.text-accent-wd   { color: var(--wd-accent) !important; }
.text-secondary-wd { color: var(--wd-secondary) !important; }
.bg-primary-wd    { background: var(--wd-primary) !important; }
.bg-dark-wd       { background: var(--wd-dark) !important; }
.bg-gray-wd       { background: var(--wd-gray-100) !important; }

.gradient-text {
  background: linear-gradient(135deg, var(--wd-primary), var(--wd-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.paw-bullet::before {
  content: '🐾 ';
  font-size: 0.85em;
}

/* Animación fade-up para AOS */
[data-aos="fade-up"] { opacity: 0; transform: translateY(30px); }
[data-aos="fade-up"].aos-animate { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 767.98px) {
  .section-py { padding: 56px 0; }
  .hero-stats { gap: 20px; }
  .auth-card { padding: 32px 24px; }
  .countdown-numbers { gap: 8px; }
  .countdown-num { font-size: 1.8rem; min-width: 52px; padding: 8px 12px; }
}

/* =========================================================
   PMPRO CHECKOUT ( SINGLE COLUMN - LIGHT THEME )
   ========================================================= */
body.pmpro-checkout, .wd-split-layout {
  background-color: #f4f9fb; /* Fondo celeste clarito igual al de planes */
  min-height: 100vh;
}

.wd-split-layout {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

/* --- COLUMNA ÚNICA CENTRAL: FORMULARIO --- */
.wd-split-form-col {
  width: 100%;
  max-width: 650px;
  min-height: 100vh;
  padding: 20px; /* Reducido */
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}

.wd-back-link {
  color: var(--wd-gray-500);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 5px !important; /* Mínimo */
  display: inline-block;
}

.wd-split-title {
  color: var(--wd-dark);
  font-family: var(--wd-font-display);
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1.1;
  margin-bottom: 4px;
  text-align: center;
}

.wd-split-subtitle {
  color: var(--wd-gray-500);
  font-size: 0.85rem;
  line-height: 1.3;
  margin-bottom: 15px; /* Reducido */
  text-align: center;
}

/* === RECORTE AGRESIVO DE ESPACIOS Y ARREGLO DE FORMULARIO === */
.wd-checkout-content-wrapper .pmpro_checkout-section,
.wd-checkout-content-wrapper .pmpro_card {
  background: var(--wd-white) !important;
  border-radius: 10px !important;
  padding: 15px 20px !important; 
  margin-bottom: 8px !important; 
  box-shadow: 0 2px 10px rgba(0,0,0,0.03) !important;
  border: 1px solid rgba(0,0,0,0.05);
}

/* Forzar que CADA CAMPO ocupe su propia línea para evitar choques horizotales */
.wd-checkout-content-wrapper .pmpro_checkout-field {
  width: 100% !important;
  float: none !important;
  clear: both !important;
  margin-bottom: 12px !important;
  display: block !important;
}

.wd-checkout-content-wrapper .pmpro_checkout h3,
.wd-checkout-content-wrapper .pmpro_checkout-fields h3 {
  display: none !important;
}

/* ARREGLO PARA EL BOTÓN "SHOW PASSWORD" QUE SE SOLAPA */
.wd-checkout-content-wrapper .pmpro_hide_password,
.wd-checkout-content-wrapper .pmpro_show_password {
  position: relative !important;
  display: inline-block !important;
  top: 0 !important;
  right: 0 !important;
  margin-top: 5px !important;
  width: auto !important;
  padding: 8px 12px !important;
  font-size: 0.75rem !important;
  float: right;
}

.wd-checkout-content-wrapper p {
  margin-bottom: 8px !important;
  font-size: 0.85rem;
}

#pmpro_level_cost { display: none !important; }

.wd-checkout-content-wrapper label {
  color: var(--wd-dark) !important;
  font-weight: 700;
  margin-bottom: 4px !important;
  font-size: 0.85rem;
  display: block !important; /* Forzar etiqueta arriba */
}

/* Campos de formulario compactos y full width */
.wd-checkout-content-wrapper input[type="text"],
.wd-checkout-content-wrapper input[type="password"],
.wd-checkout-content-wrapper input[type="email"],
.wd-checkout-content-wrapper select {
  background: var(--wd-white) !important;
  border: 1px solid #e1e8ed !important;
  padding: 10px 14px !important;
  font-size: 0.9rem;
  width: 100% !important;
  box-sizing: border-box !important;
  margin-bottom: 0 !important;
}

/* Caja de "Already have an account?" al final */
.pmpro_actionlinks {
  background: #f8f9fa !important;
  padding: 15px !important;
  border-radius: 8px;
  text-align: center;
  font-size: 0.85rem;
  margin-top: 10px;
}

/* Botón de envío - FORZAR COLOR Cyan WalkDog */
.wd-checkout-content-wrapper input.pmpro_btn-submit-checkout,
.wd-checkout-content-wrapper input#pmpro_btn-submit,
.wd-checkout-content-wrapper .pmpro_btn,
.wd-checkout-content-wrapper .pmpro_submit input[type=submit] {
  background: #38bceb !important; 
  color: var(--wd-white) !important;
  border-radius: 50px !important;
  font-family: var(--wd-font-display);
  font-weight: 800 !important;
  font-size: 1rem !important;
  padding: 12px !important;
  width: 100% !important;
  border: none !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(56,188,235,0.3) !important;
  margin-top: 15px !important;
}
.wd-checkout-content-wrapper input.pmpro_btn-submit-checkout:hover {
  background: var(--wd-primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(56,188,235,0.4) !important;
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
  .wd-split-form-col { min-height: auto; padding: 40px 20px; max-width: 100%; position: static; }
}
