/* ================================================
   ESTILOS PARA BANNER DE LUJO
   ================================================ */

/* === BASE LUXURY HERO === */
.luxury-hero-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background: #0a0a0a;
}

.luxury-hero-container {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 5vw;
}

/* === BACKGROUND LAYER SYSTEM === */
.hero-background-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) saturate(1.2);
  transform: scale(1.02);
  transition: transform 12s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.luxury-hero-container:hover .hero-background-image {
  transform: scale(1.08);
}

.background-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
    background:
    radial-gradient(circle at 30% 20%, rgba(0, 112, 180, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(0, 112, 180, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 2;
}

.background-overlay-mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.02) 1px, transparent 0);
  background-size: 20px 20px;
  z-index: 3;
}

.background-noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  z-index: 4;
}

/* === LUXURY DECORATIVE ELEMENTS === */
.luxury-decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.orb-1 {
  width: 120px;
  height: 120px;
  top: 15%;
  right: 20%;
  animation: float-luxury-1 8s ease-in-out infinite;
}

.orb-2 {
  width: 80px;
  height: 80px;
  top: 70%;
  right: 15%;
  animation: float-luxury-2 10s ease-in-out infinite;
}

.orb-3 {
  width: 60px;
  height: 60px;
  top: 40%;
  right: 35%;
  animation: float-luxury-3 12s ease-in-out infinite;
}

.geometric-shape {
  position: absolute;
  background: linear-gradient(45deg, rgba(0, 112, 180, 0.1), rgba(0, 112, 180, 0.05));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.shape-1 {
  width: 40px;
  height: 40px;
  top: 25%;
  right: 45%;
  transform: rotate(45deg);
  animation: rotate-float-1 15s linear infinite;
}

.shape-2 {
  width: 24px;
  height: 24px;
  top: 60%;
  right: 50%;
  border-radius: 4px;
  animation: rotate-float-2 20s linear infinite;
}

/* === CONTENT CONTAINER === */
.hero-content-container {
  position: relative;
  z-index: 6;
  max-width: 800px;
  width: 100%;
}

.luxury-content-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(60px);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  animation: slide-in-luxury 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.luxury-content-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}

/* === TYPOGRAPHY SYSTEM === */
.title-section {
  margin-bottom: 2.5rem;
}

.luxury-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
}

.title-primary {
  display: block;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.title-accent {
  display: block;
  background: linear-gradient(135deg, #0070b4 0%, #0070B4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
  position: relative;
}

.title-underline {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #0070b4, #0070b4);
  border-radius: 2px;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}

.title-underline::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shimmer-underline 3s ease-in-out infinite;
}

/* === CONTENT SECTIONS === */
.content-section {
  margin-bottom: 3rem;
}

.primary-description,
.secondary-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.primary-description p,
.secondary-description p {
  margin-bottom: 1rem;
}

.secondary-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

/* === LUXURY CTA BUTTON === */
.action-section {
  margin-top: 3rem;
}

.luxury-cta-button {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: linear-gradient(135deg, rgba(0, 112, 180, 0.9), rgba(0, 112, 180, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.025em;
  backdrop-filter: blur(20px);
    box-shadow:
    0 8px 32px rgba(0, 112, 180, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.cta-content {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.cta-icon {
  transition: transform 0.3s ease;
}

.cta-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.luxury-cta-button:hover {
  transform: translateY(-2px);
    box-shadow:
    0 12px 48px rgba(0, 112, 180, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: white;
  text-decoration: none;
}

.luxury-cta-button:hover .cta-icon {
  transform: translateX(4px);
}

.luxury-cta-button:hover .cta-shimmer {
  left: 100%;
}

/* === SCROLL INDICATOR === */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 6;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.4), transparent);
  margin-bottom: 8px;
}

.scroll-dot {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: scroll-pulse 2s ease-in-out infinite;
}

/* === ANIMATIONS === */
@keyframes slide-in-luxury {
  from {
    opacity: 0;
    transform: translateX(-60px) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

@keyframes float-luxury-1 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes float-luxury-2 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(-180deg); }
}

@keyframes float-luxury-3 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-25px) rotate(90deg); }
}

@keyframes rotate-float-1 {
  from { transform: rotate(45deg) translateY(0px); }
  to { transform: rotate(405deg) translateY(-10px); }
}

@keyframes rotate-float-2 {
  from { transform: rotate(0deg) translateY(0px); }
  to { transform: rotate(360deg) translateY(-5px); }
}

@keyframes shimmer-underline {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.6; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(5px); }
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
  .luxury-hero-container {
    padding: 0 4vw;
  }

  .luxury-content-card {
    padding: 3rem;
  }
}

@media (max-width: 768px) {
  .luxury-hero-container {
    padding: 2rem;
    min-height: 100vh;
  }

  .luxury-content-card {
    padding: 2.5rem;
    border-radius: 24px;
  }

  .luxury-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .primary-description,
  .secondary-description {
    font-size: 1rem;
  }

  .luxury-cta-button {
    width: 100%;
    justify-content: center;
    padding: 18px 32px;
  }

  .floating-orb,
  .geometric-shape {
    display: none;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .luxury-content-card {
    padding: 2rem;
    margin: 1rem;
  }

  .title-section {
    margin-bottom: 2rem;
  }

  .content-section {
    margin-bottom: 2rem;
  }

  .action-section {
    margin-top: 2rem;
  }
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
  .hero-background-image,
  .luxury-content-card,
  .floating-orb,
  .geometric-shape,
  .luxury-cta-button,
  .scroll-dot,
  .title-underline::after {
    animation: none !important;
    transition: none !important;
  }
}

/* === HIGH CONTRAST MODE === */
@media (prefers-contrast: high) {
  .luxury-content-card {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #ffffff;
  }

  .title-primary {
    color: #ffffff;
  }

  .primary-description,
  .secondary-description {
    color: #ffffff;
  }
}
