/* ESTILOS GENERALES */
html {
  height: 100% !important;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
}

body {
  min-height: 100% !important;
  height: auto !important;
  overflow-x: hidden !important;
  overflow-y: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
  font-family: 'Roboto', sans-serif;
  color: #333;
}

.main-container, 
main, 
section, 
.container {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* ESTILOS DEL HEADER */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding-top: 8px;
  padding-bottom: 8px;
}

.scroll-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to right, #ec4899, #f472b6);
  width: 0%;
  transition: width 0.3s ease;
}

.nav-indicator {
  position: absolute;
  bottom: -2px;
  height: 3px;
  background-color: #ec4899;
  border-radius: 3px 3px 0 0;
  transition: all 0.3s ease;
  opacity: 0;
}

.nav-link {
  position: relative;
  color: #4b5563;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  transition: all 0.3s ease;
  font-size: 0.925rem;
  background: transparent !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #E3A3A1;
  transform: translateX(-50%);
  transition: width 0.3s ease;
  opacity: 0;
  border-radius: 0;
}

.nav-link:hover {
  color: #E3A3A1;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 30px;
  opacity: 1;
}

.nav-link.active {
  color: #E3A3A1;
  font-weight: 600;
  background: transparent !important;
}

/* Eliminación de cualquier círculo en nav-links */
.nav-link::before {
  display: none !important;
}

.nav-link:hover::before, 
.nav-link.active::before {
  display: none !important;
}

.nav-link span,
.nav-link img {
  background: transparent !important;
  border-radius: 0 !important;
}

/* ESTILOS DE BOTONES */
.btn-primary {
  display: inline-block;
  background-color: #ec4899;
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: #db2777;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.hover-expand {
  transition: all 0.3s ease;
}

.hover-expand:hover {
  padding-left: 34px;
  padding-right: 34px;
}

/* SECCIÓN HERO */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  color: white;
  overflow: hidden;
  padding-top: 80px;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.glow-text {
  text-shadow: 0 0 15px rgba(255,255,255,0.5);
}
