/* Start custom CSS for html, class: .elementor-element-70b4f89 *//* ==========================================================================
   AULAPRO — Hero Block
   Self-contained styles (prefix: aph-)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ---------- TOKENS ---------- */
:root {
  --aph-bg: #0A0E1A;
  --aph-bg-end: #0F1629;
  --aph-cyan: #00D4FF;
  --aph-cyan-soft: rgba(0, 212, 255, 0.12);
  --aph-cyan-glow: rgba(0, 212, 255, 0.30);
  --aph-orange: #FF9A1F;
  --aph-orange-end: #FFB845;
  --aph-orange-glow: rgba(255, 154, 31, 0.30);
  --aph-text: #FFFFFF;
  --aph-text-soft: rgba(255, 255, 255, 0.78);
  --aph-text-muted: rgba(255, 255, 255, 0.50);
  --aph-glass: rgba(15, 25, 45, 0.70);
  --aph-glass-border: rgba(255, 255, 255, 0.10);
  --aph-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --aph-radius: 1rem;
  --aph-transition: 0.35s cubic-bezier(.4,0,.2,1);
}

/* ---------- SECTION ---------- */
.aph-section {
  position: relative;
  width: 100%;
  padding: 4.5rem 1.5rem 5rem;
  background: linear-gradient(180deg, var(--aph-bg) 0%, var(--aph-bg-end) 100%);
  font-family: var(--aph-font);
  color: var(--aph-text);
  box-sizing: border-box;
  overflow: hidden;
}

/* Subtle grid */
.aph-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: 48px 48px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  pointer-events: none;
  z-index: 0;
}

/* Ambient glow */
.aph-section::after {
  content: '';
  position: absolute;
  top: -30%;
  left: 20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(0,212,255,0.05) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* ---------- CONTAINER ---------- */
.aph-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ---------- TWO-COLUMN GRID ---------- */
.aph-grid {
  display: grid;
  grid-template-columns: 44% 1fr;
  gap: 3.5rem;
  align-items: center;
}

/* ---------- LEFT: IMAGE + FLOATING BADGES ---------- */
.aph-image-wrap {
  position: relative;
  border-radius: 1.5rem;
  overflow: visible !important;
  z-index: 2;
}

.aph-hero-img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  border-radius: 1.5rem !important;
  /* Blend edges into dark background */
  mask-image: radial-gradient(ellipse 85% 85% at 50% 45%, black 55%, transparent 100%) !important;
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 45%, black 55%, transparent 100%) !important;
}

/* --- Floating badges (glassmorphism) --- */
.aph-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  background: var(--aph-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--aph-glass-border);
  border-radius: 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--aph-text);
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  z-index: 2;
}

.aph-float-badge-icon {
  font-size: 1rem;
  line-height: 1;
}

/* Badge positions */
.aph-badge-rating {
  top: 2%;
  right: -10%;
  animation: aph-float-1 5s ease-in-out infinite;
}
.aph-badge-ai {
  bottom: 30%;
  left: -12%;
  animation: aph-float-2 6s ease-in-out infinite;
}
.aph-badge-hours {
  bottom: 8%;
  right: -8%;
  animation: aph-float-3 5.5s ease-in-out infinite;
}

/* Float keyframes (different phases) */
@keyframes aph-float-1 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@keyframes aph-float-2 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes aph-float-3 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* Stars inside rating badge */
.aph-stars {
  color: #FFAB35;
  font-size: 0.7rem;
  letter-spacing: 1px;
}

.aph-badge-highlight {
  color: var(--aph-cyan);
  font-weight: 700;
}

/* ---------- RIGHT: CONTENT ---------- */
.aph-content {
  display: flex;
  flex-direction: column;
}

/* Top badge pill */
.aph-pill {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.35rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--aph-cyan);
  background: var(--aph-cyan-soft);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}

/* Heading */
.aph-heading {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--aph-text);
  text-shadow: 0 0 50px rgba(0,212,255,0.08);
  margin: 0 0 1.1rem;
}

/* Subtitle */
.aph-subtitle {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--aph-text-soft);
  margin: 0 0 2rem;
  max-width: 520px;
}

/* ---------- BUTTONS ---------- */
.aph-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.aph-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--aph-font);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--aph-transition);
  position: relative;
  overflow: hidden;
}

/* Primary: orange gradient */
.aph-btn-primary {
  background: linear-gradient(135deg, var(--aph-orange), var(--aph-orange-end));
  color: #1A0A00 !important;
  box-shadow: 0 8px 28px var(--aph-orange-glow);
}
.aph-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.aph-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(255,154,31,0.45);
  filter: brightness(1.06);
  color: #1A0A00 !important;
}
.aph-btn-primary:hover::before {
  transform: translateX(100%);
}
.aph-btn-primary:visited,
.aph-btn-primary:focus,
.aph-btn-primary:active {
  color: #1A0A00 !important;
}

/* Secondary: ghost/outline cyan */
.aph-btn-secondary {
  background: rgba(0, 30, 55, 0.30);
  border: 2px solid rgba(0,212,255,0.40);
  color: var(--aph-text) !important;
  box-shadow: 0 0 14px rgba(0,212,255,0.06);
}
.aph-btn-secondary:hover {
  background: rgba(0, 60, 100, 0.35);
  border-color: var(--aph-cyan);
  transform: translateY(-3px);
  box-shadow: 0 0 24px rgba(0,212,255,0.15);
  color: var(--aph-text) !important;
}
.aph-btn-secondary:visited,
.aph-btn-secondary:focus,
.aph-btn-secondary:active {
  color: var(--aph-text) !important;
}

/* ---------- SEARCH FIELD WRAPPER ---------- */
.aph-search-wrap {
  margin-bottom: 0.75rem;
  max-width: 480px;
}

/* ---------- MICROCOPY ---------- */
.aph-microcopy {
  font-size: 0.88rem !important;
  line-height: 1.4 !important;
  color: rgba(255, 184, 69, 0.85); /* Naranja suave (brand color) */
  margin: 0 !important;
  max-width: 420px;
}

/* ---------- DECORATIVE CORNER ELEMENTS ---------- */
.aph-deco-tr {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 16px 16px;
  mask-image: radial-gradient(ellipse 100% 100% at 100% 0%, black 15%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 100% 0%, black 15%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* ---------- ENTRANCE ANIMATIONS ---------- */
@keyframes aph-fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes aph-fade-left {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.aph-anim-up { animation: aph-fade-up 0.7s ease-out both; }
.aph-anim-left { animation: aph-fade-left 0.7s ease-out both; }
.aph-d1 { animation-delay: 0.1s; }
.aph-d2 { animation-delay: 0.2s; }
.aph-d3 { animation-delay: 0.3s; }
.aph-d4 { animation-delay: 0.4s; }
.aph-d5 { animation-delay: 0.5s; }
.aph-d6 { animation-delay: 0.55s; }
.aph-d7 { animation-delay: 0.65s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .aph-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .aph-image-wrap {
    max-width: 420px;
    margin: 0 auto;
  }
  .aph-content {
    align-items: center;
  }
  .aph-pill { align-self: center; }
  .aph-subtitle { max-width: 600px; }
  .aph-search-wrap { max-width: 500px; margin-left: auto; margin-right: auto; }
  .aph-microcopy { max-width: 500px; text-align: center; }
}

@media (max-width: 768px) {
  .aph-section {
    padding: 3rem 1.25rem 3.5rem;
  }
  .aph-heading {
    font-size: clamp(1.7rem, 7vw, 2.3rem);
  }
  .aph-subtitle {
    font-size: 0.95rem;
  }
  .aph-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .aph-btn {
    width: 100%;
    text-align: center;
  }
  .aph-badge-ai {
    display: none;
  }
  .aph-badge-rating {
    right: 2%;
  }
}

@media (max-width: 480px) {
  .aph-float-badge {
    font-size: 0.68rem;
    padding: 0.4rem 0.7rem;
  }
  .aph-badge-hours {
    display: none;
  }
}/* End custom CSS */