/* ==========================================================================
   MORAL PÓLIZAS - DESIGN SYSTEM & ULTRA PREMIUM STYLES
   Platinum Silver & Royal Purple | Light Glassmorphism | Ultra Responsive
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette - Royal Purple & Platinum Silver Light Glass */
  --bg-main: #F8F9FC;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-card-hover: rgba(255, 255, 255, 0.98);
  --bg-glass-nav: rgba(248, 249, 252, 0.88);
  --bg-glass-input: #FFFFFF;
  
  --accent-purple: #553F85; /* Official Moral Pólizas Purple */
  --accent-purple-dark: #3B2A5E;
  --accent-purple-light: #7257A6;
  --accent-purple-glow: rgba(85, 63, 133, 0.2);
  
  --accent-silver: #E2E8F0;
  --accent-silver-bright: #F1F5F9;
  --accent-silver-metallic: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 50%, #CBD5E1 100%);
  --accent-silver-border: rgba(148, 163, 184, 0.3);
  
  --accent-gold-subtle: #D4AF37;
  
  --text-heading: #1A1528;
  --text-body: #334155;
  --text-muted: #64748B;
  
  --border-glass: rgba(85, 63, 133, 0.12);
  --border-glass-bright: rgba(85, 63, 133, 0.3);
  
  --shadow-luxe: 0 25px 50px -12px rgba(85, 63, 133, 0.12), 0 10px 20px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 30px rgba(85, 63, 133, 0.15);
  
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 36px;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Global Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-body);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background-image: linear-gradient(rgba(248, 249, 252, 0.88), rgba(248, 249, 252, 0.94)), url('assets/fondo_white.jpeg');
  background-repeat: repeat;
  background-size: cover;
  background-attachment: fixed;
  line-height: 1.6;
}

/* Background Ambient Orbs */
.ambient-glow {
  position: fixed;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(85, 63, 133, 0.08) 0%, rgba(255,255,255,0) 70%);
  top: -200px;
  right: -150px;
  pointer-events: none;
  z-index: 0;
  filter: blur(90px);
}

.ambient-glow-2 {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 232, 240, 0.8) 0%, rgba(255,255,255,0) 70%);
  bottom: 10%;
  left: -150px;
  pointer-events: none;
  z-index: 0;
  filter: blur(100px);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text-heading);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 5vw, 4.3rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
h4 { font-size: 1.35rem; }

p {
  color: var(--text-body);
  font-weight: 400;
}

.text-gradient {
  background: linear-gradient(135deg, var(--text-heading) 0%, var(--accent-purple) 60%, var(--accent-purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-purple {
  color: var(--accent-purple);
}

.text-muted {
  color: var(--text-muted);
}

/* Clean Category Subtitles */
.section-category {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-purple);
  margin-bottom: 12px;
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.section-spacing {
  padding: 120px 0;
}

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

/* Light Glassmorphism Card Element */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-luxe);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glass-bright);
  box-shadow: var(--shadow-luxe), var(--shadow-glow);
  transform: translateY(-4px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-purple-dark) 100%);
  color: #FFFFFF;
  box-shadow: 0 10px 25px rgba(85, 63, 133, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-purple-light) 0%, var(--accent-purple) 100%);
  box-shadow: 0 15px 35px rgba(85, 63, 133, 0.45);
  transform: translateY(-2px);
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--text-heading);
  border: 1px solid var(--border-glass-bright);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.btn-secondary:hover {
  background: var(--accent-silver-bright);
  border-color: var(--accent-purple);
  color: var(--accent-purple);
  transform: translateY(-2px);
}

.btn-silver {
  background: var(--accent-silver-metallic);
  color: var(--text-heading);
  font-weight: 700;
  border: 1px solid var(--accent-silver-border);
  box-shadow: 0 8px 20px rgba(148, 163, 184, 0.25);
}

.btn-silver:hover {
  background: #FFFFFF;
  border-color: var(--accent-purple);
  color: var(--accent-purple);
  transform: translateY(-2px);
}

/* Dynamic Header Navigation with Prominent Logo */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

.header-nav.scrolled {
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: 0 10px 30px rgba(85, 63, 133, 0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

/* Prominent Logo Sizing */
.brand-logo img {
  height: 72px; /* Increased logo prominence */
  width: auto;
  transition: var(--transition-smooth);
  filter: drop-shadow(0 4px 10px rgba(85, 63, 133, 0.15));
}

.header-nav.scrolled .brand-logo img {
  height: 60px;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.brand-name span {
  color: var(--accent-purple);
  font-size: 0.8rem;
  display: block;
  font-family: var(--font-sans);
  letter-spacing: 0.15em;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-body);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--accent-purple);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-heading);
  font-size: 1.6rem;
  cursor: pointer;
}

/* HERO SECTION */
.hero-section {
  padding-top: 200px;
  padding-bottom: 100px;
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  margin: 12px 0 24px 0;
}

.hero-content p.subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--accent-silver);
}

.stat-item h3 {
  font-family: var(--font-sans);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--accent-purple);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.hero-visual {
  position: relative;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(85, 63, 133, 0.18);
  box-shadow: var(--shadow-luxe);
}

.hero-image-frame img {
  width: 100%;
  height: 490px;
  object-fit: cover;
  display: block;
}

.floating-glass-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(85, 63, 133, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px -10px rgba(59, 42, 94, 0.15), 0 0 20px rgba(114, 87, 166, 0.08);
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 350px;
  transition: var(--transition-smooth);
}

.floating-glass-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -10px rgba(59, 42, 94, 0.2), 0 0 25px rgba(114, 87, 166, 0.15);
  border-color: rgba(85, 63, 133, 0.35);
}

.badge-seal-container {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(85, 63, 133, 0.12) 0%, rgba(114, 87, 166, 0.05) 100%);
  border: 1px solid rgba(85, 63, 133, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-purple);
  flex-shrink: 0;
}

.badge-details h4 {
  font-size: 1.05rem;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.2;
}

.badge-details p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.3;
  margin-top: 2px;
}

.badge-status {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #10B981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.status-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent-purple);
  text-transform: uppercase;
}

/* SECTION: ABOUT / VALUES */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.value-card {
  padding: 24px;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  border: 1px solid rgba(85, 63, 133, 0.08);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(85, 63, 133, 0.25);
  box-shadow: 0 15px 30px rgba(85, 63, 133, 0.08);
}

.value-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(85, 63, 133, 0.08) 0%, rgba(226, 232, 240, 0.4) 100%);
  border: 1px solid rgba(85, 63, 133, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-purple);
  margin-bottom: 16px;
  transition: var(--transition-smooth);
}

.value-card:hover .value-icon-box {
  background: var(--accent-purple);
  color: #FFFFFF;
  border-color: var(--accent-purple);
  box-shadow: 0 8px 20px rgba(85, 63, 133, 0.25);
}

.value-card h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--text-heading);
  font-family: var(--font-sans);
  font-weight: 700;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* SECTION: INTERACTIVE POLIZAS CALCULATOR & TIERS */
.calculator-box {
  padding: 40px;
  margin-bottom: 60px;
  background: #FFFFFF;
  border: 1px solid var(--border-glass-bright);
}

.calc-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
}

.range-slider-group label {
  display: block;
  font-size: 0.95rem;
  color: var(--text-heading);
  margin-bottom: 12px;
  font-weight: 600;
}

.rent-display {
  font-family: var(--font-sans);
  font-size: 2.3rem;
  color: var(--accent-purple);
  font-weight: 700;
}

input[type="range"] {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--accent-silver);
  outline: none;
  accent-color: var(--accent-purple);
  cursor: pointer;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tier-card {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  background: #FFFFFF;
}

.tier-card.featured {
  border-color: var(--accent-purple);
  box-shadow: var(--shadow-luxe), 0 0 30px rgba(85, 63, 133, 0.15);
  background: #FFFFFF;
}

.ribbon-featured {
  position: absolute;
  top: -14px;
  right: 24px;
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-purple-light) 100%);
  color: #FFFFFF;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tier-header h3 {
  margin-bottom: 12px;
  color: var(--text-heading);
}

.tier-price-box {
  margin: 24px 0;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--accent-silver);
}

.tier-price {
  font-family: var(--font-sans);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-heading);
}

.tier-price span.mxn {
  font-size: 1.2rem;
  color: var(--accent-purple);
  font-family: var(--font-sans);
  font-weight: 600;
  margin-left: 6px;
}

.tier-features {
  list-style: none;
  margin-bottom: 32px;
}

.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--text-body);
}

.tier-features li i {
  color: var(--accent-purple);
  font-size: 1rem;
  margin-top: 3px;
}

.tier-features li.disabled {
  color: #94A3B8;
  opacity: 0.6;
}

.tier-features li.disabled i {
  color: #CBD5E1;
}

/* SECTION: COMPARATIVE TABLE */
.table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass-bright);
  box-shadow: var(--shadow-luxe);
}

.comparative-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: #FFFFFF;
}

.comparative-table th, .comparative-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--accent-silver);
}

.comparative-table th {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--text-heading);
  font-size: 1.05rem;
  background: var(--accent-silver-bright);
}

.comparative-table tbody tr:hover {
  background: rgba(85, 63, 133, 0.03);
}

.check-icon {
  color: var(--accent-purple);
  font-size: 1.2rem;
}

.cross-icon {
  color: #CBD5E1;
}

/* SECTION: DOWNLOADS & DOCUMENTS */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.doc-group-card {
  padding: 32px;
  background: #FFFFFF;
}

.doc-group-card h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent-purple);
}

.doc-link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg-main);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-heading);
  text-decoration: none;
  margin-bottom: 12px;
  transition: var(--transition-smooth);
  font-weight: 500;
}

.doc-link-item:hover {
  background: #FFFFFF;
  border-color: var(--accent-purple);
  color: var(--accent-purple);
  box-shadow: 0 4px 15px rgba(85, 63, 133, 0.1);
  transform: translateX(4px);
}

/* SECTION: COTIZACIÓN FORM & MODAL */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-heading);
  margin-bottom: 8px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  background: #FFFFFF;
  border: 1px solid var(--border-glass-bright);
  border-radius: var(--radius-sm);
  color: var(--text-heading);
  font-size: 1rem;
  font-family: var(--font-sans);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-purple);
  box-shadow: 0 0 15px var(--accent-purple-glow);
  background: #FFFFFF;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* FAQ ACCORDION */
.faq-list {
  max-width: 800px;
  margin: 50px auto 0 auto;
}

.faq-item {
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 24px 30px;
  background: #FFFFFF;
  border: 1px solid var(--border-glass);
  color: var(--text-heading);
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.faq-question:hover {
  background: var(--accent-silver-bright);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #FFFFFF;
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 24px 30px;
  border-top: 1px solid var(--accent-silver);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--accent-purple);
}

/* FOOTER */
.footer-luxe {
  background: linear-gradient(180deg, rgba(17, 12, 29, 0.88) 0%, rgba(11, 8, 19, 0.95) 100%), url('assets/fondo_purple.jpeg') center/cover no-repeat;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 80px;
  padding-bottom: 40px;
  color: #FFFFFF;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #CBD5E1;
  text-decoration: none;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #A88BFA;
}

.copyright-bar {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #94A3B8;
  font-size: 0.875rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 99;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

/* Búho MP Digital Mascot Components */
.buho-seal-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(85, 63, 133, 0.3));
  transition: transform 0.3s ease;
}

.floating-glass-badge:hover .buho-seal-img {
  transform: scale(1.1) rotate(-4deg);
}

/* Mascot Feature Card in About Section */
.mascot-feature-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  margin-top: 24px;
  border: 1px solid rgba(85, 63, 133, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 240, 255, 0.9) 100%);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(85, 63, 133, 0.08);
}

.mascot-section-img {
  width: 75px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(85, 63, 133, 0.25));
  animation: floatMascot 4s ease-in-out infinite;
}

@keyframes floatMascot {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.mascot-section-content h4 {
  font-size: 1.25rem;
  color: var(--accent-purple-dark);
  margin-top: 4px;
  margin-bottom: 4px;
}

.mascot-section-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.badge-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-purple);
  background: rgba(85, 63, 133, 0.1);
  padding: 3px 10px;
  border-radius: 12px;
  text-transform: uppercase;
}

/* Floating Búho MP Assistant Pill (Bottom Left) */
.mascot-floating-widget {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.mascot-speech-bubble {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass-bright);
  padding: 8px 14px;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-purple-dark);
  box-shadow: 0 8px 20px rgba(85, 63, 133, 0.15);
  animation: fadeInBubble 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 1200px) {
  .mascot-floating-widget {
    bottom: 20px;
    left: 20px;
  }
  .mascot-speech-bubble {
    display: none;
  }
}

@keyframes fadeInBubble {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mascot-pill-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(85, 63, 133, 0.25);
  padding: 8px 18px 8px 10px;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(85, 63, 133, 0.15);
  transition: var(--transition-smooth);
}

.mascot-pill-btn:hover {
  background: #FFFFFF;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 35px rgba(85, 63, 133, 0.25);
  border-color: var(--accent-purple);
}

.mascot-buho-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(85, 63, 133, 0.3));
}

.mascot-badge-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent-purple-dark);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .calc-inputs, .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .tiers-grid, .docs-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(11, 8, 19, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid var(--border-glass);
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-stats-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
