* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  :root {
    --orange: #F73A03;
    --orange-dark: #D94A0F;
    --dark: #353535;
    --text: #333;
    --text-light: #666;
    --bg-cream: #FAF5EE;
    --bg-light-gray: #EDEDED;
    --bg-section: #F5F0E8;
  }
  html {
    scroll-behavior: smooth;
  }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes slideInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes scaleIn {
    from {
      opacity: 0;
      transform: scale(0.95);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  /* Animation utility classes */
  .animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
  }

  .animate-slide-up {
    animation: slideInUp 0.6s ease-out forwards;
  }

  .animate-slide-left {
    animation: slideInLeft 0.6s ease-out forwards;
  }

  .animate-slide-right {
    animation: slideInRight 0.6s ease-out forwards;
  }

  .animate-scale-in {
    animation: scaleIn 0.6s ease-out forwards;
  }

  /* Delay utilities for staggered animations */
  .animation-delay-1 {
    animation-delay: 0.1s;
  }

  .animation-delay-2 {
    animation-delay: 0.2s;
  }

  .animation-delay-3 {
    animation-delay: 0.3s;
  }

  .animation-delay-4 {
    animation-delay: 0.4s;
  }

  /* Apply animations based on data-animation attribute */
  [data-animation="fade-in"] {
    opacity: 0;
  }

  [data-animation="fade-in"].animated {
    animation: fadeIn 0.6s ease-out forwards;
  }

  [data-animation="slide-up"] {
    opacity: 0;
    transform: translateY(30px);
  }

  [data-animation="slide-up"].animated {
    animation: slideInUp 0.6s ease-out forwards;
  }

  [data-animation="slide-left"] {
    opacity: 0;
    transform: translateX(-30px);
  }

  [data-animation="slide-left"].animated {
    animation: slideInLeft 0.6s ease-out forwards;
  }

  [data-animation="slide-right"] {
    opacity: 0;
    transform: translateX(30px);
  }

  [data-animation="slide-right"].animated {
    animation: slideInRight 0.6s ease-out forwards;
  }

  [data-animation="scale-in"] {
    opacity: 0;
    transform: scale(0.95);
  }

  [data-animation="scale-in"].animated {
    animation: scaleIn 0.6s ease-out forwards;
  }
  body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    line-height: 1.5;
    background: #FAF4F0;
  }

  h2 {
    font-family: 'Poppins', sans-serif;
  }

  p {
    font-family: 'Inter', sans-serif;
  }

  img {
    max-width: 100%;
    display: block;
  }

  .container {
    max-width: 992px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .container-wide {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
  }
  /* ===== NAV SECTION ===== */
  .navbar-wrapper {
    position: sticky;
    top: 0;
    width: 100%;
    /* height: 80px; */
    z-index: 100;
    /* margin-bottom: -80px; */
    padding-top: 60px;
    transition: padding-top 0.5s ease;
  }
  .navbar-wrapper.is-sticky{
    padding-top: 20px;
    transition: padding-top 0.5s ease;
    background: rgba(250, 244, 240, 0.9);
    backdrop-filter: blur(6px);
  }

  .navbar-wrapper.is-sticky .navbar-blur-bg {
    top: 90px;
  }

  /* Capa de blur con gradiente*/
  /* .navbar-blur-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 49px;
    z-index: 0;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    mask-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 1),
      rgba(0, 0, 0, 1) 50%,
      rgba(0, 0, 0, 0)
    );
    -webkit-mask-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 1),
      rgba(0, 0, 0, 1) 50%,
      rgba(0, 0, 0, 0)
    );
  } */

  .navbar-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
  }

  .navbar-content .container-wide {
    width: 100%;
    padding: 0;
    display: flex;
    align-items: center;
  }

  .navbar-content .hero-top {
    width: 100%;
  }


  /* ===== HERO SECTION ===== */
  .hero {
    background: var(--bg-cream);
    padding: 0px 0 50px;
    margin-top: 60px;
  }

  .hero-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .logo img {
    height: 70px;
    transition: height 0.5s ease;
  }
  .navbar-wrapper.is-sticky .logo img {
    height: 50px;
    transition: height 0.5s ease;
  }
  .top-cta {
    text-align: center;
  }

  .top-cta-btn {
    background: var(--orange);
    color: white;
    padding: 15px 25px 15px 90px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  .top-cta-btn::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 72px;
    height: 32px;
    background-image: url('/resources/images/hazte-socio/iconos-btn.png');
    background-size: cover;
  }

  .top-cta-text {
    font-size: 11px;
    color: var(--text);
    margin-top: 6px;
    letter-spacing: 0.5px;
    position: relative;
    top: 0;
    z-index: 1;
    transition: top 0.5s ease;
  }
  .navbar-wrapper.is-sticky .top-cta-text{
    top: -30px;
    transition: top 0.5s ease;
  }

  .hero-content {
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: end;
  }

  .hero-tag {
    color: var(--orange);
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    margin-bottom: 10px;
    font-weight: 400;
  }

  .hero-tag strong {
    font-weight: 800;
  }

  .hero-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 100px;
    font-weight: 700;
    line-height: 0.8;
    color: var(--dark);
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 30px;
  }

  .hero-title .highlight {
    background: var(--orange);
    color: white;
    padding: 0 12px;
    display: inline-block;
  }

  .hero-cta {
    background: var(--orange);
    color: white;
    padding: 20px 35px 20px 135px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border: none;
    cursor: pointer;
    position: relative;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
  }

  .hero-cta::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 110px;
    height: 60px;
    background-image: url('/resources/images/hazte-socio/iconos-btn.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .hero-subtext {
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
  }
  .hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-bottom-text {
    grid-column: 2;
    margin-top: 20px;
    font-size: 16px;
    color: var(--dark);
    line-height: 1.3;
    max-width: 600px;
    margin: 20px auto 0;
    font-family: 'Poppins', sans-serif;

  }

  .hero-bottom-text strong {
    font-weight: 900;
  }

  /* ===== STATS ===== */
  .stats {
    background: var(--bg-cream);
    padding: 30px 0;
    border-top: 1px solid #5f5d58;
  }

  .stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
  }

  .stat {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 70px;
    font-weight: 400;
    color: var(--orange);
    line-height: 1;
  }

  .stat-text {
    text-align: left;
    font-size: 14px;
    color: var(--text);
    line-height: 1.3;
  }

  /* ===== LAW SECTION ===== */
  .law {
    background: linear-gradient(to bottom, var(--bg-light-gray) 60%, #FAF4F0 40%);
    padding: 60px 0 40px;
    text-align: center;
  }

  .law h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
  }

  .law p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
  }
.law p.text-bigger {
    font-size: 18px;
    margin-bottom: 15px;
}
  .law p strong {
    color: var(--orange);
    font-weight: 800;
  }

  .law-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
        max-width: 840px;
    margin: 20px auto;
  }

  .law-imgages img:nth-child(2) {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ===== HOW WE WORK ===== */
  .how-work {
    padding: 70px 0;
  }

  .how-work h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 40px;
  }

  .work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }

  .work-icon {
    width: 50px;
    height: 50px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: white;
    font-size: 22px;
    padding: 10px;
  }

  .work-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #8E8E8E;
    margin-bottom: 10px;
  }

  .work-item p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
  }

  /* ===== APORTE SECTION ===== */
  .aporte {
    padding: 60px 0 40px;
    position: relative;
    z-index: 5;
  }

  .aporte h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
  }

  .aporte h2 .highlight-text {
    color: var(--orange);
  }

  .aporte-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 35px;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .price-card {
    background: url(/resources/images/hazte-socio/bg-card.jpg);
    background-size: 120%;
    background-position: center center;
    color: white;
    padding: 70px 20px 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-direction: column;
    min-height: 285px;
  }
  .price-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 0px;
    position: relative;
    z-index: 2;
  }

  .price-period {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
  }

  .price-desc {
    width: 70%;
    font-size: 10px;
    margin-bottom: 10px;
    line-height: 1.4;
    min-height: 30px;
    position: relative;
    z-index: 2;
  }

  .price-btn {
    background: white;
    color: var(--orange);
    border: none;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    position: relative;
    z-index: 2;
    text-decoration: none;
    display: inline-block;
  }

  .price-btn span {
    color: var(--orange);
    font-weight: 800;
  }

  .price-card.other .price-amount {
    font-size: 28px;
  }

  .mt-auto{
    margin-top: auto;
  }
  /* ===== BIG IMAGE SECTION ===== */
  .big-image {
    position: relative;
    height: 650px;
    overflow: hidden;
    background: #333;
    margin-top: -115px;
  }

  .big-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .big-image-overlay {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
  }

  .big-image-title {
    font-family: 'Poppins', sans-serif;
    font-size: 60px;
    font-weight: 300;
    line-height: 1;
  }

  .big-image-title strong {
    color: var(--orange);
    font-weight: 900;
  }

  .big-image-subtitle {
    font-size: 24px;
    margin-top: 0px;
    font-weight: 300;
  }

  /* ===== TESTIMONIALS ===== */
  .testimonials {
    background: var(--bg-cream);
    padding: 70px 0;
  }

  .testimonials h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 50px;
  }

  .testimonials h2 .highlight-text {
    color: var(--orange);
  }

  .testimonial-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .testimonial-arrow {
    background: none;
    border: none;
    font-size: 30px;
    color: #aaa;
    cursor: pointer;
    padding: 10px;
  }

  .testimonial-content {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0 20px;
  }

  .testimonial-photo {
    flex-shrink: 0;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    position: relative;
  }

  .testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

  .testimonial-text {
    flex: 1;
    position: relative;
    padding-left: 30px;
  }

  .testimonial-photo::before {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg width='65' height='54' viewBox='0 0 65 54' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.3555 53.4668C9.96094 53.4668 6.44531 51.8555 3.80859 48.6328C1.26953 45.3125 0 41.4062 0 36.9141C0 33.2031 0.683594 29.7363 2.05078 26.5137C3.41797 23.291 5.12695 20.3613 7.17773 17.7246C9.32617 15.0879 11.5723 12.793 13.916 10.8398C16.3574 8.78906 18.6035 7.08008 20.6543 5.71289C22.7051 4.24805 24.3652 3.17383 25.6348 2.49023C27.002 1.80664 27.6367 1.46484 27.5391 1.46484L30.9082 6.00586C30.0293 6.39648 28.8574 7.17773 27.3926 8.34961C25.9277 9.42383 24.4629 10.7422 22.998 12.3047C21.6309 13.8672 20.4102 15.5762 19.3359 17.4316C18.2617 19.1895 17.7246 20.8984 17.7246 22.5586C17.7246 23.5352 18.3105 24.5117 19.4824 25.4883C20.6543 26.3672 21.9238 27.4414 23.291 28.7109C24.6582 29.8828 25.9277 31.3477 27.0996 33.1055C28.2715 34.7656 28.8574 36.8164 28.8574 39.2578C28.8574 41.4062 28.418 43.3594 27.5391 45.1172C26.7578 46.875 25.6836 48.3887 24.3164 49.6582C23.0469 50.8301 21.5332 51.7578 19.7754 52.4414C18.0176 53.125 16.2109 53.4668 14.3555 53.4668ZM50.3906 53.7598C48.1445 53.7598 46.0938 53.2715 44.2383 52.2949C42.3828 51.3184 40.7715 50 39.4043 48.3398C38.0371 46.6797 36.9629 44.7754 36.1816 42.627C35.498 40.3809 35.1562 37.9883 35.1562 35.4492C35.1562 30.3711 36.2305 25.6836 38.3789 21.3867C40.625 16.9922 43.0664 13.2324 45.7031 10.1074C48.8281 6.39648 52.3926 3.02734 56.3965 0L60.6445 3.95508C59.7656 4.54102 58.6914 5.46875 57.4219 6.73828C56.25 8.00781 55.127 9.52148 54.0527 11.2793C53.0762 12.9395 52.1973 14.6973 51.416 16.5527C50.7324 18.4082 50.3906 20.2148 50.3906 21.9727C50.3906 23.1445 51.123 24.1211 52.5879 24.9023C54.0527 25.6836 55.6641 26.6602 57.4219 27.832C59.1797 29.0039 60.791 30.5176 62.2559 32.373C63.7207 34.1309 64.4531 36.6211 64.4531 39.8438C64.4531 41.7969 64.0625 43.6035 63.2812 45.2637C62.5 46.9238 61.4258 48.3887 60.0586 49.6582C58.7891 50.9277 57.2754 51.9531 55.5176 52.7344C53.8574 53.418 52.1484 53.7598 50.3906 53.7598Z' fill='%23F73A03'/%3E%3C/svg%3E%0A");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    width: 50px;
    height: 50px;
    left: -20px;
    top: 20px;
    font-size: 70px;
    color: var(--orange);
    font-family: Georgia, serif;
    line-height: 1;
    font-weight: bold;
  }

  .testimonial-quote {
    font-size: 21px;
    color: #8E8E8E;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 25px;
  }

  .testimonial-author {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
  }

  .testimonial-meta {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: var(--text-light);
    margin-top: 4px;
  }

  .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
  }

  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
  }

  .dot.active {
    background: var(--orange);
  }

  /* Owl Carousel — Testimonials overrides */
  .testimonial-carousel {
    position: relative;
    padding: 0 50px;
  }

  .testimonial-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    font-size: 30px;
    color: #aaa;
    padding: 10px;
    line-height: 1;
  }

  .testimonial-carousel .owl-nav button:hover {
    color: var(--orange);
    background: none !important;
  }

  .testimonial-carousel .owl-nav .owl-prev { left: 0; }
  .testimonial-carousel .owl-nav .owl-next { right: 0; }

  .testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
  }

  .testimonial-carousel .owl-dot span {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: #ccc !important;
    margin: 0 !important;
    display: block !important;
  }

  .testimonial-carousel .owl-dot.active span {
    background: var(--orange) !important;
  }

  /* ===== FAQ ===== */
  .faq {
    background: var(--bg-light-gray);
    padding: 70px 0;
  }

  .faq h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 35px;
  }

  .faq h2 .highlight-text {
    color: var(--orange);
  }

  .faq-item {
    padding: 15px 0px;
    cursor: pointer;
    border-bottom: 3px solid rgba(205, 214, 218, 0.25);
  }

  .faq-question {
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--dark);
    padding: 10px 0;
  }

  .faq-toggle {
    font-size: 24px;
    color: var(--text);
    font-weight: 200;
  }

  .faq-answer {
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    padding-left: 20px;
    padding-bottom: 10px;
  }

  .faq-item:not(.open) .faq-answer {
    display: none;
  }
  .faq-item.open .faq-question {
    border-bottom: 3px solid rgba(205, 214, 218, 0.25);
  }
  .faq-item.open .faq-toggle {
    transform: rotate(45deg);
  }

  /* ===== FOOTER ===== */
  .footer {
    background: #FAF4F0;
    color: #353535;
    padding: 60px 0 40px;
    text-align: center;
  }

  .footer-content {
    max-width: 500px;
    margin: 0 auto;
  }

  .footer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    line-height: 1;
    font-weight: 300;
    margin-bottom: 8px;
  }

  .footer-title strong {
    font-weight: 900;
    color: #F73A03;
  }

  .footer-subtitle {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .footer-address {
    font-size: 11px;
    color: #353535;
    line-height: 1.6;
    border-bottom: 1px solid #444;
    padding-bottom: 20px;
    margin-bottom: 25px;
  }

  .footer-social {
    display: flex;
    gap: 18px;
    justify-content: center;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
    background: #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 16px;
  }

  .radio-group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 8px;
    margin-bottom: 10px;
  }

  .radio-option {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    line-height: 1.3;
    color: #353535;
    cursor: pointer;
  }

  .radio-option input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #8E8E8E;
    background: #8E8E8E;
    flex-shrink: 0;
    align-self: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
  }

  .radio-option input[type="radio"]:checked {
    background: var(--orange);
    border-color: var(--orange);
  }

  .payment-group {
    display: flex;
    gap: 30px;
    margin-top: 8px;
  }

  .submit-btn {
    background: var(--orange);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
  }

  .form-note {
    font-size: 10px;
    color: #aaa;
    text-align: center;
    margin-top: 12px;
  }

  /* ===== FLOATING CTA ===== */
  .floating-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 20px;
    z-index: 99;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
  }

  .floating-cta.show {
    opacity: 1;
    transform: translateY(0);
  }

  .floating-cta.show.hidden {
    opacity: 0;
    transform: translateY(100%);
  }

  .floating-cta-btn {
    background: var(--orange);
    color: white;
    padding: 24px 20px 24px 110px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 17px;
    text-decoration: none;
    display: block;
    text-align: center;
    border: none;
    cursor: pointer;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    position: relative;
  }
  .floating-cta-btn:after{
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 110px;
    height: 60px;
    background-image: url('/resources/images/hazte-socio/iconos-btn.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  /* ===== NAVIGATION STYLES ===== */
  nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: -20px;
  }

  nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
  }

  nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
  }

  nav a:hover::after {
    width: 100%;
  }

  /* Mobile menu toggle button */
  .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
    position: absolute;
    right: 20px;
    top: 4px;
  }

  .mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  /* Offcanvas styles */
  .offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 99;
    transition: background 0.3s ease;
    pointer-events: none;
  }

  .offcanvas-overlay.active {
    background: rgba(0, 0, 0, 0.5);
    pointer-events: auto;
  }

  .offcanvas {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 85vw;
    height: 100vh;
    background: white;
    z-index: 100;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  }

  .offcanvas.active {
    right: 0;
  }

  .offcanvas-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--bg-light-gray);
  }

  .offcanvas-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text);
    padding: 8px;
    transition: color 0.3s ease;
  }

  .offcanvas-close:hover {
    color: var(--orange);
  }

  .offcanvas-body {
    flex: 1;
    padding: 20px 0;
    overflow-y: auto;
  }

  .nav-mobile {
    padding: 0 20px;
  }

  .nav-mobile ul {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }

  .nav-mobile li {
    width: 100%;
    border-bottom: 1px solid var(--bg-light-gray);
  }

  .nav-mobile a {
    display: block;
    padding: 16px 0;
    color: var(--text);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
  }

  .nav-mobile a:hover {
    color: var(--orange);
  }

  .offcanvas-cta {
    padding: 20px;
    border-top: 1px solid var(--bg-light-gray);
  }

  .offcanvas-cta-btn {
    display: block;
    width: 100%;
    background: var(--orange);
    color: white;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-align: center;
    transition: background 0.3s ease;
  }

  .offcanvas-cta-btn:hover {
    background: var(--orange-dark);
  }
  .nav-desktop ul li a{
    text-transform: uppercase;
    font-size: 11px;
  }

  /* ===== MODAL STYLES ===== */
  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 199;
    transition: background 0.3s ease;
    pointer-events: none;
  }

  .modal-overlay.active {
    background: rgba(0, 0, 0, 0.6);
    pointer-events: auto;
  }

  .modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 500px;
    background: white;
    border-radius: 12px;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-height: 90vh;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .modal.active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
  }

  .modal-content {
    padding: 30px;
    position: relative;
  }

  .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text);
    padding: 8px;
    transition: color 0.3s ease;
    z-index: 201;
  }

  .modal-close:hover {
    color: var(--orange);
  }

  .modal-header {
    margin-bottom: 30px;
    text-align: center;
  }

  .modal-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--text);
  }

  .modal-header p {
    color: var(--text-light);
    font-size: 14px;
  }

  .modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .form-group label {
    font-weight: 600;
    font-size: 13px;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
  }

  .form-group input {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    padding: 12px 16px;
    border: 1px solid var(--bg-light-gray);
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
  }

  .form-group input:focus {
    outline: none;
    border-color: var(--orange);
  }

  .form-error {
    background: #fff0ec;
    border: 1px solid var(--orange);
    border-radius: 6px;
    color: var(--orange-dark);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.4;
    padding: 10px 12px;
  }

  .modal-form span.error {
    color: var(--orange-dark);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 1.35;
    margin-top: 6px;
  }

  .modal-form .radio-group + span.error {
    margin-top: -4px;
  }

  .form-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 15px;
  }

  .radio-group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 10px 0;
  }

  .radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 12px;
    padding: 10px 0;
  }

  .radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--orange);
  }

  .radio-option span {
    color: var(--text);
  }

  .submit-btn {
    background: var(--orange);
    color: white;
    padding: 14px 24px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
  }

  .submit-btn:hover {
    background: var(--orange-dark);
  }

  .form-note {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    margin-top: 15px;
  }

  /* ===== RESPONSIVE MOBILE ===== */
  @media (max-width: 768px) {

    /* Navigation */
    .nav-desktop {
      display: none;
    }

    .mobile-menu-toggle {
      display: flex;
    }

    .hero-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    /* Modal Mobile */
    .modal {
      width: 95%;
      max-width: calc(100vw - 20px);
    }

    .modal-content {
      padding: 25px;
    }

    .modal-header h2 {
      font-size: 24px;
    }

    .form-row {
      grid-template-columns: 1fr;
    }

    .radio-group {
      grid-template-columns: 1fr;
    }

    /* Floating CTA */
    .floating-cta {
      display: block;
    }

    /* Hero */
    .hero {
      padding: 0px 0 40px;
      margin-top: 0;
    }
    .hero-top {
      flex-direction: column;
      align-items: center;
      gap: 20px;
      margin-bottom: 30px;
    }
    .hero-content {
      grid-template-columns: 1fr;
    }
    .hero-left {
      text-align: center;
    }
    .hero-title {
      font-size: 60px;
    }
    .hero-cta {
      font-size: 18px;
      padding: 16px 24px 16px 100px;
    }
    .hero-cta::before {
      width: 80px;
      height: 44px;
    }
    .hero-right {
      margin-top: 30px;
    }
    .hero-bottom-text {
      font-size: 15px;
      text-align: center;
      margin-top: 16px;
    }

    /* Stats */
    .stats-grid {
      flex-direction: column;
      gap: 20px;
    }
    .stat {
      justify-content: center;
    }

    /* Law */
    .law-images {
      gap: 10px;
      padding: 0 10px;
    }
    .law-images .law-img img {
      border-radius: 8px;
    }

    /* How work */
    .work-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    /* Aporte */
    .pricing-grid {
      grid-template-columns: 1fr 1fr;
    }
    .price-desc{
      font-size: 16px;
    }
    .price-btn{
      font-size: 20px;
    }
    /* Big image */
    .big-image {
      height: 350px;
      margin-top: 0;
    }
    .big-image-title {
      font-size: 36px;
    }
    .big-image-subtitle {
      font-size: 16px;
    }
    .big-image-overlay {
      bottom: 30px;
      padding: 0 20px;
    }

    /* Testimonials */
    .testimonial-carousel {
      padding: 0 30px;
    }
    .testimonial-content {
      flex-direction: column;
      align-items: center;
      padding: 0 10px;
    }
    .testimonial-photo {
      width: 140px;
      height: 140px;
    }
    .testimonial-text {
      padding-left: 0;
      padding-top: 30px;
    }
    .testimonial-photo::before {
      left: 50%;
      top: auto;
      bottom: -20px;
      transform: translateX(-50%);
    }
    .testimonial-quote {
      font-size: 16px;
      text-align: center;
    }
    .testimonial-author {
      font-size: 22px;
      text-align: center;
    }
    .testimonial-meta {
      text-align: center;
    }

    /* FAQ */
    .faq {
      padding: 50px 0;
    }
    .faq-question {
      font-size: 15px;
    }

    /* Footer */
    .footer-title {
      font-size: 24px;
    }
    .radio-group {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 480px) {
    .hero-title {
      font-size: 48px;
    }
    .pricing-grid {
      grid-template-columns: 1fr;
    }
    .top-cta{
      display: none;
    }
  }
