html {
    scroll-behavior: smooth;
    overflow-x: hidden;
  }
  
  span{
      letter-spacing: 3px;
      font-weight: bolder;
      font-size: 18px;
  }
  
  body {
    margin: 0;
    padding: 0;
    font-family: 'Josefin Sans', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  
  h3 {
        font-family: 'Josefin Sans', sans-serif;
        margin-bottom: 0px;
  }
  h1, h2{
     font-family: 'Josefin Sans', sans-serif;
  }
  
  .header {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #d2b99e;
    padding: 1rem 2rem;
    position: relative;
    height: 100px;
  }
  
  .logo {
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 2px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .logo img {
    max-height: 100px;
    height: auto;
    width: auto;
  }
  
  /* Header Navigation */
  .header-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
  }
  
  .nav-link {
    color: #905F3C;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
  }
  
  .nav-link:hover {
    color: #fff;
    transform: translateY(-2px);
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  
  /* Mobile Menu Toggle */
  .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
  }
  
  .hamburger-line {
    width: 25px;
    height: 3px;
    background: #905F3C;
    transition: all 0.3s ease;
    border-radius: 2px;
  }
  
  .mobile-menu-toggle:hover .hamburger-line {
    background: #fff;
  }
  
  /* Mobile Menu Active State */
  .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  nav {
    display: flex;
    gap: 1rem;
  }
  
  .login-link {
    color: #222;
    text-decoration: none;
    font-weight: 500;
    margin-right: 1rem;
  }
  
  .cta-btn {
    background: #AB382D;
    color: #fff;
    padding: 0.9rem 4.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s;
    margin-top: 20px;
    text-align: center;
    font-size: 1.7rem;
  }
  
  .hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0rem 2rem 4rem 2rem;
  
    background: linear-gradient(90deg, #fff 60%, transparent 100%);
    position: relative;
    overflow: hidden;
  }
  
  .hero-content {
    max-width: 1200px;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #905F3C;
    text-shadow: 0 2px 0 rgba(0, 0, 0, .1), 0 0px 2px rgba(0, 0, 0, .15);
  }
  
  .hero-content p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #000;
    font-weight: 400;
    font-family: 'Josefin Sans', sans-serif;
  }
  
  .hero-image {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
    width: 100%;
    max-width: 1400px;
    padding: 0 2rem;
  }
  
  .hero-image iframe {
    width: 100%;
    max-width: 1200px;
    min-width: 800px;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 20px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.15);
    border: none;
  }
  
  .hero-image img {
    width: 400px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  }
  
  .video-preview {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 180px;
    border: 4px solid #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    overflow: hidden;
  }
  
  .video-preview img {
    width: 100%;
    display: block;
  } 
  
  .membership-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem 5rem 2rem;
    background: #fff;
  }
  
  .membership-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    font-family: 'Josefin Sans', sans-serif;
  }
  
  .membership-intro {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    font-family: 'Josefin Sans', sans-serif;
  }
  
  .membership-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    list-style: none;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  @media (max-width: 1024px) {
    .membership-list {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-image {
      max-width: 100%;
      padding: 0 1.5rem;
    }
    
    .hero-image iframe {
      max-width: 900px;
      min-width: 600px;
      height: auto;
      aspect-ratio: 16/9;
    }
  }
  
  @media (max-width: 600px) {
  
    body > section.aire-benefits-section > div > div > div:nth-child(8){
      margin-bottom: 40px;
    }
    .hero-content h1 {
      line-height: 50px;
    }
  
    .header {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 0.5rem;
    }
    
    .header-nav {
      display: none;
    }
    
    .mobile-menu-toggle {
      display: flex;
      display:none;
    }
    .logo img {
      max-width: 80vw;
      height: auto;
      margin-bottom: 0.5rem;
      opacity: 0;
      transform: translateY(-24px);
      max-height: 100px;
      height: auto;
      transition: opacity 1.2s cubic-bezier(.4,0,.2,1), transform 1.2s cubic-bezier(.4,0,.2,1);
    }
    .logo-fade-in {
      opacity: 1 !important;
      transform: translateY(0) !important;
    }
    nav {
      flex-direction: column;
      gap: 0.5rem;
      width: 100%;
      align-items: center;
    }
    .cta-btn {
      width: 100vw;
      max-width: 350px;
      padding:10px;
      font-size: 1.5rem;
      margin-top: 8px;
      }
    .hero-section {
      padding: 0rem 0.5rem 2rem 0.5rem;
    }
    .hero-content h1 {
      font-size: 1.7rem;
      line-height: 31px;
      text-shadow: 0 2px 0 rgba(0, 0, 0, .1), 0 0px 2px rgba(0, 0, 0, .15);
    }
    .hero-content p {
      font-size: 1.5rem;
    }
    .hero-image {
      padding: 0 1rem;
      margin: 2rem 0;
    }
    
    .hero-image iframe {
      width: 100%;
      max-width: 100%;
      min-width: 100%;
      height: auto;
      aspect-ratio: 16/9;
      border-radius: 15px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      border: none;
    }
    .membership-section {
      padding: 2rem 0.5rem 2.5rem 0.5rem;
    }
    .membership-section h2 {
      font-size: 1.3rem;
    }
    .membership-intro {
      font-size: 1rem;
    }
    .membership-list {
      gap: 1rem;
    }
    .membership-list li {
      padding: 1rem 0.5rem;
      min-height: 120px;
      font-size: 0.98rem;
    }
  }
  
  .membership-list li {
    background: #f8fafb;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 1.5rem 1rem;
    margin-bottom: 0;
    font-size: 1.08rem;
    line-height: 1.6;
    font-family: 'Cardo', serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 180px;
    transition: transform 0.15s, box-shadow 0.15s;
  }
  
  .membership-list li:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
  }
  
  .membership-list strong {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.1em;
    margin-bottom: 0.5rem;
    display: block;
  } 
  
  .testimonials-section {
    background: #f8fafb;
    padding: 3rem 0 3rem 0;
    text-align: center;
  }
  
  .testimonials-section h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .testimonials-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .slider-arrow {
    background: #fff;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s;
    z-index: 2;
  }
  .slider-arrow:hover {
    background: #ffd600;
  }
  
  .testimonials-track {
    display: flex;
    gap: 2rem;
    overflow: hidden;
    width: 100%;
    max-width: 700px;
  }
  
  .testimonial {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 2rem 1.5rem;
    min-width: 320px;
    max-width: 350px;
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  
  .testimonial p {
    font-size: 1.1rem;
    font-family: 'Josefin Sans', sans-serif;
    margin-bottom: 1rem;
  }
  
  .testimonial-author {
    font-size: 1rem;
    color: #b89c7a;
    font-family: 'Josefin Sans', sans-serif;
  }
  
  .slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 0.5rem;
  }
  
  .slider-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #d2b99e;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.2s;
  }
  .slider-dots button.active {
    opacity: 1;
    background: #ffd600;
  }
  
  @media (min-width: 700px) {
    .testimonial {
      flex: 0 0 45%;
      min-width: 320px;
      max-width: 400px;
    }
    .testimonials-track {
      gap: 2.5rem;
    }
  }
  
  @media (min-width: 1024px) {
    .logo img {
      max-height: 100px;
    }
    .testimonial {
      flex: 0 0 30%;
      min-width: 320px;
      max-width: 400px;
    }
    .testimonials-track {
      gap: 3rem;
    }
  }
  
  @media (max-width: 600px) {
    .plan-pricing{
      font-size :1.3rem;
              position: relative;
        top: -60px;
    }
      
    .hero-image {
      max-height: 230px !important;
    }
    .testimonials-section {
      padding: 2rem 0 2rem 0;
    }
    .testimonials-section h2 {
      font-size: 1.2rem;
    }
    .testimonials-slider {
      max-width: 98vw;
    }
    .testimonials-track {
      max-width: 95vw;
      gap: 1rem;
    }
    .testimonial {
      min-width: 90vw;
      max-width: 95vw;
      padding: 1.2rem 0.5rem;
      font-size: 1rem;
    }
  }
  
  .faqs-section {
    background: #fff;
    padding: 2rem 0 3rem 0;
    text-align: center;
  }
  .faqs-section h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .faqs-list {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
  }
  .faq-item {
    border-radius: 14px;
    background: #f8fafb;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    overflow: hidden;
    transition: box-shadow 0.2s;
  }
  .faq-item.open {
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  }
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: bold;
    padding: 1.2rem 1.5rem;
    text-align: left;
    cursor: pointer;
    color: #000;
    transition: background 0.2s;
  }
  .faq-question:hover {
    background: #ffd60022;
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.05rem;
    color: #1a1a1a;
    padding: 0 1.5rem;
    transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.2s;
  }
  .faq-item.open .faq-answer {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    max-height: 300px;
  }
  @media (max-width: 600px) {
    .faqs-section {
      padding: 2rem 0 2rem 0;
    }
    .faqs-section h2 {
      font-size: 1.2rem;
    }
    .faqs-list {
      max-width: 98vw;
    }
    .faq-question {
      font-size: 1rem;
      padding: 1rem 1rem;
    }
    .faq-answer {
      font-size: 0.98rem;
      padding: 0 1rem;
    }
    .faq-item.open .faq-answer {
      padding: 0.7rem 1rem 1rem 1rem;
    }
  }
  
  .newsletter-section {
    background: #f8fafb;
    padding: 2.5rem 0 2.5rem 0;
    text-align: center;
  }
  .newsletter-section h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }
  .newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .newsletter-form input[type="email"] {
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    border: 1px solid #d2b99e;
    font-size: 1rem;
    font-family: 'Josefin Sans', sans-serif;
    outline: none;
    min-width: 220px;
    max-width: 320px;
  }
  .newsletter-form .cta-btn {
    padding: 0.7rem 2rem;
    font-size: 1rem;
    margin-top: 0;
  }
  .footer {
    background: #D2B99E;
    padding: 1.5rem 2rem;
    margin-top: 0;
    border: none;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }
  
  .footer-logo img {
    max-height: 60px;
    width: auto;
  }
  
  .footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
  }
  
  .footer-link {
    color: #222;
    text-decoration: none;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1rem;
    transition: color 0.2s;
  }
  
  .footer-link:hover {
    color: #AB382D;
  }
  
  .footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  
  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #222;
    border-radius: 50%;
    transition: background 0.2s;
  }
  
  .social-link:hover {
    background: #AB382D;
  }
  
  .social-link img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
  }
  .footer-top {
    position: relative;
    width: 100%;
    height: 270px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background: #222;
  }
  .footer-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.7);
  }
  .footer-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2.2rem 3.5rem 2.2rem 3.5rem;
  }
  .footer-brand {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.1rem;
    color: #eaff00;
    font-weight: bold;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
  }
  .footer-contact-text h2 {
    font-size: 2.2rem;
    color: #AB382D;
    margin: 0 0 0.5rem 0;
    font-family: 'Josefin Sans', sans-serif;
  }
  .footer-contact-text p {
    color: #fffde4;
    font-size: 1.1rem;
    margin: 0;
    font-family: 'Josefin Sans', sans-serif;
  }
  .footer-bottom {
    background: #AB382D;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
    padding: 2.2rem 0 2.2rem 0;
  }
  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 160px;
  }
  .footer-col-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.1rem;
    color: #222;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  .footer-col-content {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.05rem;
    color: #222;
  }
  .footer-social {
    display: flex;
    gap: 1.1rem;
    margin-top: 0.2rem;
  }
  .footer-social a {
    font-size: 1.5rem;
    color: #222;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-social a:hover {
    color: #7c5a3a;
  }
  @media (max-width: 900px) {
    .hero-image iframe {
      max-width: 500px;
      height: 281px;
      aspect-ratio: 16/9;
    }
    
    .footer-overlay {
      padding: 1.2rem 1.2rem 1.2rem 1.2rem;
    }
    .footer-bottom {
      gap: 2rem;
      padding: 1.2rem 0 1.2rem 0;
    }
  }
  @media (max-width: 900px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
      text-align: center;
    }
    
    .footer-links {
      flex-direction: column;
      gap: 1rem;
    }
    
    .footer-social {
      gap: 0.8rem;
    }
  }
  
  @media (max-width: 600px) {
    .footer {
      padding: 1rem 1rem;
    }
    
    .footer-container {
      gap: 1rem;
    }
    
    .footer-logo img {
      max-height: 50px;
    }
    
    .footer-link {
      font-size: 0.9rem;
    }
    
    .social-link {
      width: 35px;
      height: 35px;
    }
    
    .social-link img {
      width: 18px;
      height: 18px;
    }
  }
  
  .about-section {
    background: #fff;
    padding: 3rem 0 2rem 0;
    text-align: center;
  }
  .about-section h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.2rem;
  }
  .about-section p {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    color: #444;
  }
  @media (max-width: 600px) {
    .about-section {
      padding: 2rem 0 1.2rem 0;
    }
    .about-section h2 {
      font-size: 1.2rem;
    }
    .about-section p {
      font-size: 1rem;
      max-width: 95vw;
    }
  }
  
  .about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
  }
  .about-image {
    flex: 1 1 260px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .about-image img {
    width: 340px;
    height: 420px;
    object-fit: cover;
    border-radius: 18px 18px 24px 24px/120px 120px 24px 24px;
    box-shadow: 0 8px 32px rgba(184,156,122,0.13);
    background: #f8f0e6;
    /* Corte tipo arco arriba */
    clip-path: ellipse(190px 210px at 50% 210px);
    /* Elipse centrada arriba, radio igual a la mitad del ancho y alto */
  }
  @media (max-width: 900px) {
    .about-image img {
      width: 90vw;
      height: auto;
      max-width: 340px;
      clip-path: ellipse(45vw 105px at 50% 105px);
    }
  }
  .about-content {
    flex: 2 1 400px;
    text-align: left;
  }
  .about-name {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.3rem;
    color: #7c5a3a;
    margin-bottom: 1.2rem;
  }
  @media (max-width: 900px) {
    .about-container {
      flex-direction: column;
      gap: 1.5rem;
      padding: 1.2rem 0.5rem;
    }
    .about-image img {
      width: 90vw;
      height: auto;
      max-width: 320px;
    }
    .about-content {
      text-align: center;
    }
  }
  
  .animated-membership-section {
    background: #fff;
    padding: 4rem 0 4rem 0;
    text-align: center;
  }
  .animated-membership-section h2 {
    color: #905F3C;
    font-family: 'Cardo', serif;
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
  }
  .animated-membership-subtitle {
    color: #905F3C;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 2.2rem;
  }
  .animated-membership-typed {
    min-height: 3.2rem;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2rem;
    color: #905F3C;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  @media (max-width: 600px) {
  
  
    .animated-membership-section {
      padding: 2rem 0 2rem 0;
    }
    .animated-membership-section h2 {
      font-size: 1.2rem;
    }
    .animated-membership-subtitle {
      font-size: 1rem;
      margin-bottom: 1.2rem;
    }
    .animated-membership-typed {
      font-size: 1.1rem;
      min-height: 2.2rem;
    }
  }
  
  .aire-why-section {
    background: #d2b99e;
    padding: 80px 0 80px 0;
    display: flex;
    justify-content: center;
  }
  .aire-why-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 13px 54px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #F5D2D2;
    border-radius: 40px;
  }
  .aire-why-container p {
    font-family: 'Josefin Sans', sans-serif;
      font-size: 42px;
      line-height: 1.2;
      color: #AB382D;
      margin-bottom: 0px;
      text-align: center;
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
  }
  .aire-why-highlight {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #AB382D;
    margin-bottom: 32px;
    text-align: center;
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
  }
  .aire-why-container .fade-in-visible {
    opacity: 1;
    transform: translateY(0);
  }
  @media (max-width: 600px) {
    .aire-why-section {
      padding: 48px 0 48px 0;
    }
    .aire-why-container {
  
      padding: 0 12px;
    }
    .aire-why-container p,
    .aire-why-highlight {
      font-size: 18px;
      margin-bottom: 24px;
    }
  }
  
  .aire-benefits-section {
    background: #d2b99e;
    padding: 0px 0 40px 0;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .aire-benefits-container {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    background-color: #AB382D;
    padding: 30px;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
  }
  .aire-benefits-title {
    color: #fff;
    font-family: 'josefin sans', serif;
    font-size: 4.0rem;
    text-align: center;
    margin-bottom: 3.2rem;
    text-transform: uppercase;
  }
  .aire-benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.2rem 0;
    justify-items: center;
    align-items: stretch;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  .aire-benefit-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    margin: 0;
    gap: 0;
    box-sizing: border-box;
  }
  .aire-benefit-card.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .aire-benefit-image-top {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 0;
    box-sizing: border-box;
  }
  .aire-benefit-image-top img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    box-sizing: border-box;
  }
  .aire-benefit-text-block {
    background:#f0efeb;
    padding: 2.5rem 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    box-sizing: border-box;
  }
  .aire-benefit-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.90rem;
    font-weight: 700;
    color: #905F3C;
    margin-bottom: 0;
    text-transform: uppercase;
    line-height: 1.2;
  }
  .aire-benefit-desc {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2rem;
    color: #000;
    line-height: 1.6;
    font-style: normal;
  }
  .aire-benefit-desc p {
    margin-bottom: 1rem;
  }
  .aire-benefit-desc p:last-child {
    margin-bottom: 0;
  }
  .aire-benefit-image-bottom {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 0;
    box-sizing: border-box;
  }
  .aire-benefit-image-bottom img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    box-sizing: border-box;
  }
  .aire-benefit-separator {
    width: 100%;
    max-width: 1200px;
    height: 2px;
    background: linear-gradient(to right, transparent, #ffffff, transparent);
    margin: 2rem auto;
    opacity: 0.5;
    border: none;
    padding: 0;
    display: block;
  }
  @media (max-width: 900px) {
    .aire-benefits-list {
      grid-template-columns: 1fr;
      gap: 2rem 0;
    }
    .aire-benefits-section {
      padding: 48px 0 0px 0;
    }
    .aire-benefit-text-block {
      padding: 2rem 1.5rem;
    }
    .aire-benefit-separator {
      margin: 1.5rem auto;
    }
    #contact-section > div {
      width: 90% !important;
    }
  }
  @media (max-width: 600px) {
    .aire-benefits-container {
      padding: 0 10px;
    }
    .aire-benefits-title {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
    }
    .aire-benefit-text-block {
      padding: 1.5rem 1rem;
    }
    .aire-benefit-title {
      font-size: 1.3rem;
    }
    .aire-benefit-desc {
      font-size: 0.98rem;
    }
    .aire-benefit-separator {
      margin: 1.2rem auto;
      height: 1px;
    }
  }
  
  /* Estrellas animadas */
  .animated-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
  }
  
  .star {
    position: absolute;
    opacity: 0.8;
    transition: transform 0.3s ease-out;
  }
  
  .star-1 {
    top: 10%;
    left: 5%;
    width: 40px;
    height: 40px;
    animation: starFloat1 6s ease-in-out infinite;
  }
  
  .star-2 {
    top: 60%;
    right: 8%;
    width: 30px;
    height: 30px;
    animation: starFloat2 8s ease-in-out infinite;
  }
  
  .star-3 {
    bottom: 20%;
    left: 15%;
    width: 35px;
    height: 35px;
    animation: starFloat3 7s ease-in-out infinite;
  }
  
  @keyframes starFloat1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(180deg); }
  }
  
  @keyframes starFloat2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(-180deg); }
  }
  
  @keyframes starFloat3 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(90deg); }
  }
  
  /* Efecto de scroll en las estrellas */
  .star.scroll-animate {
    animation-play-state: paused;
  }
  .membership-section .animated-membership-section{
    font-family: 'Cardo', serif !important;
  }
  @media (max-width: 900px) {
    .star-1 {
      width: 30px;
      height: 30px;
      top: 8%;
      left: 3%;
    }
    
    .star-2 {
      width: 25px;
      height: 25px;
      top: 55%;
      right: 5%;
    }
    
    .star-3 {
      width: 28px;
      height: 28px;
      bottom: 15%;
      left: 10%;
    }
  }
  
  @media (max-width: 600px) {
    .star-1 {
        display:none;
      width: 25px;
      height: 25px;
      top: 13%;
      left: 2%;
    }
    
    .star-2 {
      width: 20px;
      height: 20px;
      top: 50%;
      right: 3%;
    }
    
    .star-3 {
      width: 22px;
      height: 22px;
      bottom: 10%;
      left: 8%;
    }
  }
  
  .aire-marquee-section {
    width: 100%;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #fff;
    overflow: hidden;
    border-top: 2px solid #d2b99e;
    border-bottom: 2px solid #d2b99e;
    box-sizing: border-box;
  }
  .aire-marquee {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
  }
  .aire-marquee span {
    display: inline-block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #905F3C;
    letter-spacing: 2px;
    padding: 1.2rem 0;
    animation: aire-marquee-scroll 18s linear infinite;
    text-transform: uppercase;
  }
  @keyframes aire-marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33%); }
  }
  @media (max-width: 900px) {
    .aire-marquee span {
      font-size: 1.3rem;
      padding: 0.7rem 0;
    }
  }
  @media (max-width: 600px) {
    .aire-marquee span {
      font-size: 1rem;
      padding: 0.5rem 0;
    }
  }
  
  .aire-reels-section {
    background: #d2b99e;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  .aire-reels-title {
    font-family: 'Josefin Sans', sans-serif;
    color: #fff;
    font-size: 2.1rem;
    text-align: center;
    margin: 0;
    padding: 2.5rem 0 1.5rem 0;
    text-shadow: 0 2px 0 rgba(0, 0, 0, .1), 0 0px 2px rgba(0, 0, 0, .15);
  }
  .aire-reels-container {
    height: 80vh;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    box-sizing: border-box;
  }
  .aire-reel {
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
  }
  .aire-reel video {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 9/16;
    height: 70vh;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(184,156,122,0.13);
    background: #fff;
  }
  @media (max-width: 900px) {
    .aire-reels-container {
      max-width: 98vw;
      height: 70vh;
      gap: 1.2rem;
    }
    .aire-reel video {
      max-width: 98vw;
      height: 60vh;
    }
  }
  @media (max-width: 600px) {
    .aire-reels-title {
      font-size: 1.9rem;
      padding: 1.2rem 0 0.7rem 0;
    }
    .aire-reels-container {
      height: 60vh;
      gap: 0.7rem;
    }
    .aire-reel video {
      height: 45vh;
      border-radius: 14px;
    }
  }
  
  .aire-reels-horizontal-container {
    display: flex;
    flex-direction: row;
    overflow-x: hidden;
    overflow-y: hidden;
    gap: 3.5rem;
    width: 100%;
    padding: 2.5rem 0 3.5rem 0;
    box-sizing: border-box;
    justify-content: flex-start;
    align-items: stretch;
   
  }
  
  .aire-reels-horizontal-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
  }
  
  @keyframes smooth-scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  /* Pausar animación al hacer hover */
  .aire-reels-horizontal-container:hover {
    animation-play-state: paused;
  }
  
  /* Pausar animación cuando se interactúa con un video */
  .aire-reels-horizontal-container video:focus,
  .aire-reels-horizontal-container video:hover,
  .aire-reels-horizontal-container .video-container:hover {
    animation-play-state: paused;
  }
  
  /* Pausar animación cuando un video está reproduciéndose */
  .aire-reels-horizontal-container video[data-playing="true"] {
    animation-play-state: paused;
  }
  
  /* Pausar animación cuando el contenedor del video tiene hover */
  .aire-reels-horizontal-container .aire-reel-horizontal:hover {
    animation-play-state: paused;
  }
  
  /* En móvil: permitir scroll manual y desactivar animación automática */
  @media (max-width: 900px) {
    .aire-reels-horizontal-container {
      overflow-x: auto;
      animation: none;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scroll-behavior: smooth;
    }
    
    .aire-reels-horizontal {
      scroll-snap-align: center;
    }
  }
  
  /* En móvil pequeño: ajustes adicionales */
  @media (max-width: 600px) {
    .aire-reels-horizontal-container {
      gap: 1.2rem;
      padding: 1.2rem 0 2rem 0;
      scroll-snap-type: x mandatory;
    }
  }
  
  /* Navegación de testimonios con flechas y dots */
  .testimonials-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    padding: 0 1rem;
    margin-bottom: 50px;
    position: relative;
  }
  
  .testimonial-nav-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #d2b99e;
    background: #d2b99e;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(210, 185, 158, 0.3);
    position: relative;
    z-index: 10;
  }
  
  .testimonial-nav-arrow:hover {
    background: #b89a7a;
    border-color: #b89a7a;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(210, 185, 158, 0.4);
  }
  
  .testimonial-nav-arrow:focus {
    outline: 3px solid #905F3C;
    outline-offset: 2px;
  }
  
  .testimonial-nav-arrow:active {
    transform: scale(0.95);
  }
  
  .testimonial-nav-arrow svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    stroke-width: 2.5;
  }
  
  /* Dots de navegación para testimonios */
  .testimonials-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    flex: 1;
    max-width: 400px;
  }
  
  .dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 3px solid #905F3C;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(144, 95, 60, 0.3);
    position: relative;
  }
  
  .dot:hover {
    background: #905F3C;
    transform: scale(1.1);
    box-shadow: 0 3px 6px rgba(144, 95, 60, 0.4);
  }
  
  .dot:focus {
    outline: 3px solid #905F3C;
    outline-offset: 2px;
  }
  
  .dot.active {
    background: #905F3C;
    border-color: #905F3C;
    transform: scale(1.2);
    box-shadow: 0 4px 8px rgba(144, 95, 60, 0.4);
  }
  
  @media (max-width: 600px) {
    .testimonials-navigation {
      gap: 1rem;
      margin-top: 1.5rem;
    }
    
    .testimonial-nav-arrow {
      width: 40px;
      height: 40px;
    }
    
    .testimonial-nav-arrow svg {
      width: 18px;
      height: 18px;
    }
    
    .testimonials-dots {
      gap: 0.8rem;
      max-width: 300px;
    }
    
    .dot {
      width: 14px;
      height: 14px;
      border-width: 2.5px;
    }
    
    .dot.active {
      transform: scale(1.1);
    }
  }
  
  .aire-reel-horizontal {
    flex: 0 0 420px;
    min-width: 340px;
    max-width: 480px;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 28px;
    scroll-snap-align: center;
    gap: 1.5rem;
  }
  .aire-reel-horizontal video {
    width: 180px;
    height: 320px;
    aspect-ratio: 9/16;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(184,156,122,0.10);
    flex-shrink: 0;
  }
  .aire-reel-quote {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 12px;
    color: #fff;
    font-style: italic;
    background: #d2b99e;
    border-radius: 16px;
    padding: 1.2rem 1.2rem 1.2rem 1.5rem;
    position: relative;
    top: -30px;
    min-width: 530px;
    left: 40px;
  }
  .aire-quote-mark {
    font-size: 2.2rem;
    color: #fff;
    font-style: normal;
    line-height: 1;
    vertical-align: middle;
    margin: 0 0.2rem;
  }
  @media (max-width: 900px) {
    .aire-reels-horizontal-container {
      gap: 1.2rem;
      padding: 1.2rem 0 2rem 0;
    }
    .aire-reel-horizontal {
      flex: 0 0 90vw;
      min-width: 220px;
      max-width: 58vw;
      padding: 0.7rem 0.5rem;
      gap: 0.7rem;
    }
    .aire-reel-horizontal video {
      width: 110px;
      height: 180px;
      border-radius: 10px;
    }
    .aire-reel-quote {
      font-size: 1rem;
      padding: 0.7rem 0.7rem 0.7rem 1rem;
      border-radius: 10px;
    }
    .aire-quote-mark {
      font-size: 2.3rem;
    }
  }
  @media (max-width: 600px) {
    .aire-reels-horizontal-container {
      gap: 0.5rem;
      padding: 0.7rem 0 1.2rem 0;
    }
    .aire-reel-horizontal {
      flex-direction: column;
      align-items: center;
      min-width: 90vw;
      max-width: 98vw;
      padding: 0.5rem 0.2rem;
      gap: 0.5rem;
    }
    .aire-reel-horizontal video {
      width: 90vw;
      height: 45vw;
      min-width: 120px;
      max-width: 98vw;
      border-radius: 8px;
    }
    .aire-reel-quote {
      font-size: 1.2rem;
      padding: 0.5rem 0.5rem 0.5rem 0.7rem;
      border-radius: 8px;
      margin-left: 0;
      margin-top: 0.3rem;
      align-items: center;
      text-align: center;
    }
    .aire-quote-mark {
      font-size: 1.1rem;
    }
  }
  
  .contact-section {
    background: #d2b99e;
    padding: 0px 0 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contact-section h2 {
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2rem;
    margin-bottom: 2.2rem;
    text-align: center;
  }
  .contact-form {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(184,156,122,0.07);
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 320px;
    max-width: 400px;
    width: 100%;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-form label {
    font-family: 'Josefin Sans', sans-serif;
    color: #905F3C;
    font-size: 1.05rem;
    font-weight: 600;
  }
  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="tel"],
  .contact-form textarea {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.08rem;
    padding: 0.8rem 1rem;
    border: 1.5px solid #D2B99E;
    border-radius: 10px;
    background: #d2b99e;
    color: #905F3C;
    outline: none;
    transition: border 0.2s;
    resize: vertical;
  }
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #AB382D;
  }
  .contact-form .cta-btn {
    margin-top: 0.5rem;
    font-size: 1.1rem;
    width: 100%;
  }
  .form-feedback {
    margin-top: 1rem;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1rem;
    color: #AB382D;
    text-align: center;
  }
  @media (max-width: 600px) {
    .contact-section {
      padding: 32px 0 32px 0;
    }
    .contact-form {
      padding: 1.2rem 0.7rem 1rem 0.7rem;
      min-width: 0;
      max-width: 98vw;
    }
  }
  
  /* === BLOQUE 5: Inversión – Plan Section Custom === */
  .plan-section {
    background: #d2b99e;
    padding: 1rem 0 1rem 0;
    text-align: center;
  }
  .plan-title {
    font-family: 'Josefin Sans';
      font-size: 2.5rem;
      font-weight: 600;
      color: #fff;
      margin-bottom: 1.2rem;
      text-align: center;
  }
  @media (max-width: 600px) {
    .plan-title {
      font-size: 1.75rem;
    }
  }
  .plan-quote {
       font-family: 'Josefin Sans';
      font-size: 1.9rem;
      color: #905F3C;
      text-align: center;
      max-width: 800px;
      margin: 0 auto 2.5rem auto;
      font-style: italic;
      line-height: 1.6;
      letter-spacing: 2px;
  }
  

  
  .plan-title-quote-container .plan-title {
    color: #fff;
    margin-bottom: 1rem;
  }
  
  .plan-title-quote-container .plan-quote {
    color: #fff;
    margin-bottom: 0;
  }
  
  @media (max-width: 600px) {
    .plan-quote {
      font-size: 1.5rem;
      max-width: 95vw;
    }
    
    .plan-title-quote-container {
      padding: 1.5rem 1rem;
      margin-bottom: 2rem;
    }
  }
  .plan-options-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
  }
  @media (max-width: 900px) {
    .plan-options-container {
      flex-direction: column;
      gap: 1.2rem;
      align-items: center;
    }
  
    .plan-card {
      max-width: 80vw !important;
      padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  
    }
    
  }
  
  @media (max-width: 600px) {
    .plan-card-essential {
      padding: 0.8rem 0.6rem 0.8rem 0.6rem !important;
    }
    
    .plan-card-essential .butterfly-image {
      max-width: 90px !important;
      margin-bottom: 0.3rem !important;
    }
    
    .plan-card-essential .plan-option-title {
      font-size: 1.1rem !important;
      margin-bottom: 0.3rem !important;
    }
    
    .plan-card-essential .plan-description {
      font-size: 0.85rem !important;
      line-height: 1.3 !important;
    }
    
    .plan-card-essential .plan-includes {
      padding: 0.8rem 0.4rem !important;
      margin: 0.3rem auto 0.5rem auto !important;        
      position: relative;
        top: -20px;
    }
    
    .plan-card-essential .plan-includes h4 {
      font-size: 0.85rem !important;
      margin-bottom: 0.5rem !important;
    }
    
    .plan-card-essential .plan-includes-list {
      font-size: 0.9rem !important;
      line-height: 1.4 !important;
    }
    
    .plan-card-essential .plan-includes-list li {
      margin-bottom: 0.2rem !important;
    }
    
    .plan-card-essential .plan-pricing {
      font-size: 0.9rem !important;
              position: relative;
        top: -40px;
    }
    
    .plan-card-essential .plan-pricing .pricing-option {
      margin-bottom: 0.3rem !important;
    }
    
    .plan-card-essential .plan-pricing h5 {
      font-size: 0.8rem !important;
      margin-bottom: 0.1rem !important;
    }
    
    .plan-card-essential .plan-pricing .price {
      font-size: 1rem !important;
    }
    
    .plan-card-essential .plan-pricing .total {
      font-size: 0.75rem !important;
    }
    
    .plan-card-essential .cta-btn {
      font-size: 1.1rem !important;
      padding: 0.5rem 1.2rem !important;
      margin-top: 0.3rem !important;
        position: relative;
        top: -20px;
    }
  }
  .plan-card {
    background: #fff;
    border-radius: 18px;
    max-width: 40vw;
    min-width: 260px;
    width: 100%;
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
  }
  
  .plan-card-recommended {
    border: 2.5px solid #AB382D;
    box-shadow: 0 8px 32px rgba(171,56,45,0.13);
  }
  
  .plan-butterfly {
    text-align: center;
    margin-bottom: -20px;
  }
  
  .butterfly-image {
    max-width: 160px;
    height: auto;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .plan-card:hover .butterfly-image {
    transform: scale(1.1);
    opacity: 1;
  }
  
  .plan-option-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #AB382D !important;
    margin-bottom: 0.7rem;
    text-align: center;
  }
  @media (max-width: 600px) {
    .butterfly-image {
      max-width: 150px;
    }
    
    .plan-option-title {
      font-size: 1.5rem;
    }
  }
  .plan-price-block {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.35rem;
    color: #905F3C;
    font-weight: 700;
    margin-bottom: 0.2rem;
  }
  .plan-price-main {
    font-size: 2rem;
    color: #905F3C;
    font-weight: 700;
  }
  .plan-price-desc {
    font-size: 1.1rem;
    color: #D2B99E;
    margin-left: 0.5rem;
    font-weight: 400;
  }
  .plan-price-detail {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.1rem;
    color: #905F3C;
    margin-bottom: 0.7rem;
  }
  .plan-option-quote {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.05rem;
    color: #AB382D;
    background: none;
    border: none;
    margin: 0.7rem 0 1.2rem 0;
    line-height: 1.7;
  }
  .plan-split-details {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem 0;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.05rem;
    color: #905F3C;
    text-align: left;
  }
  .plan-split-details li {
    margin-bottom: 0.3rem;
  }
  .plan-btn {
    margin-top: 0.7rem;
    font-size: 1.1rem;
    padding: 0.9rem 2.2rem;
    background: linear-gradient(90deg, #ffd600 60%, #e6d3b3 100%);
    color: #222;
    border: none;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: bold;
    border-radius: 25px;
    box-shadow: 0 4px 16px rgba(184,156,122,0.13);
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    letter-spacing: 0.5px;
  }
  .plan-btn:hover {
    background: linear-gradient(90deg, #ffe066 60%, #e6d3b3 100%);
    box-shadow: 0 8px 32px rgba(184,156,122,0.18);
  }
  .plan-includes {
    margin: 0.7rem auto 1.2rem auto;
    background: #fff;
    border-radius: 16px;
    max-width: 600px;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
  }
  .plan-includes h4 {
    font-family: 'Josefin Sans', sans-serif;
    color: #AB382D;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    text-align: center;
  }
  .plan-includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.15rem;
    color: #905F3C;
    line-height: 1.7;
    text-align: left;
  }
  .plan-includes-list li {
    margin-bottom: 0.7rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
  }
  @media (max-width: 600px) {
    .plan-includes {
      padding: 1rem 0.7rem 1rem 0.7rem;
      max-width: 98vw;
    position: relative;
        top: -30px;
    }
    .plan-includes h4 {
      font-size: 1rem;
    }
    .plan-includes-list {
      font-size: 0.98rem;
    }
  }
  .plan-footer-message {
    margin-top: 1.5rem;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1rem;
    color: #fff;
    font-style: italic;
    text-align: center;
  }
  
  /* Estilos para la nota de moneda */
  .currency-note {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
  }
  
  .currency-note p {
    margin: 0.5rem 0;
    font-family: 'Josefin Sans', sans-serif;
    color: #fff;
  }
  
  .currency-note p:first-child {
    font-size: 1.1rem;
    font-weight: 600;
  }
  
  .currency-note p:last-child {
    font-size: 0.95rem;
    opacity: 0.9;
    font-style: italic;
  }
  @media (max-width: 600px) {
    .plan-footer-message {
      font-size: 0.88rem;
    }
    
    .currency-note {
      padding: 0.8rem 1rem;
      margin-top: 1rem;
    }
    
    .currency-note p:first-child {
      font-size: 1rem;
    }
    
    .currency-note p:last-child {
      font-size: 0.9rem;
    }
  }
  
  /* === BLOQUE 6: Todo lo que te llevás – Aire Takeaway Section === */
  .aire-takeaway-section {
    background: #d2b99e;
    padding: 5rem 0 5rem 0;
    text-align: center;
  }
  .aire-takeaway-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2.3rem;
    font-weight: 600;
    color: #AB382D;
    margin-bottom: 1.2rem;
    text-align: center;
  }
  .aire-takeaway-intro {
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.18rem;
    color: #3B3028;
    line-height: 1.7;
  }
  .aire-takeaway-intro strong {
    color: #905F3C;
  }
  .aire-takeaway-softclose {
    font-style: italic;
    color: #905F3C;
    margin-top: 1.5rem;
    font-size: 1.08rem;
  }
  .aire-takeaway-subtitle {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.6rem;
    color: #AB382D;
    margin: 2.5rem 0 2.5rem 0;
    font-weight: 600;
  }
  .aire-takeaway-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem 2.5rem;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 2.5rem;
  }
  .aire-benefit-block {
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 4px 24px rgba(171,56,45,0.07);
    padding: 2.2rem 1.5rem 1.7rem 1.5rem;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
    min-width: 320px;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    border: 2px solid #F5D2D2;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .aire-benefit-block:hover {
    box-shadow: 0 8px 32px rgba(171,56,45,0.13);
    transform: translateY(-6px) scale(1.03);
  }
  .aire-benefit-block[style*="#905F3C"] {
    background: #905F3C !important;
    color: #fff !important;
  }
  .aire-benefit-block[style*="#D2B99E"] {
    background: #D2B99E !important;
    color: #905F3C !important;
  }
  .aire-benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    margin-right: 0.5rem;
    margin-top: 0.2rem;
  }
  .aire-benefit-title {
    font-family: 'josefin sans', serif;
    font-size: 3rem;
    color: #AB382D;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
  }
  .aire-benefit-block[style*="#905F3C"] .aire-benefit-title {
    color: #fff;
  }
  .ariajuste{
    margin-top: 0px;
    font-size: 2.5rem;
  }
  .sutitleajust{
    font-size: 24px;
  }
  .aire-benefit-block[style*="#D2B99E"] .aire-benefit-title {
    color: #905F3C;
  }
  .aire-benefit-desc {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2rem;
    color: #3B3028;
    text-align: center;
    margin-bottom: 0;
    line-height: 1.7;
  }
  .aire-benefit-block[style*="#905F3C"] .aire-benefit-desc {
    color: #fff;
  }
  .aire-benefit-block[style*="#D2B99E"] .aire-benefit-desc {
    color: #905F3C;
  }
  .aire-benefit-detail {
    display: block;
    font-size: 0.98rem;
    color: #905F3C;
    margin: 0.5rem 0 0.5rem 0;
  }
  .aire-benefit-block[style*="#905F3C"] .aire-benefit-detail {
    color: #ffe066;
  }
  .aire-benefit-block[style*="#D2B99E"] .aire-benefit-detail {
    color: #905F3C;
  }
  .aire-takeaway-close {
    margin-top: 2.5rem;
    text-align: center;
  }
  .aire-takeaway-close p {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.15rem;
    color: #AB382D;
    font-style: italic;
    margin-bottom: 2rem;
  }
  .aire-takeaway-btn {
    background: #AB382D;
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.25rem;
    padding: 1.2rem 3.5rem;
    border-radius: 32px;
    font-weight: bold;
    border: none;
    box-shadow: 0 4px 16px rgba(171,56,45,0.13);
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    letter-spacing: 0.5px;
  }
  .aire-takeaway-btn:hover {
    background: #905F3C;
    color: #ffe066;
  }
  @media (max-width: 1100px) {
    .aire-takeaway-benefits {
      gap: 1.2rem 1.2rem;
    }
    .aire-benefit-block {
      min-width: 260px;
      max-width: 98vw;
      padding: 1.2rem 0.7rem 1rem 0.7rem;
    }
  }
  @media (max-width: 900px) {
    .aire-takeaway-section {
      padding: 2.5rem 0 2.5rem 0;
    }
    .aire-takeaway-title {
      font-size: 1.5rem;
    }
    .aire-takeaway-intro {
      font-size: 1rem;
      max-width: 95vw;
    }
    .aire-takeaway-benefits {
      flex-direction: column;
      gap: 1.2rem;
      align-items: center;
    }
    .aire-benefit-block {
      min-width: 0;
      max-width: 98vw;
      padding: 1.2rem 0.7rem 1rem 0.7rem;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .aire-benefit-title, .aire-benefit-desc {
      text-align: center;
    }
    .aire-benefit-icon {
      margin-right: 0;
      margin-bottom: 0.5rem;
    }
  }
  @media (max-width: 600px) {
    .aire-takeaway-section {
      padding: 1.2rem 0 1.2rem 0;
    }
    .aire-takeaway-title {
      font-size: 1.1rem;
    }
    .aire-takeaway-intro {
      font-size: 0.98rem;
      max-width: 98vw;
    }
    .aire-takeaway-subtitle {
      font-size: 1rem;
    }
    .aire-benefit-block {
      min-width: 0;
      max-width: 98vw;
      padding: 1rem 0.5rem 0.7rem 0.5rem;
      border-radius: 18px;
    }
    .aire-benefit-title {
      font-size: 1.3rem;
    }
    .aire-benefit-desc {
      font-size: 1rem;
    }
    .aire-takeaway-close p {
      font-size: 0.98rem;
    }
    .aire-takeaway-btn {
      font-size: 1rem;
      padding: 0.8rem 1.5rem;
      border-radius: 22px;
    }
  }
  
  #loader-overlay {
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s cubic-bezier(.4,0,.2,1);
  }
  
  .loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  #loader-gif {
    width: 300px;
    height: 250px;
    object-fit: contain;
    margin-bottom: 1.5rem;
  }
  
  .loader-text {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.8rem;
    color: #d2b99e;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  #loader-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
  }
  
  @media (max-width: 600px) {
    .loader-content {
      padding: 0 1rem;
    }
    
    #loader-gif {
      width: 220px;
      height: 220px;
      margin-bottom: 1.2rem;
    }
    
    .loader-text {
      font-size: 1.5rem;
      letter-spacing: 0.3px;
    }
  }
  
  /* Estilos para contenedores de video y overlays */
  .video-container {
    position: relative;
    width: 180px;
    height: 320px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(184,156,122,0.10);
  
    flex-shrink: 0;
  }
  
  .video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    transition: transform 0.3s ease;
  }
  
  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(144, 95, 60, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  
  .video-container:hover .video-overlay {
    opacity: 0;
  }
  
  .video-container:hover video {
    transform: scale(1.02);
  }
  
  .play-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(144, 95, 60, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(144, 95, 60, 0.4);
  }
  
  /* Actualizar estilos existentes para video */
  .aire-reel-horizontal video {
    width: 100%;
    height: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(184,156,122,0.10);
    flex-shrink: 0;
  }
  
  /* Responsive para video containers */
  @media (max-width: 900px) {
    .video-container {
      width: 200px;
      height: 350px;
      border-radius: 10px;
    }
    
    .play-button {
      width: 40px;
      height: 40px;
    }
    
    .play-button svg {
      width: 30px;
      height: 30px;
    }
  }
  
  @media (max-width: 600px) {
    .video-container {
      width: 80vw;
      height: 125vw;
      min-width: 120px;
      max-width: 98vw;
      border-radius: 8px;
    }
    
    .play-button {
      width: 50px;
      height: 50px;
    }
    
    .play-button svg {
      width: 35px;
      height: 35px;
    }
  }
  
  /* Popup Styles */
  .popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 10000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
  }
  
  .popup-overlay.active {
      opacity: 1;
      visibility: visible;
  }
  
  .popup-overlay.fade-in {
      animation: popupFadeIn 0.3s ease forwards;
  }
  
  .popup-overlay.fade-out {
      animation: popupFadeOut 0.3s ease forwards;
  }
  
  .popup-container {
      background: white;
      border-radius: 12px;
      max-width: 90vw;
      max-height: 90vh;
      width: 800px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      transform: scale(0.9);
      transition: transform 0.3s ease;
  }
  
  .popup-overlay.active .popup-container {
      transform: scale(1);
  }
  
  .popup-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 30px;
      border-bottom: 1px solid #eee;
      background: linear-gradient(135deg, #d2b99e, #c4a484);
      color: white;
  }
  
  .popup-header h2 {
      margin: 0;
      font-size: 1.5rem;
      font-weight: 600;
  }
  
  .popup-close {
      background: none;
      border: none;
      color: white;
      cursor: pointer;
      padding: 8px;
      border-radius: 50%;
      transition: background-color 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .popup-close:hover {
      background-color: rgba(255, 255, 255, 0.2);
  }
  
  .popup-content {
      padding: 30px;
      max-height: 70vh;
      overflow-y: auto;
      font-family: 'Josefin Sans', sans-serif;
      line-height: 1.6;
      color: #333;
  }
  
  .popup-content h1 {
      color: #d2b99e;
      text-align: center;
      margin-bottom: 30px;
      font-size: 2rem;
  }
  
  .popup-content h2 {
      color: #d2b99e;
      margin-top: 30px;
      margin-bottom: 15px;
      font-size: 1.3rem;
  }
  
  .popup-content h3 {
      color: #666;
      margin-top: 20px;
      font-size: 1.1rem;
  }
  
  .popup-content p, .popup-content ul, .popup-content ol {
      margin-bottom: 15px;
  }
  
  .popup-content ul, .popup-content ol {
      padding-left: 20px;
  }
  
  .popup-content .highlight {
      background-color: #f5f5dc;
      padding: 15px;
      border-left: 4px solid #d2b99e;
      margin: 20px 0;
      border-radius: 4px;
  }
  
  .popup-content .date {
      text-align: center;
      color: #666;
      font-style: italic;
      margin-bottom: 30px;
  }
  
  .popup-content .contact-info {
      background-color: #f5f5dc;
      padding: 20px;
      border-radius: 8px;
      margin: 20px 0;
      border: 1px solid #d2b99e;
  }
  
  .popup-loading {
      text-align: center;
      padding: 40px;
      color: #666;
      font-style: italic;
  }
  
  .popup-error {
      text-align: center;
      padding: 40px;
      color: #d32f2f;
  }
  
  @keyframes popupFadeIn {
      from {
          opacity: 0;
          transform: scale(0.9);
      }
      to {
          opacity: 1;
          transform: scale(1);
      }
  }
  
  @keyframes popupFadeOut {
      from {
          opacity: 1;
          transform: scale(1);
      }
      to {
          opacity: 0;
          transform: scale(0.9);
      }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
      .popup-container {
          width: 95vw;
          max-height: 95vh;
      }
      
      .popup-header {
          padding: 15px 20px;
      }
      
      .popup-header h2 {
          font-size: 1.2rem;
      }
      
      .popup-content {
          padding: 20px;
          max-height: 75vh;
      }
      
      .popup-content h1 {
          font-size: 1.5rem;
      }
      
      .popup-content h2 {
          font-size: 1.1rem;
      }
  }
  
  /* Scrollbar personalizado */
  .popup-content::-webkit-scrollbar {
      width: 8px;
  }
  
  .popup-content::-webkit-scrollbar-track {
      background: #f1f1f1;
      border-radius: 4px;
  }
  
  .popup-content::-webkit-scrollbar-thumb {
      background: #d2b99e;
      border-radius: 4px;
  }
  
  .popup-content::-webkit-scrollbar-thumb:hover {
      background: #c4a484;
  }
  
  
  .aire-benefit-desc p {
  margin-top: 0px !important;
}

/* ============================================
   FORMULARIO MULTI-PASO ESTILO TYPEFORM
   ============================================ */

.aire-form-section {
  background: #f0efeb;
  padding: 4rem 0 6rem 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aire-form-container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.form-step {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(.4,0,.2,1), transform 0.5s cubic-bezier(.4,0,.2,1);
}

.form-step.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Página de Bienvenida */
.form-welcome {
  text-align: center;
  padding: 3rem 0;
}

.form-welcome-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 2rem;
  color: #1a1a1a;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.form-welcome-subtitle {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-icon {
  font-size: 1.5rem;
}

.form-start-btn {
  background: #1a1a1a;
  color: #fff;
  border: none;
  padding: 1.2rem 3rem;
  border-radius: 8px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-start-btn:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.form-key-hint {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.7;
}

.form-time-estimate {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.95rem;
  color: #666;
  margin-top: 1rem;
}

/* Preguntas del formulario */
.form-question {
  padding: 2rem 0;
}

.form-step-number {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.5rem;
  color: #905F3C;
  font-weight: 600;
  margin-bottom: 1rem;
}

.form-question-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.8rem;
  color: #1a1a1a;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.form-description-optional {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.9rem;
  color: #999;
  font-style: italic;
  margin-bottom: 2rem;
}

.form-example {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Campos de formulario */
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1rem;
  color: #1a1a1a;
  font-weight: 500;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field textarea {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1rem;
  padding: 0.8rem 0;
  border: none;
  border-bottom: 2px solid #ddd;
  background: transparent;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.3s ease;
}

  .form-field input:focus,
  .form-field textarea:focus {
    border-bottom-color: #905F3C;
  }
  
  .form-field input.error,
  .form-field textarea.error {
    border-bottom-color: #AB382D;
    animation: shake 0.3s ease;
  }
  
  @keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
  }
  
  .form-error-message {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.95rem;
    color: #AB382D;
    margin-top: 1rem;
    padding: 0.8rem;
    background: #fff5f5;
    border-left: 3px solid #AB382D;
    border-radius: 4px;
  }

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #999;
}

/* Selector de teléfono */
.phone-input-wrapper {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.country-selector {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1rem;
  padding: 0.8rem 0.5rem;
  border: none;
  border-bottom: 2px solid #ddd;
  background: transparent;
  color: #1a1a1a;
  outline: none;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.country-selector:focus {
  border-bottom-color: #905F3C;
}

.phone-input-wrapper input {
  flex: 1;
}

/* Imágenes del formulario */
.form-image-container {
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.form-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Opciones múltiples */
.form-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.form-option-btn {
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1rem;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  width: 100%;
}

.form-option-btn:hover {
  border-color: #905F3C;
  background: #f8f5f2;
  transform: translateX(4px);
}

.form-option-btn.selected {
  border-color: #905F3C;
  background: #f8f5f2;
  box-shadow: 0 2px 8px rgba(144, 95, 60, 0.2);
}

.option-letter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #f0efeb;
  border-radius: 6px;
  font-weight: 600;
  color: #905F3C;
  flex-shrink: 0;
}

.form-option-btn.selected .option-letter {
  background: #905F3C;
  color: #fff;
}

.option-text {
  flex: 1;
}

/* Textarea */
.form-textarea-wrapper {
  margin-top: 2rem;
}

.form-textarea-wrapper textarea {
  width: 100%;
  min-height: 150px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1rem;
  padding: 1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  background: #fff;
  color: #1a1a1a;
  outline: none;
  resize: vertical;
  transition: border-color 0.3s ease;
}

.form-textarea-wrapper textarea:focus {
  border-color: #905F3C;
}

.form-textarea-hint {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.85rem;
  color: #999;
  margin-top: 0.5rem;
}

/* Calendly */
.form-calendly-description {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

  .calendly-container {
    margin-top: 2rem;
    min-height: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    background: #fff;
  }
  
  .calendly-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    background: #fff;
    font-family: 'Josefin Sans', sans-serif;
    color: #666;
  }
  
  .calendly-inline-widget {
    min-height: 600px;
    width: 100%;
  }
  
  .calendly-inline-widget iframe {
    width: 100%;
    height: 100%;
    min-height: 600px;
    border: none;
  }
  
  /* Calendario Simple */
  .simple-calendar-container {
    max-width: 600px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  }
  
  .calendar-month-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
  }
  
  .calendar-nav-btn {
    background: transparent;
    border: 2px solid #905F3C;
    color: #905F3C;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .calendar-nav-btn:hover {
    background: #905F3C;
    color: #fff;
  }
  
  .calendar-month-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.5rem;
    color: #905F3C;
    font-weight: 600;
    margin: 0;
  }
  
  .calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .calendar-weekday {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    text-align: center;
    padding: 0.5rem;
  }
  
  .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 2rem;
  }
  
  .calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1rem;
    color: #1a1a1a;
    background: #f8f9fa;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }
  
  .calendar-day:hover:not(.disabled) {
    background: #e9ecef;
    border-color: #905F3C;
  }
  
  .calendar-day.disabled {
    color: #ccc;
    background: #f0f0f0;
    cursor: not-allowed;
  }
  
  .calendar-day.today {
    background: #fff3cd;
    border-color: #ffc107;
    font-weight: 600;
  }
  
  .calendar-day.selected {
    background: #905F3C;
    color: #fff;
    border-color: #905F3C;
    font-weight: 600;
  }
  
  .calendar-time-slots {
    margin-top: 2rem;
  }
  
  .calendar-time-slots h4 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.2rem;
    color: #905F3C;
    margin-bottom: 1rem;
  }
  
  .time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
  }
  
  .time-slot-btn {
    background: #fff;
    border: 2px solid #ddd;
    color: #1a1a1a;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .time-slot-btn:hover {
    border-color: #905F3C;
    background: #f8f5f2;
  }
  
  .time-slot-btn.selected {
    background: #905F3C;
    color: #fff;
    border-color: #905F3C;
  }
  
  .appointment-confirmation {
    margin-top: 2rem;
    padding: 2rem;
    background: #f0f9f0;
    border-left: 4px solid #4caf50;
    border-radius: 8px;
  }
  
  .appointment-confirmation h3 {
    font-family: 'Josefin Sans', sans-serif;
    color: #2e7d32;
    margin-bottom: 1rem;
  }
  
  .appointment-confirmation p {
    font-family: 'Josefin Sans', sans-serif;
    color: #2e7d32;
    line-height: 1.6;
  }
  
  @media (max-width: 600px) {
    .simple-calendar-container {
      padding: 1rem;
    }
    
    .calendar-month-title {
      font-size: 1.2rem;
    }
    
    .calendar-day {
      font-size: 0.9rem;
    }
    
    .time-slots-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  /* Formulario de Newsletter */
  .form-newsletter-description {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .form-newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  }
  
  .form-submit-btn {
    background: #905F3C;
    color: #fff;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 1.5rem;
    box-shadow: 0 4px 12px rgba(144, 95, 60, 0.2);
  }
  
  .form-submit-btn:hover {
    background: #AB382D;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(144, 95, 60, 0.3);
  }
  
  .form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
  }
  
  .form-newsletter-success {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f0f9f0;
    border-left: 4px solid #4caf50;
    border-radius: 8px;
    font-family: 'Josefin Sans', sans-serif;
    color: #2e7d32;
    text-align: center;
    font-size: 1rem;
  }

/* Navegación */
.form-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #ddd;
}

.form-nav-btn {
  background: transparent;
  border: 2px solid #905F3C;
  color: #905F3C;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-nav-btn:hover {
  background: #905F3C;
  color: #fff;
}

.form-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-nav-btn:disabled:hover {
  background: transparent;
  color: #905F3C;
}

/* Barra de progreso */
.form-progress {
  flex: 1;
  height: 4px;
  background: #ddd;
  border-radius: 2px;
  overflow: hidden;
  max-width: 300px;
  margin: 0 auto;
}

.form-progress-bar {
  height: 100%;
  background: #905F3C;
  border-radius: 2px;
  transition: width 0.5s ease;
  width: 0%;
}

/* Responsive */
@media (max-width: 900px) {
  .aire-form-section {
    padding: 2rem 0 4rem 0;
  }
  
  .aire-form-container {
    padding: 0 1rem;
  }
  
  .form-welcome-title {
    font-size: 1.5rem;
  }
  
  .form-question-title {
    font-size: 1.4rem;
  }
  
  .form-navigation {
    flex-direction: column;
    gap: 1rem;
  }
  
  .form-progress {
    width: 100%;
    max-width: 100%;
  }
  
  .form-nav-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .form-welcome-title {
    font-size: 1.3rem;
  }
  
  .form-question-title {
    font-size: 1.2rem;
  }
  
  .form-step-number {
    font-size: 1.2rem;
  }
  
  .form-option-btn {
    padding: 1rem;
    font-size: 0.95rem;
  }
  
  .calendly-container {
    min-height: 500px;
  }
}