@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #2B2D38;
  color: #FFFFFF;
}

.page-wrapper {
  width: 1920px;
  position: relative;
  margin: 0 auto;
  overflow: visible;
  background-color: #2B2D38;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

header.site-header {
  display: flex;
  position: fixed;
  justify-content: space-between;
  max-width: 1920px;
  padding: 2rem 9rem;
  width: 100%;
  top: 0;
  z-index: 500;
}
header.site-header.sticky {
  top: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: rgba(43, 45, 56, 0.95); /* $dark-bg con opacidad */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  animation: slideDown 0.3s ease-out;
  z-index: 1000;
}
header.site-header.sticky .logo {
  font-size: 28px;
}

.main-content {
  position: relative;
  width: 100%;
  padding: 10rem 0 0 9rem;
  z-index: 2;
}

.additional-content {
  padding: 4rem 10rem;
  background-color: rgb(51.7510733212, 53.839345386, 65.1538455309);
  max-width: 100%;
}
.additional-content h2 {
  font-family: "Merriweather", serif;
  font-size: 32px;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.additional-content p {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 100%;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 100;
  padding-right: 6rem;
}
nav ul {
  list-style: none;
}
nav .menu-toggle {
  display: none; /* Oculto por defecto en desktop */
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110; /* Por encima del menú móvil */
}
nav .menu-toggle span {
  width: 30px;
  height: 3px;
  background: #FFFFFF;
  border-radius: 10px;
  transition: all 0.3s linear;
}
nav .menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background-color: #DB2A6B;
}
nav .menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
nav .menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
  background-color: #DB2A6B;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.logo {
  font-family: "Merriweather", serif;
  font-size: 32px;
  font-weight: 700;
  z-index: 100;
}
.logo .gath {
  color: #DB2A6B;
}
.logo .session {
  color: #FFFFFF;
}

.nav-menu {
  display: flex;
  gap: 3rem;
}
.nav-menu a {
  color: #CCCCCC;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0%;
  width: 0;
  height: 2px;
  background-color: #DB2A6B;
  transition: width 0.3s ease;
}
.nav-menu a:hover::after {
  width: 20px;
}
.nav-menu a:hover {
  color: #FFFFFF;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 80;
}
.mobile-menu-overlay.active {
  display: block;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  height: calc(100% - 120px);
  position: relative;
  z-index: 3;
}
.hero-left {
  padding-top: 2rem;
}
.hero-left h1 {
  font-family: "Merriweather", serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  max-width: 784px;
}
.hero-left .description {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 3rem;
  max-width: 650px;
}
.hero-right .hero-image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 3;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 8rem;
}
.hero-buttons .btn-primary {
  background-color: #DB2A6B;
  color: #FFFFFF;
  font-size: 20px;
  border: none;
  padding: 1.2rem 3rem;
  font-weight: 500;
  border-radius: 12px 12px 12px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-buttons .btn-primary:hover {
  background-color: rgb(233.9236596383, 59.2762242674, 118.8922308081);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(219, 42, 107, 0.3);
}
.hero-buttons .btn-secondary-link {
  background: transparent;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-buttons .btn-secondary-link:hover {
  color: #DB2A6B;
  text-decoration-color: #DB2A6B;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 616px;
  padding-bottom: 2rem;
}
.feature-grid .feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.3s ease;
}
.feature-grid .feature-item:hover {
  transform: translateY(-3px);
}
.feature-grid .feature-item .feature-icon {
  background-color: rgba(255, 255, 255, 0.1);
  width: 64px;
  height: 64px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-grid .feature-item .feature-icon img, .feature-grid .feature-item .feature-icon svg {
  width: 40px;
  height: 40px;
}
.feature-grid .feature-item .feature-text {
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.4;
}

@media (max-width: 1920px) {
  .page-wrapper {
    width: 100%;
    overflow: visible;
  }
}
@media (max-width: 1400px) {
  .hero {
    grid-template-columns: 1fr 1fr;
  }
  .hero-left h1 {
    font-size: 64px;
  }
  .hero-left .description {
    font-size: 20px;
  }
  .main-content {
    padding: 8rem 0 2rem 3rem;
  }
  header.site-header {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  header.site-header .nav-menu a {
    font-size: 16px;
  }
  .additional-content {
    margin-top: 3rem;
    padding: 3rem;
  }
  .additional-content h2 {
    font-size: 28px;
  }
  .additional-content p {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .main-content {
    padding: 6rem 2rem 0rem 2rem;
  }
  header.site-header {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  nav {
    gap: 1.5rem;
    padding-right: 0;
  }
  nav .menu-toggle {
    display: flex;
  }
  nav {
    padding-right: 1rem;
  }
  .menu-toggle {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 400px;
    height: 100vh;
    background-color: rgb(51.7510733212, 53.839345386, 65.1538455309);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.3s ease;
    z-index: 90;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  }
  .nav-menu.open {
    right: 0;
  }
  .nav-menu a {
    font-size: 24px;
    color: #FFFFFF;
  }
  .nav-menu a:hover {
    color: #DB2A6B;
  }
  .nav-menu a::after {
    bottom: -8px;
  }
  .nav-menu a:hover::after {
    width: 30px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-left h1 {
    font-size: 56px;
  }
  .hero-right {
    display: none;
  }
  .additional-content {
    margin-top: 2.5rem;
    padding: 2rem;
  }
  .additional-content h2 {
    font-size: 26px;
  }
  .additional-content p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .hero-left h1 {
    font-size: 48px;
  }
  .hero-left .description {
    font-size: 20px;
  }
  .hero-buttons .btn-primary, .hero-buttons .btn-secondary-link {
    font-size: 18px;
  }
  .feature-grid {
    gap: 1rem;
  }
  .feature-grid .feature-item {
    flex-direction: column;
    align-items: center;
  }
  .additional-content {
    padding: 1.5rem;
  }
  .additional-content h2 {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  header.site-header {
    padding: 1rem 1rem;
  }
  .main-content {
    padding: 5rem 1rem 0rem 1rem;
  }
  .hero-left h1 {
    font-size: 34px;
  }
  .hero-left .description {
    font-size: 18px;
  }
  .hero-buttons {
    gap: 1.5rem;
    margin-bottom: 4rem;
  }
  .hero-buttons .btn-primary {
    padding: 1.2rem 2rem;
  }
  .feature-grid .feature-item .feature-text {
    font-size: 16px;
    text-align: center;
  }
  .additional-content {
    margin-top: 2rem;
    padding: 1.25rem 1rem;
  }
  .additional-content h2 {
    font-size: 20px;
    margin-bottom: 1rem;
  }
  .additional-content p {
    font-size: 14px;
    line-height: 1.5;
  }
}/*# sourceMappingURL=main.css.map */