/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  scroll-behavior: smooth;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background-color 0.3s ease;
}

.header.scrolled {
  background-color: #6a64ff;
}

.logo {
  height: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: white;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: column;
  background-image: url('https://nayeapp.com/imgs_web_naye/backgroundHeader.jpg');
  background-size: cover;
  background-position: center;
  padding: 150px 20px 80px;
  color: white;
}

.hero-container {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .hero-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.hero-left {
  flex: 1;
  padding: 20px;
}

.hero-left h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.btn-group {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-google {
  background-color: #00e0c6;
  color: black;
  min-width: 181px;
}

.btn-google:hover {
  background-color: white;
}

.btn-appstore {
  border: 2px solid #00e0c6;
  color: white;
  background-color: transparent;
  min-width: 181px;
}

.btn-appstore:hover {
  background-color: #00e0c6;
}

/* Hero Right */
.hero-right {
  position: relative;
  flex: 1;
  padding: 20px;
  text-align: center;
}

.main-phone {
  max-width: 100%;
  z-index: 1;
  position: relative;
}

.balloon {
  position: absolute;
  width: 50px;
  z-index: 2;
}

.balloon-1 {
  top: 20%;
  left: 15%;
}
.balloon-2 {
  top: 45%;
  right: 15%;
}
.balloon-3 {
  bottom: 20%;
  left: 15%;
}

/* Animaciones */
.floating {
  animation: float 3s ease-in-out infinite;
  width: 200px;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

.numeralia-section {
  background: #f1f0fa;
  padding: 80px 20px;
  text-align: center;
}

.numeralia-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.numeralia-item {
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  font-weight: 600;
  /*box-shadow: 0 0 20px rgba(0,0,0,0.05);*/
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.numeralia-item:hover {
  transform: translateY(-10px);
}

.numeralia-item span {
  display: block;
  font-size: 2.2rem;
  color: #6a64ff;
  margin: 10px 0;
}


.sobreapp-section {
  padding: 100px 20px;
  background: #fff;
  padding-top: 20px;
}

.sobreapp-container {
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
  align-items: center;
}

.sobreapp-texto {
  flex: 1;
  max-width: 600px;
}

.sobreapp-texto h2 {
  color: #6a64ff;
  margin-bottom: 20px;
}

.sobreapp-texto ul {
  list-style: disc inside;
  color: #333;
  line-height: 1.6;
}

.slider-screens {
  flex: 1;
  max-width: 500px;
  width: 100%;
}

.swiper-slide img {
  width: 100%;
  border-radius: 10px;
}

@media (min-width: 768px) {
  .sobreapp-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.video-section {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-section .overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button img {
  width: 100px;
  transition: transform 0.3s ease;
}

.play-button:hover img {
  transform: scale(1.1);
}

.funciona-section {
  padding: 100px 20px;
  background-color: #f9f9f9;
}

.funciona-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.funciona-texto {
  flex: 1;
  max-width: 600px;
}

.funciona-texto h2 {
  color: #6a64ff;
  margin-bottom: 20px;
}

.funciona-texto p {
  color: #333;
  line-height: 1.6;
}

.slider-funciona {
  flex: 1;
  max-width: 500px;
  width: 100%;
}

.slider-funciona img {
  width: 100%;
  border-radius: 10px;
}

@media (min-width: 768px) {
  .funciona-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.comunidad-section {
  padding: 100px 20px;
  background-color: #ffffff;
  text-align: center;
}

.comunidad-section h2 {
  color: #6a64ff;
  margin-bottom: 40px;
}

.testimonio-card {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 30px 20px;
  max-width: 350px;
  margin: 0 auto;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.testimonio-card img {
  width: 60px;
  margin-bottom: 20px;
}

.testimonio-card p {
  font-style: italic;
  color: #444;
  margin-bottom: 15px;
}

.testimonio-card strong {
  display: block;
  color: #000;
}

.testimonio-card small {
  color: #888;
}

.cta-section {
  background-color: #6a64ff;
  color: white;
  padding: 80px 20px;
}

.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.cta-texto h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.cta-botones {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .cta-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .cta-texto {
    max-width: 50%;
  }

  .cta-botones {
    justify-content: flex-end;
  }
}

.faqs-section {
  padding: 100px 20px;
  background-color: #f5f5f5;
  color: #333;
}

.faqs-section h2 {
  text-align: center;
  color: #6a64ff;
  margin-bottom: 40px;
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: bold;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question .icon {
  font-size: 1.5rem;
  color: #6a64ff;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 15px;
  font-size: 0.95rem;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 10px 15px 20px;
}

.faq-item.open .icon {
  content: "-";
  transform: rotate(180deg);
}

.footer-section {
  background-color: #222;
  color: #fff;
  padding: 60px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 150px;
}

.footer-logo {
  max-width: 120px;
  margin-bottom: 20px;
}

.footer-col h4 {
  margin-bottom: 15px;
  color: #00e0c6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ddd;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-socials a {
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: #00e0c6;
}

.footer-buttons .btn {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #aaa;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-col {
    text-align: center;
  }

  .footer-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }
}

/*Menu Principal*/
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.nav-links-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}

.menu-link.active::after,
.menu-link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: white;
}

.btn-descarga {
  border: 2px solid #00e0c6;
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.btn-descarga:hover {
  background-color: #00e0c6;
  color: black;
}

/* Hamburguesa */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding-right: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .logo{
    padding-left: 20px;
  }

  .nav-links-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #6a64ff;
    width: 100%;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    display: none;
  }

  .nav-links-wrapper.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
  }

  .btn-descarga {
    width: 100%;
    text-align: center;
  }
}
/*Menu Principal Fin*/

.divBoxShadow{
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
  background-color: white;
  border-radius: 50px;
  padding: 50px;
}
.colorPurple{
  color: #6a64ff;
}
.colorGray{
  color: #e1dde5;
}
.backgroundPurple{
  background-color: #f1f0fa;
}

.titleSubSection{
  color: #e1dde5;
  font-weight: bold;
  font-size: 40px;
}
.fontSize20{
  font-size: 20px;
}
.fontSize40{
  font-size: 40px;
}








