/* Base styles */
.landing-page {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #fdf8f2;
    width: 100%;
  }
  .hero-content,
  .features,
  .cta-section,
  .footer-bottom {
    max-width: 100vw;
    box-sizing: border-box;
    padding-left: 5vw;
    padding-right: 5vw;
  }
  
  html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
  }
  
  .typing-animation {
    display: inline-block;
    white-space: pre-wrap;
    word-break: break-word;
    overflow-wrap: break-word;
    border-right: 2px solid #333;
    animation: blinkCursor 0.7s steps(1) infinite;
}

/* Parpadeo del cursor */
@keyframes blinkCursor {
    0%, 100% { border-color: transparent; }
    50% { border-color: #333; }
}

  
  /* Header styles */
  .header {
    width: 100%;
    height: 111px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: transparent;
    transition: all 0.4s ease-in-out;
    z-index: 999;
  }
  .header.scrolled {
    background-color: #FCF6ED;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .header-content {
    box-sizing: border-box;
    max-width: 1600px; /* más ancho */
    padding: 0 40px; /* nuevo */
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  
  .header-logo {
    color: #000;
    font-family: "Fraunces";
    font-size: 32px;
    font-weight: 300;
    line-height: 82px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  
  .nav-item {
    color: #211f1f;
    font-family: "Actor";
    font-size: 18px;
    line-height: 28px;
  }
  
  .nav-button {
    color: #fff;
    font-family: "ABeeZee";
    font-size: 16px;
    line-height: 24px;
    padding: 10px 18px;
    border-radius: 200px;
    border: 1px solid #eed9c4;
    background-color: #211f1f;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  }
  
  .header-menu-mobile {
    display: none;
  }
  
  /* Hero styles */
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 96px 0;
    gap: 64px;
    width: 100%;
    background-color: #fefaf6; /* igual que el fondo del header */
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 0 40px; /* antes 32px */
    max-width: 1600px; /* más ancho */
    width: 100%;
  }
  
  .hero-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1024px;
    width: 100%;
  }
  
  .hero-title {
    color: #101828;
    text-align: center;
    font-family: "Fraunces";
    font-size: 72px;
    font-weight: 300;
    line-height: 82px;
    letter-spacing: -1.44px;
    text-transform: capitalize;
  }
  
  .hero-description {
    color: #667085;
    text-align: center;
    font-family: "Actor";
    font-size: 20px;
    line-height: 30px;
    max-width: 640px;
  }
  
  .hero-buttons {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  
  .button-outline {
    color: #100d0b;
    font-family: "Actor";
    font-size: 18px;
    line-height: 28px;
    padding: 16px 28px;
    border-radius: 200px;
    border: 1px solid #6D584A;
    background: transparent;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    transition: all 0.4s ease-in-out; 
  }
  .button-outline:hover {
    border: 1px solid #100d0b;
  }
  
  .button-solid {
    color: #fff;
    font-family: "Actor";
    font-size: 18px;
    line-height: 28px;
    padding: 16px 28px;
    border-radius: 200px;
    border: 1px solid #100d0b;
    background-color: #100d0b;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    transition: all 0.4s ease-in-out; 
  }
  
  .button-solid:hover {
    background-color: #6D584A;
    border: 1px solid #6D584A;
  }
  
  
  .hero-image {
    width: 100%;
    max-width: 1280px;
    object-fit: cover;
  }
  
  /* Features styles */
  .features {
    width: 100%;
    background-color: #fdf8f2;
    padding: 96px 116px;
  }
  
  .feature-card-pink-border-container {
    padding-top: 100px;
    max-width: 600px;
  }
  
  .features-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
  }
  
  .feature-cards {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 56px;
  }
  
  .feature-card {
    display: flex;
    flex-direction: column;
    flex: 1; /* nuevo */
   
    max-width: 700px; /* opcional */
    padding-top: 24px;
    border-width: 3px;
  }
  
  .brown-border {
    border-color: #c4a484;
    border-top: 2px solid #bc9880;
    padding-top: 1rem;
  }
  
  .pink-border {
    border-color: #d8a48f;
    border-top: 2px solid #d0886a;
    padding-top: 1rem;
    
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 28px;
  }
  
  .feature-title {
    color: #101828;
    font-family: "Fraunces";
    font-size: 64px;
    font-weight: 300;
    line-height: 68px;
    letter-spacing: -1.44px;
    
  }
  
  .feature-description {
    color: #000;
    font-family: "Albert Sans";
    font-size: 24px;
    line-height: 40px;
    letter-spacing: -0.48px;
  }
  
  
  /* Footer styles */
  .footer {
    width: 100%;
  }
  
  .cta-section {
    width: 100%;
    background-color: #c4a484;
    padding: 96px 116px;
    display: flex;
    flex-direction: column;
  }
  
  .cta-title {
    color: #211f1f;
    text-align: center;
    font-weight: 400;
    font-family: "Fraunces";
    font-size: 50px;
    line-height: 50px;
    letter-spacing: -1px;
    margin-bottom: 30px;
  }
  
  .cta-description {
    color: #211f1f;
    text-align: center;
    font-family: "Albert Sans";
    font-size: 20px;
    line-height: 30px;
    max-width: 1166px;
    margin: 0 auto;
  }
  
  .bold {
    font-weight: 700;
  }
  
  .cta-button {
    color: #fff;
    font-family: "Albert Sans";
    font-size: 16px;
    line-height: 24px;
    padding: 12px 20px;
    border-radius: 200px;
    background-color: #211f1f;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    border: none;
    margin: 20px auto 0;
  }
  
  .footer-bottom {
    width: 100%;
    background-color: #291f14;
    padding: 40px 116px;
  }
  
  .footer-content {
    z-index: 1000000;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-logo {
    color: #fff;
    font-family: "Fraunces";
    font-size: 36px;
    font-weight: 300;
  }
  
  .footer-nav {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  
  .footer-nav-item {
    color: #fff;
    font-family: "Albert Sans";
    font-size: 20px;
    font-weight: 300;
  }
  
  .social-icons {
    z-index: 100000;
    display: flex;
    align-items: center;
    gap: 24px;
  }
  
  .social-icon {
    z-index: 100000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .social-icon:hover {
    background-color: #fff;
    color: #291f14;
  }

  /* Developer signature styles */
  .developer-signature {
    margin-top: 20px;
    text-align: center;
    width: 100%;
  }
  
  .developer-link {
    color: rgba(255, 255, 255, 0.6);
    font-family: "Albert Sans";
    font-size: 14px;
    font-weight: 300;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    display: inline-block;
    overflow: hidden;
  }
  
  .developer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: width 0.4s ease;
  }
  
  .developer-link:hover {
    color: #fff;
  }
  
  .developer-link:hover::after {
    width: 100%;
  }
  
  .developer-title {
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }
  
  .developer-link:hover .developer-title {
    opacity: 1;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .developer-signature {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
  }
  
  .cta-section {
    width: 100%;
    background-color: #c4a484;
    padding: 96px 116px;
    display: flex;
    flex-direction: column;
  }
  
  .cta-title {
    color: #211f1f;
    text-align: center;
    font-weight: 400;
    font-family: "Fraunces";
    font-size: 50px;
    line-height: 50px;
    letter-spacing: -1px;
    margin-bottom: 30px;
  }
  
  .cta-description {
    color: #211f1f;
    text-align: center;
    font-family: "Albert Sans";
    font-size: 20px;
    line-height: 30px;
    max-width: 1166px;
    margin: 0 auto;
  }
  
  .bold {
    font-weight: 700;
  }
  
  .cta-button {
    color: #fff;
    font-family: "Albert Sans";
    font-size: 16px;
    line-height: 24px;
    padding: 12px 20px;
    border-radius: 200px;
    background-color: #211f1f;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    border: none;
    margin: 20px auto 0;
  }
  
  .footer-bottom {
    width: 100%;
    background-color: #291f14;
    padding: 40px 116px;
  }
  
  .footer-content {
    z-index: 1000000;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-logo {
    color: #fff;
    font-family: "Fraunces";
    font-size: 36px;
    font-weight: 300;
  }
  
  .footer-nav {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  
  .footer-nav-item {
    color: #fff;
    font-family: "Albert Sans";
    font-size: 20px;
    font-weight: 300;
  }
  
  .social-icons {
    z-index: 100000;
    display: flex;
    align-items: center;
    gap: 24px;
  }
  
  .social-icon {
    z-index: 100000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .social-icon:hover {
    background-color: #fff;
    color: #291f14;
  }

  @keyframes slideUp {
    0% {
      opacity: 0;
      transform: translateY(100px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Clases para animaciones */
  .slide-up {
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .slide-up.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Retrasos opcionales */
  .delay-1 { transition-delay: 0.2s; }
  .delay-2 { transition-delay: 0.4s; }
  .delay-3 { transition-delay: 0.6s; }
  
  /* Mantén estas animaciones si las necesitas */
  .fade-in { opacity: 0; transition: opacity 0.8s; }
  .fade-in.active { opacity: 1; }
  
  
  /* Responsive styles */
  @media (max-width: 991px) {
    .header-content {
      padding-left: 40px;
      padding-right: 40px;
    }
  
    .hero {
      padding: 64px 0;
    }
  
    .hero-title {
      font-size: 56px;
      line-height: 64px;
    }
  
    .hero-description {
      font-size: 18px;
      line-height: 28px;
    }
  
    .features {
      padding: 64px 40px;
    }
  
    .feature-cards {
      flex-direction: column;
    }
  
    .feature-card {
      width: 100%;
    }
  
    .feature-title {
      font-size: 48px;
      line-height: 52px;
    }
  
    .feature-description {
      font-size: 20px;
      line-height: 32px;
    }
  
    .cta-section {
      padding: 64px 40px;
    }
  
    .footer-bottom {
      padding: 40px;
    }
  }
  
  @media (max-width: 640px) {
    .header-content {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .header-nav {
    position: absolute;
    top: 80%;
    left: -5%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    background-color: #FCF6ED;
    text-align: center;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-60px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    display: flex;
    z-index: 1000;
  }

  .header-nav.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .header-menu-mobile.open i::before {
    content: "\f00d"; /* Ícono de "X" (cerrar) */
  }
  
    .header-menu-mobile {
      display: block;
    }
  
    .hero {
      padding: 48px 0;
    }
  
    .hero-title {
      font-size: 40px;
      line-height: 48px;
    }
  
    .hero-description {
      padding-top: 40px;
      font-size: 16px;
      line-height: 24px;
    }
  
    .hero-buttons {
      flex-direction: column;
      width: 100%;
      text-align: center;
      align-items: center;
      justify-content: center;
    }
  
    .button-outline,
    .button-solid {
      width: 100%;
      text-align: center;
      text-decoration: none;
    }
  
    .features {
      padding: 48px 20px;
    }
  
    .feature-title {
      font-size: 36px;
      line-height: 40px;
    }
  
    .feature-description {
      font-size: 18px;
      line-height: 28px;
      text-decoration: none;
    }
  
    .cta-section {
      padding: 48px 20px;
    }

    .cta-button{
      text-decoration: none;
    }
  
    .footer-bottom {
      padding: 20px;
    }
  
    .footer-content {
      flex-direction: column;
      gap: 32px;
      text-decoration: none;
    }
  
    .footer-nav {
      flex-direction: column;
      gap: 16px;
      text-decoration: none;
    }
    .footer-nav-item{
      text-decoration: none;
    }
  }
  