/* ===================================
   PÁGINA NOSOTROS - ESTILOS
   =================================== */

/* Page Content Container */
.page-content {
  position: relative;
  background: var(--bg);
  min-height: 100vh;
}

/* ===================================
   Page Hero con Video
   =================================== */

.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.page-hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 37, 64, 0.85);
}

.page-title {
  position: relative;
  z-index: 1;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.02em;
  color: var(--text-primary);
  text-align: center;
  margin: 0;
}

/* ===================================
   About Intro Section
   =================================== */

.about-intro {
  position: relative;
  padding: 6rem 0;
  background: var(--bg);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.about-intro-left {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.about-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 0;
}

.about-intro-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-text-block {
  padding-left: 2rem;
  border-left: 3px solid var(--accent-purple);
}

.about-text-block p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.about-highlight {
  font-weight: 600;
  color: var(--text-primary) !important;
  font-size: 1.125rem !important;
}

/* ===================================
   Value Proposition Section
   =================================== */

.value-proposition {
  position: relative;
  padding: 6rem 0 4rem;
  background: var(--bg);
}

.section-title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin: 0 0 3rem;
  text-align: left;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin-bottom: 4rem;
}

.value-column {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.value-item {
  display: flex;
  gap: 1.25rem;
  align-items: start;
}

.value-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.value-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.value-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.value-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent-light-blue);
  margin: 0;
  line-height: 1.4;
}

.value-description {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.value-subdescription {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.value-note {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Value CTA Image */
.value-cta {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.value-cta-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

/* ===================================
   Why Choose Us Section
   =================================== */

.why-choose-us {
  position: relative;
  padding: 6rem 0;
  background: var(--bg);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.why-left {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.why-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 0;
}

.why-right {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.why-intro {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 2rem;
  border-left: 3px solid var(--accent-purple);
}

.why-highlight {
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.7;
  color: var(--text-primary);
  margin: 0;
}

.why-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: start;
}

.why-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.why-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.why-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.why-item-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent-light-blue);
  margin: 0;
  line-height: 1.4;
}

.why-description {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

/* ===================================
   Mountain Section
   =================================== */

.mountain-section {
  position: relative;
  padding: 6rem 0;
  background: var(--bg);
}

.mountain-image-container {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 2.5 / 1;
}

.mountain-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mountain-text-overlay {
  position: absolute;
  left: 3rem;
  bottom: 3rem;
  background: rgba(20, 24, 43, 0.85);
  backdrop-filter: blur(10px);
  padding: 2rem 2.5rem;
  border-radius: 8px;
}

.mountain-text {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: 0.02em;
}

/* ===================================
   Media Gallery Slider
   =================================== */

.media-gallery {
  position: relative;
  padding: 4rem 0;
  background: var(--bg);
}

.gallery-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-track {
  display: flex;
  transition: transform 0.5s ease;
}

.gallery-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.gallery-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

/* Gallery Navigation */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.gallery-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.gallery-prev {
  left: 1.5rem;
}

.gallery-next {
  right: 1.5rem;
}

/* Gallery Dots */
.gallery-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.gallery-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.gallery-dot.active {
  background: var(--accent-blue);
  width: 28px;
  border-radius: 5px;
}

/* ===================================
   Final Text Section
   =================================== */

.final-text {
  position: relative;
  padding: 6rem 0 8rem;
  background: var(--bg);
}

.final-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.final-left {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.final-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 0;
}

.final-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.final-description {
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.7;
  color: var(--text-primary);
  margin: 0;
  padding-left: 20px;
}

.final-subdescription {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
  padding-left: 20px;
}

.final-divider{
  width: 3px;
  min-height: 400px;
  background: var(--accent-purple);
  border-radius: 2px;
  align-self: start;
  margin-top: 1rem;
  position: absolute;
  margin-right: 15px;

}

.final-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1rem;
}

.final-item {
  display: flex;
  gap: 1.25rem;
  align-items: start;
}

.final-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.final-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.final-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.final-item-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent-light-blue);
  margin: 0;
  line-height: 1.4;
}

.final-item-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

/* ===================================
   Active Link Style
   =================================== */

.site-nav a.active {
  color: var(--accent-blue);
  font-weight: 600;
}

.site-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-blue);
}

/* ===================================
   Page Transitions
   =================================== */

.page-content {
  animation: fadeInContent 0.6s ease-out;
}

@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================
   Responsive
   =================================== */

@media (max-width: 1024px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-intro-left {
    position: static;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .value-column {
    gap: 2rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-left {
    position: static;
  }

  .final-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .final-left {
    position: static;
  }
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 40vh;
    padding: 6rem 0 3rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .about-intro {
    padding: 4rem 0;
  }

  .about-title {
    font-size: 1.5rem;
  }

  .about-text-block {
    padding-left: 1rem;
  }

  .value-proposition {
    padding: 4rem 0 3rem;
  }

  .section-title {
    margin-bottom: 2rem;
  }

  .value-grid {
    gap: 2rem;
  }

  .value-column {
    gap: 1.5rem;
  }

  .value-item {
    gap: 1rem;
  }

  .value-icon,
  .why-icon,
  .final-icon {
    width: 48px;
    height: 48px;
  }

  .value-cta {
    margin-top: 1.5rem;
  }

  .why-choose-us {
    padding: 4rem 0;
  }

  .why-grid {
    gap: 2.5rem;
  }

  .why-intro {
    padding-left: 1rem;
  }

  .why-items {
    gap: 1.5rem;
  }

  .why-item {
    gap: 1rem;
  }

  /* Mountain Section */
  .mountain-section {
    padding: 4rem 0;
  }

  .mountain-image-container {
    aspect-ratio: 16 / 9;
  }

  .mountain-text-overlay {
    left: 1.5rem;
    bottom: 1.5rem;
    padding: 1.5rem 2rem;
  }

  .mountain-text {
    font-size: 1.125rem;
  }

  /* Gallery */
  .media-gallery {
    padding: 3rem 0;
  }

  .gallery-nav {
    width: 40px;
    height: 40px;
  }

  .gallery-prev {
    left: 1rem;
  }

  .gallery-next {
    right: 1rem;
  }

  .gallery-dots {
    bottom: 1rem;
  }

  /* Final Text */
  .final-text {
    padding: 4rem 0 6rem;
  }

  .final-items {
    gap: 1.5rem;
  }

  .final-item {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 5rem 0 2.5rem;
  }

  .about-intro {
    padding: 3rem 0;
  }

  .value-proposition {
    padding: 3rem 0 2rem;
  }

  .why-choose-us {
    padding: 3rem 0;
  }

  .value-icon,
  .why-icon,
  .final-icon {
    width: 40px;
    height: 40px;
  }

  .mountain-section {
    padding: 3rem 0;
  }

  .mountain-text-overlay {
    left: 1rem;
    bottom: 1rem;
    padding: 1rem 1.5rem;
  }

  .mountain-text {
    font-size: 1rem;
  }

  .media-gallery {
    padding: 2rem 0;
  }

  .gallery-nav {
    width: 36px;
    height: 36px;
  }

  .final-text {
    padding: 3rem 0 4rem;
  }
}