:root {
    --primary-color: #4F1D7A;
    --secondary-color: #F7F5FA;
    --accent-color: #E86A33;
    --dark-color: #2B2D42;
    --text-color: #333333;
    --brown-dark: #3d2814;
    --brown-medium: #5a3d2a;
    --brown-light: #8b6f47;
    --beige-bg: #f5f0e8;
    --beige-button: #e8ddd4;
  }
  
  /* Reset */
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #ffffff;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  
  @media (min-height: 700px) {
    .hero {
      min-height: 90vh;
      max-height: 90vh;
    }
  }
  
  @media (min-height: 1200px) {
    .hero {
      min-height: 85vh;
      max-height: 85vh;
    }
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../objects/Fondos/mariposa_2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(3px);
    opacity: 0.95;
    z-index: 0;
  }
  
  .notification-bar {
    position: relative;
    z-index: 1;
    background: var(--beige-bg);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .notification-left,
  .notification-right {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 200px;
  }
  
  .notification-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
  }
  
  .notification-text {
    color: var(--brown-dark);
    font-size: 0.75rem;
    font-weight: 400;
  }
  
  .notification-bold {
    color: var(--brown-dark);
    font-size: 0.85rem;
    font-weight: 700;
    color: #1f1313;
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Playfair Display', 'Georgia', serif;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
  }
  
  .hero .subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    font-family: 'Playfair Display', 'Georgia', serif;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 0, 0, 0.3);
  }
  
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  
  .btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .btn.primary {
    background: var(--beige-button);
    color: var(--brown-dark);
  }
  
  .btn.primary:hover {
    background: #d4c5b8;
  }
  
  .btn.secondary {
    background: var(--beige-button);
    color: var(--brown-dark);
  }
  
  .btn.secondary:hover {
    background: #d4c5b8;
  }
  
  /* Generic Section Styles */
  .section {
    padding: 4rem 0;
  }
  
  .section.dark {
    background: var(--secondary-color);
  }
  
  .section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
  }
  
  .section p {
    margin-bottom: 1rem;
  }
  
  /* Benefits Section */
  .benefits-section {
    background: var(--beige-bg);
    padding: 5rem 0;
  }
  
  .benefits-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--brown-dark);
    text-align: center;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
  }
  
  .benefits-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--brown-dark);
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.7;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .benefit {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    text-align: left;
  }
  
  .benefit-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
    gap: 1.5rem;
  }
  
  .benefit-header h3 {
    flex: 1;
    margin: 0;
    color: var(--brown-dark);
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4;
    padding-top: 0.25rem;
  }
  
  .benefit-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  }
  
  .benefit p {
    color: var(--brown-dark);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;
  }
  
  /* Público Section */
  .publico-section {
    background: #ede4d4;
    padding: 5rem 0;
  }
  
  .publico-section .container {
    padding: 2rem 2rem;
  }
  
  .publico-headline {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brown-dark);
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
  }
  
  .publico-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .publico-text-content {
    display: flex;
    flex-direction: column;
  }
  
  .publico-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--brown-dark);
    text-align: left;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .publico-description {
    text-align: left;
    font-size: 1.1rem;
    color: var(--brown-dark);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-family: 'Montserrat', sans-serif;
  }
  
  .publico-description strong {
    font-weight: 700;
  }
  
  .publico-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0;
  }
  
  .btn-publico {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--beige-button);
    color: var(--brown-dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
  }
  
  .btn-publico:hover {
    background: #d4c5b8;
  }
  
  .publico-image-grid {
    width: 100%;
  }
  
  .publico-image-grid img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
  }
  
  /* Transformación Section */
  .transforma-section {
    position: relative;
    background: var(--brown-dark);
    padding: 5rem 0;
    color: var(--beige-bg);
    overflow: hidden;
  }
  
  .transforma-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../objects/Fondos/minimalist-abstract-background-with-fluid-flowing--zxBVqKQkTuS8cZUL4FLspg-LGII6gA8T82uuyzpgjUqkg_upscayl_3x_realesrgan-x4plus.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
  }
  
  .transforma-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--brown-dark);
    opacity: 0.7;
    z-index: 1;
  }
  
  .transforma-section .container {
    padding: 2rem 2rem;
    position: relative;
    z-index: 2;
  }
  
  .transforma-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--beige-bg);
    text-align: center;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
    position: relative;
    z-index: 2;
  }
  
  .transforma-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  .transforma-block {
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .transforma-image {
    width: 100%;
    height: 250px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    z-index: 2;
  }
  
  .transforma-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .transforma-block h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--beige-bg);
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 2;
  }
  
  .transforma-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--beige-bg);
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 2;
  }
  
  /* Instructora Section */
  .instructora-section {
    background: var(--beige-bg);
    padding: 5rem 0;
  }
  
  .instructora-section .container {
    padding: 2rem 2rem;
  }
  
  .instructora-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--brown-dark);
    text-align: center;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
  }
  
  .instructora-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .instructora-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .instructora-photo {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    object-fit: cover;
  }
  
  .instructora-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
  }
  
  .social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--brown-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--beige-bg);
  }
  
  .social-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .social-icon:hover {
    background: var(--brown-dark);
    color: var(--beige-bg);
  }
  
  .instructora-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .instructora-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--brown-dark);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .feature {
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }
  
  .feature h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 1.1rem;
  }
  
  /* Agenda Section */
  .agenda-section {
    position: relative;
    background: var(--brown-dark);
    padding: 4rem 0 0;
    min-height: 600px;
    overflow: hidden;
  }
  
  .agenda-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../objects/Fondos/minimalist-abstract-background-with-fluid-flowing--zxBVqKQkTuS8cZUL4FLspg-LGII6gA8T82uuyzpgjUqkg_upscayl_3x_realesrgan-x4plus.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
  }
  
  .agenda-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--brown-dark);
    opacity: 0.7;
    z-index: 1;
  }
  
  .agenda-wrapper {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
  }
  
  .agenda-vertical-title {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 6rem;
    font-weight: 700;
    color: var(--beige-bg);
    letter-spacing: 1rem;
    font-family: 'Playfair Display', 'Georgia', serif;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 500px;
    transform: rotate(180deg);
    position: relative;
    z-index: 2;
  }
  
  .agenda-container {
    position: relative;
    max-width: 1200px;
    padding: 0 0 2rem;
    z-index: 2;
  }
  
  .agenda-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
  }
  
  .agenda-tab {
    padding: 0.75rem 2rem;
    background: var(--beige-button);
    color: var(--brown-dark);
    border: 2px solid var(--brown-dark);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
  }
  
  .agenda-tab:hover {
    background: #d4c5b8;
  }
  
  .agenda-tab.active {
    background: var(--beige-bg);
    border-color: var(--brown-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-weight: 700;
  }
  
  .agenda-content-wrapper {
    position: relative;
    min-height: 500px;
    z-index: 2;
  }
  
  .agenda-content {
    display: none;
    background: var(--beige-bg);
    border: 2px solid var(--brown-dark);
    border-radius: 12px;
    padding: 3rem 3.25rem;
    max-width: 980px;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
    position: relative;
    z-index: 2;
  }
  
  .agenda-content.active {
    display: block;
    animation: fadeIn 0.4s ease-in;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .agenda-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brown-dark);
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', 'Georgia', serif;
    letter-spacing: 0.02em;
    line-height: 1.25;
  }
  
  .agenda-detailed-list {
    list-style: decimal;
    padding-left: 1.75rem;
    color: var(--brown-dark);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.65;
    font-size: 1.05rem;
  }
  
  .agenda-detailed-list > li {
    margin-bottom: 1.5rem;
    color: var(--brown-dark);
  }
  
  .agenda-detailed-list > li > strong {
    font-size: 1.1rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.6rem;
    color: var(--brown-dark);
    font-family: 'Playfair Display', 'Georgia', serif;
    line-height: 1.35;
  }
  
  .agenda-detailed-list > li > ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin-top: 0.5rem;
    font-family: 'Montserrat', sans-serif;
  }
  
  .agenda-detailed-list > li > ul > li {
    margin-bottom: 0.45rem;
    font-size: 1rem;
    color: var(--brown-dark);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.55;
  }
  
  .agenda-footer {
    background: var(--brown-dark);
    padding: 1.5rem 0;
    text-align: center;
    margin-top: 2rem;
    animation: footerColorChange 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
  }
  
  @keyframes footerColorChange {
    0%, 100% {
      background-color: #3d2814;
    }
    50% {
      background-color: #4a2f1e;
    }
  }
  
  .agenda-footer p {
    color: var(--beige-bg);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    animation: footerTextColorChange 6s ease-in-out infinite;
  }
  
  @keyframes footerTextColorChange {
    0%, 100% {
      color: #f5f0e8;
      text-shadow: 0 0 10px rgba(245, 240, 232, 0.3);
    }
    50% {
      color: #ffffff;
      text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    }
  }
  
  /* Técnicas Clave Section */
  .tecnicas-section {
    background: var(--beige-bg);
    padding: 6rem 0 5.5rem;
  }
  
  .tecnicas-section h2 {
    font-size: 3.2rem;
    margin-bottom: 3.5rem;
    color: var(--brown-medium);
    text-align: center;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
  
  .tecnicas-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 6rem;
    row-gap: 3.5rem;
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .tecnica-item {
    padding: 0;
    background: transparent;
    text-align: left;
  }
  
  .tecnica-item h3 {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--brown-medium);
    margin-bottom: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.25;
  }
  
  .tecnica-item p {
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--brown-dark);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    max-width: 430px;
  }
  
  /* Reserva y Modalidad Section */
  .reserva-modalidad-section {
    position: relative;
    background: var(--brown-dark);
    padding: 5rem 0;
    overflow: hidden;
  }
  
  .reserva-modalidad-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../objects/Fondos/banda_dinamica_0.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    filter: blur(2px);
    z-index: 0;
  }
  
  .reserva-modalidad-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--brown-dark);
    opacity: 0.7;
    z-index: 1;
  }
  
  .reserva-modalidad-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  .modalidad-divider {
    width: 1px;
    background: rgba(245, 240, 232, 0.3);
    height: 100%;
    min-height: 400px;
  }
  
  .reserva-content {
    color: var(--beige-bg);
    position: relative;
    z-index: 2;
  }
  
  .reserva-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', 'Georgia', serif;
    color: var(--beige-bg);
  }
  
  .reserva-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--beige-bg);
  }
  
  .btn-reserva {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--beige-button);
    color: var(--brown-dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    border: 2px solid var(--brown-dark);
  }
  
  .btn-reserva:hover {
    background: #d4c5b8;
  }
  
  .modalidad-content {
    color: var(--beige-bg);
    position: relative;
    z-index: 2;
  }
  
  .modalidad-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', 'Georgia', serif;
    color: var(--beige-bg);
  }
  
  .modalidad-info p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--beige-bg);
  }
  
  .modalidad-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', 'Georgia', serif;
    color: var(--beige-bg);
  }
  
  .receive-list-modalidad {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--beige-bg);
  }
  
  .receive-list-modalidad li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .precio-info {
    margin-top: 4rem;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .precio-regular-modalidad {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: var(--beige-bg);
    opacity: 0.7;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
  }
  
  .precio-oferta-modalidad {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--beige-bg);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', 'Georgia', serif;
  }
  
  .precio-nota {
    font-size: 0.9rem;
    color: var(--beige-bg);
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
  }
  
  .precio-nota strong {
    font-weight: 700;
  }
  
  .precio-stripe {
    font-size: 0.85rem;
    color: var(--beige-bg);
    opacity: 0.8;
    font-family: 'Montserrat', sans-serif;
  }
  
  /* Contacto Section */
  .contacto-section {
    background: var(--beige-bg);
    padding: 5rem 0;
  }
  
  .contacto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .contacto-left,
  .contacto-right {
    color: var(--brown-dark);
  }
  
  .contacto-left h2,
  .contacto-right h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', 'Georgia', serif;
    color: var(--brown-dark);
  }
  
  .contacto-left p,
  .contacto-right p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--brown-dark);
  }
  
  .btn-contacto {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--beige-button);
    color: var(--brown-dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    border: 2px solid var(--brown-dark);
  }
  
  .btn-contacto:hover {
    background: #d4c5b8;
  }
  
  .payment-icons {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
  }
  
  .payment-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--beige-button);
    border-radius: 50%;
    color: var(--brown-dark);
  }

  .payment-icon svg {
    width: 26px;
    height: 26px;
  }
  
  .stripe-powered {
    font-size: 0.9rem;
    color: var(--brown-dark);
    font-family: 'Montserrat', sans-serif;
    margin-top: 1rem;
  }
  
  /* Testimonios Section */
  .testimonios-section {
    background: #d4c5b8;
    padding: 5rem 0;
  }
  
  .testimonios-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--brown-dark);
    text-align: center;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
  }
  
  .testimonios-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 70px;
    overflow: hidden;
  }
  
  .testimonios-carousel {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
  }
  
  .testimonio-card {
    min-width: calc(50% - 1rem);
    background: transparent;
    border: none;
    border-radius: 12px;
    padding: 0;
    box-shadow: none;
    overflow: hidden;
    flex-shrink: 0;
  }
  
  .testimonio-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    border: 2px solid var(--brown-dark);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--beige-bg);
    border: 1px solid rgba(61, 40, 20, 0.2);
    color: var(--brown-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }
  
  .carousel-arrow:hover {
    background: #ffffff;
    border-color: rgba(61, 40, 20, 0.3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-50%) scale(1.1);
  }
  
  .carousel-prev {
    left: 10px;
  }
  
  .carousel-next {
    right: 10px;
  }
  
  .btn-testimonios {
    display: block;
    max-width: 500px;
    margin: 0 auto;
    padding: 1.2rem 3rem;
    background: #ffffff;
    color: var(--brown-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    border: 1px solid rgba(61, 40, 20, 0.2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }
  
  .btn-testimonios:hover {
    background: var(--beige-button);
    border-color: rgba(61, 40, 20, 0.3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
  }
  
  .agenda-list,
  .techniques-list,
  .receive-list {
    list-style: none;
    padding-left: 0;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .agenda-list li + li,
  .techniques-list li + li,
  .receive-list li + li {
    margin-top: 0.75rem;
  }
  
  .price-regular {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  
  .price-regular span {
    font-weight: 600;
  }
  
  .price-offer {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 0.5rem;
  }
  
  .price-offer small {
    font-size: 0.75rem;
    color: var(--text-color);
  }
  
  .payment-note {
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  
  /* Servicios Section */
  .servicios-section {
    background: #ede4d4;
    padding: 5rem 0;
  }

  .servicios-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--brown-dark);
    text-align: center;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
  }

  .servicios-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--brown-dark);
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    font-family: 'Montserrat', sans-serif;
  }

  .servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .servicio-card {
    background: var(--beige-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .servicio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.13);
  }

  .servicio-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--beige-button);
    border-radius: 50%;
    color: var(--brown-dark);
  }

  .servicio-icon svg {
    width: 34px;
    height: 34px;
  }

  .servicio-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--brown-dark);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
  }

  .servicio-card p {
    font-size: 0.97rem;
    line-height: 1.7;
    color: var(--brown-dark);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
  }

  /* Metodología Section */
  .metodologia-section {
    position: relative;
    background: var(--brown-dark);
    padding: 5rem 0;
    color: var(--beige-bg);
    overflow: hidden;
  }

  .metodologia-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../objects/Fondos/minimalist-abstract-background-with-fluid-flowing--zxBVqKQkTuS8cZUL4FLspg-LGII6gA8T82uuyzpgjUqkg_upscayl_3x_realesrgan-x4plus.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
  }

  .metodologia-section .container {
    position: relative;
    z-index: 1;
  }

  .metodologia-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--beige-bg);
    text-align: center;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
  }

  .metodologia-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--beige-bg);
    opacity: 0.85;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    font-family: 'Montserrat', sans-serif;
  }

  .metodologia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .metodologia-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255,255,255,0.07);
    border-radius: 10px;
    border: 1px solid rgba(245,240,232,0.15);
  }

  .metodologia-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--beige-button);
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', 'Georgia', serif;
  }

  .metodologia-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--beige-bg);
    font-family: 'Montserrat', sans-serif;
  }

  .metodologia-item p {
    font-size: 0.97rem;
    line-height: 1.7;
    color: var(--beige-bg);
    opacity: 0.85;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
  }

  /* Blog Section */
  .blog-section {
    background: var(--beige-bg);
    padding: 5rem 0;
  }

  .blog-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--brown-dark);
    text-align: center;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
  }

  .blog-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--brown-dark);
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    font-family: 'Montserrat', sans-serif;
  }

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .blog-card {
    background: var(--beige-button);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.13);
  }

  .blog-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
  }

  .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .blog-card:hover .blog-image img {
    transform: scale(1.05);
  }

  .blog-content {
    padding: 1.5rem;
  }

  .blog-content h3 {
    font-size: 1.1rem;
    color: var(--brown-dark);
    margin-bottom: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.4;
  }

  .blog-excerpt {
    font-size: 0.95rem;
    color: var(--brown-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
  }

  .blog-link {
    color: var(--brown-medium);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
  }

  .blog-link:hover {
    color: var(--brown-dark);
  }

  /* Rich Footer */
  .footer {
    background: var(--brown-dark);
    color: var(--beige-bg);
    padding: 4rem 0 2rem;
  }

  .footer .container {
    padding: 0 2rem;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(245,240,232,0.15);
  }

  .footer-col-title {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--beige-bg);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--beige-bg);
    opacity: 0.8;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
  }

  .footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
  }

  .social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(245,240,232,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--beige-bg);
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .social-link svg {
    width: 20px;
    height: 20px;
  }

  .social-link:hover {
    background: var(--beige-bg);
    color: var(--brown-dark);
    border-color: var(--beige-bg);
  }

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

  .footer-nav li {
    margin-bottom: 0.6rem;
  }

  .footer-nav a {
    color: var(--beige-bg);
    text-decoration: none;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    opacity: 0.8;
    transition: opacity 0.2s ease;
  }

  .footer-nav a:hover {
    opacity: 1;
    text-decoration: underline;
  }

  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-bottom p {
    font-size: 0.85rem;
    color: var(--beige-bg);
    opacity: 0.6;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
  }

  .footer-bottom a {
    color: var(--beige-button);
  }

  /* Theros Section */
  .theros-section {
    background: var(--beige-bg);
    padding: 4rem 0;
    border-bottom: 1px solid rgba(61, 40, 20, 0.1);
  }

  .theros-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
  }

  .theros-logo {
    position: relative;
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .theros-letter {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 7rem;
    font-weight: 700;
    color: var(--brown-dark);
    line-height: 1;
    position: relative;
    z-index: 1;
  }

  .theros-butterfly {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: auto;
    opacity: 0.85;
  }

  .theros-text {
    flex: 1;
  }

  .theros-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brown-medium);
    margin-bottom: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
  }

  .theros-text p:last-child {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--brown-dark);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    text-align: justify;
  }

  /* Bonus Section */
  .bonus-section {
    background: var(--beige-bg);
    padding: 5rem 0;
    text-align: center;
  }

  .bonus-content {
    max-width: 700px;
    margin: 0 auto;
  }

  .bonus-badge {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--brown-medium);
    margin-bottom: 1rem;
    line-height: 1;
  }

  .bonus-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--brown-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    line-height: 1.4;
  }

  .bonus-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--brown-dark);
    margin-bottom: 2.5rem;
  }

  .btn-bonus {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--brown-dark);
    color: var(--beige-bg);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.3s ease;
  }

  .btn-bonus:hover {
    background: var(--brown-medium);
  }

  /* WhatsApp contact button variant */
  .btn-whatsapp-contact {
    display: inline-flex;
    align-items: center;
  }

  /* Floating WhatsApp Button */
  .whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .whatsapp-float svg {
    width: 32px;
    height: 32px;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
  }

  .whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--brown-dark);
    color: var(--beige-bg);
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  .whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
  }

  /* Cookie Banner */
  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: var(--brown-dark);
    color: var(--beige-bg);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  }

  .cookie-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--beige-bg);
    flex: 1;
    min-width: 200px;
  }

  .cookie-text a {
    color: #e8ddd4;
    text-decoration: underline;
  }

  .cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
  }

  .cookie-btn {
    padding: 0.6rem 1.4rem;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: opacity 0.2s ease;
  }

  .cookie-accept {
    background: var(--beige-button);
    color: var(--brown-dark);
  }

  .cookie-reject {
    background: transparent;
    border: 1px solid var(--beige-bg);
    color: var(--beige-bg);
  }

  .cookie-btn:hover {
    opacity: 0.85;
  }

  footer {
    background: var(--brown-dark);
    color: var(--beige-bg);
    padding: 2rem 0;
    text-align: center;
  }

  footer p {
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--beige-bg);
    margin-bottom: 0.5rem;
  }

  footer a {
    color: var(--beige-button);
    text-decoration: none;
  }

  footer a:hover {
    text-decoration: underline;
  }

  .footer-links {
    font-size: 0.8rem;
    opacity: 0.8;
  }
  
  /* Responsive Design */
  @media (max-width: 968px) {
    .servicios-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }
  }

  @media (max-width: 768px) {
    .servicios-grid {
      grid-template-columns: 1fr;
    }
    .metodologia-grid {
      grid-template-columns: 1fr 1fr;
    }
    .blog-grid {
      grid-template-columns: 1fr;
    }
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding-bottom: 2rem;
    }
  }

  @media (max-width: 480px) {
    .metodologia-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 768px) {
    .theros-content {
      flex-direction: column;
      gap: 1.5rem;
      text-align: center;
    }
    .theros-text p:last-child {
      text-align: left;
    }
    .bonus-badge {
      font-size: 3rem;
    }
    .bonus-title {
      font-size: 1.3rem;
    }
    .cookie-banner {
      flex-direction: column;
      align-items: flex-start;
      padding: 1rem;
    }
    .whatsapp-float {
      bottom: 1.5rem;
      right: 1rem;
      width: 52px;
      height: 52px;
    }
    .whatsapp-float svg {
      width: 26px;
      height: 26px;
    }
  }

  @media (max-width: 768px) {
    .container {
      padding: 2rem 1rem;
    }
    
    .publico-section .container,
    .transforma-section .container,
    .instructora-section .container {
      padding: 2rem 1rem;
    }
    
    .notification-bar {
      flex-direction: column;
      padding: 1rem;
      gap: 0.75rem;
    }
    
    .notification-divider {
      width: 100%;
      height: 1px;
      background: rgba(255, 255, 255, 0.3);
    }
    
    .notification-left,
    .notification-right {
      width: 100%;
      text-align: center;
    }
    
    .hero h1 {
      font-size: 1.75rem;
      padding: 0 1rem;
    }
    
    .hero .subtitle {
      font-size: 1rem;
      padding: 0 1rem;
    }
    
    .cta-buttons {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      padding: 0 1rem;
    }
    
    .btn {
      width: 100%;
      max-width: 300px;
      padding: 0.875rem 1.5rem;
    }
    
    .benefits-section {
      padding: 3rem 0;
    }
    
    .benefits-section h2 {
      font-size: 1.75rem;
      padding: 0 1rem;
    }
    
    .benefits-intro {
      font-size: 1rem;
      padding: 0 1rem;
      margin-bottom: 2rem;
    }
    
    .benefits-grid {
      grid-template-columns: 1fr;
      gap: 2.5rem;
      padding: 0 1rem;
    }
    
    .benefit-icon {
      width: 60px;
      height: 60px;
      margin-bottom: 1rem;
    }
    
    .benefit-header h3 {
      font-size: 1.1rem;
    }
    
    .benefit-icon {
      width: 50px;
      height: 50px;
    }
    
    .benefit p {
      font-size: 0.95rem;
    }
    
    .publico-section {
      padding: 3rem 0;
    }
    
    .publico-headline {
      font-size: 0.8rem;
      padding: 0 1rem;
      margin-bottom: 1.5rem;
    }
    
    .publico-content {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 0 1rem;
    }
    
    .publico-title {
      font-size: 1.75rem;
      text-align: center;
    }
    
    .publico-description {
      font-size: 1rem;
      text-align: center;
      margin-bottom: 2rem;
    }
    
    .publico-cta-buttons {
      gap: 1rem;
      margin-bottom: 2rem;
    }
    
    .btn-publico {
      width: 100%;
    }
    
    .publico-image-grid {
      max-width: 400px;
      margin: 0 auto;
    }
    
    .transforma-section {
      padding: 3rem 0;
    }
    
    .transforma-section h2 {
      font-size: 1.75rem;
      padding: 0 1rem;
      margin-bottom: 2rem;
    }
    
    .transforma-grid {
      grid-template-columns: 1fr;
      gap: 2.5rem;
      padding: 0 1rem;
    }
    
    .transforma-image {
      height: 200px;
    }
    
    .transforma-block h3 {
      font-size: 1.1rem;
    }
    
    .transforma-block p {
      font-size: 0.95rem;
    }
    
    .instructora-section {
      padding: 3rem 0;
    }
    
    .instructora-section h2 {
      font-size: 1.75rem;
      padding: 0 1rem;
      margin-bottom: 2rem;
    }
    
    .instructora-content {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 0 1rem;
    }
    
    .instructora-photo {
      max-width: 100%;
    }
    
    .instructora-text p {
      font-size: 1rem;
    }
    
    .agenda-section {
      padding: 3rem 0 0;
    }
    
    .agenda-wrapper {
      grid-template-columns: 100px 1fr;
      gap: 1.5rem;
      padding: 0 1rem;
    }
    
    .agenda-vertical-title {
      font-size: 4rem;
      letter-spacing: 0.6rem;
      min-height: 400px;
    }
    
    .agenda-content {
      padding: 2rem 2rem;
    }
    
    .agenda-container {
      padding: 0 0 1rem;
    }
    
    .agenda-tabs {
      gap: 0.5rem;
      margin-bottom: 1.5rem;
    }
    
    .agenda-tab {
      padding: 0.6rem 1.2rem;
      font-size: 0.9rem;
      min-width: 90px;
    }
    
    .agenda-content {
      padding: 2rem 1.5rem;
    }
    
    .agenda-content h3 {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
    }
    
    .agenda-detailed-list {
      padding-left: 1.5rem;
      font-size: 0.95rem;
    }
    
    .agenda-detailed-list > li > strong {
      font-size: 1rem;
    }
    
    .agenda-detailed-list > li > ul > li {
      font-size: 0.9rem;
    }
    
    .agenda-footer p {
      font-size: 0.85rem;
      letter-spacing: 0.1rem;
      padding: 0 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .hero h1 {
      font-size: 1.5rem;
    }
    
    .hero .subtitle {
      font-size: 0.9rem;
    }
    
    .notification-text {
      font-size: 0.7rem;
    }
    
    .notification-bold {
      font-size: 0.75rem;
    }
    
    .benefits-section h2 {
      font-size: 1.5rem;
    }
    
    .publico-title {
      font-size: 1.5rem;
    }
    
    .publico-description {
      font-size: 0.95rem;
    }
    
    .transforma-section h2 {
      font-size: 1.5rem;
    }
    
    .instructora-section h2 {
      font-size: 1.5rem;
    }
    
    .agenda-wrapper {
      grid-template-columns: 70px 1fr;
      gap: 1rem;
      padding: 0 0.5rem;
    }
    
    .agenda-vertical-title {
      font-size: 3rem;
      letter-spacing: 0.4rem;
      min-height: 300px;
    }
    
    .agenda-content {
      padding: 1.5rem 1rem;
    }
    
    .agenda-tab {
      padding: 0.5rem 1rem;
      font-size: 0.85rem;
      min-width: 80px;
    }
    
    .tecnicas-section h2 {
      font-size: 2.2rem;
      margin-bottom: 2.25rem;
      padding: 0 1rem;
    }
    
    .tecnicas-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .reserva-modalidad-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .modalidad-divider {
      display: none;
    }
    
    .precio-info {
      margin-top: 3rem;
    }
    
    .reserva-content h2 {
      font-size: 1.75rem;
    }
    
    .modalidad-content h3 {
      font-size: 1.5rem;
    }
    
    .precio-oferta-modalidad {
      font-size: 1.75rem;
    }
    
    .contacto-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .contacto-left h2,
    .contacto-right h2 {
      font-size: 1.5rem;
    }
    
    .testimonios-section h2 {
      font-size: 1.75rem;
    }
    
    .testimonios-carousel-wrapper {
      padding: 0 50px;
    }
    
    .testimonio-card {
      min-width: 100%;
    }
    
    .carousel-prev {
      left: 10px;
    }
    
    .carousel-next {
      right: 10px;
    }
    
    .carousel-arrow {
      width: 40px;
      height: 40px;
      font-size: 1.5rem;
    }
    
    .agenda-content h3 {
      font-size: 1.25rem;
    }
    
    .agenda-detailed-list {
      font-size: 0.9rem;
      padding-left: 1.2rem;
    }
    
    .agenda-footer p {
      font-size: 0.75rem;
    }
    
    .tecnicas-section h2 {
      font-size: 2rem;
      margin-bottom: 2rem;
      padding: 0 1rem;
    }
    
    .reserva-content h2 {
      font-size: 1.75rem;
    }
    
    .modalidad-content h3 {
      font-size: 1.5rem;
    }
    
    .precio-oferta-modalidad {
      font-size: 2rem;
    }
    
    .contacto-left h2,
    .contacto-right h2 {
      font-size: 1.75rem;
    }
    
    .testimonios-section h2 {
      font-size: 2rem;
    }
    
    .testimonios-carousel-wrapper {
      padding: 0 45px;
    }
    
    .carousel-arrow {
      width: 40px;
      height: 40px;
      font-size: 1.5rem;
    }
    
    .carousel-prev {
      left: 5px;
    }

    .carousel-next {
      right: 5px;
    }
  }

/* ============================================================
   ✦ FACELIFT 2026 — estética cálida/orgánica + animaciones
   Bloque añadido al final: sobrescribe lo anterior por cascada.
   ============================================================ */

/* ---- Tokens refinados (paleta tierra cohesionada) ---- */
:root {
  --brown-dark: #3a2417;
  --brown-medium: #6b4a30;
  --brown-light: #9c7c57;
  --beige-bg: #f6efe6;
  --cream: #fbf7f1;
  --accent-color: #cf7440;
  --accent-dark: #b05f30;
  --gold: #c9a25a;
  --nav-h: 70px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-soft: 0 14px 40px -22px rgba(58, 36, 23, 0.45);
  --shadow-hover: 0 26px 60px -28px rgba(58, 36, 23, 0.55);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body { -webkit-font-smoothing: antialiased; }

/* Scroll suave + offset de anclas para la navbar fija */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
html { scroll-padding-top: calc(var(--nav-h) + 12px); }
section[id], header[id], .anchor-offset { scroll-margin-top: calc(var(--nav-h) + 12px); }
.anchor-offset { display: block; height: 0; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1500;
  padding: 0.6rem 0;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.4px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  transition: color 0.4s var(--ease), text-shadow 0.4s var(--ease);
}
.nav-logo span { color: var(--accent-color); margin: 0 0.3rem; }
.nav-logo em { font-style: italic; font-weight: 400; }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
  transition: color 0.3s var(--ease);
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  height: 2px; width: 100%;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  background: var(--accent-color);
  color: #fff !important;
  padding: 0.55rem 1.3rem;
  border-radius: 40px;
  text-shadow: none !important;
  box-shadow: 0 12px 26px -12px var(--accent-color);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.nav-cta:hover { background: var(--accent-dark); transform: translateY(-2px); }

/* Estado al hacer scroll: glass claro */
.navbar.scrolled {
  background: rgba(251, 247, 241, 0.85);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(58, 36, 23, 0.06), 0 14px 34px -24px rgba(58, 36, 23, 0.5);
}
.navbar.scrolled .nav-logo { color: var(--brown-dark); text-shadow: none; }
.navbar.scrolled .nav-links a { color: var(--brown-dark); text-shadow: none; }
.navbar.scrolled .nav-cta { color: #fff !important; }

/* Hamburguesa */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  z-index: 1600;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), background 0.3s;
}
.navbar.scrolled .nav-toggle span { background: var(--brown-dark); box-shadow: none; }

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(80vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.6rem;
    padding: 5rem 2.4rem;
    background: var(--cream);
    box-shadow: -30px 0 70px -30px rgba(0, 0, 0, 0.45);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
  }
  .nav-links.open { transform: translateX(0); }
  .navbar .nav-links a { color: var(--brown-dark); text-shadow: none; font-size: 1.1rem; }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav-toggle span { background: var(--brown-dark); box-shadow: none; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ============================================================
   HERO renovado
   ============================================================ */
.hero { padding-top: var(--nav-h); }
.hero::before {
  filter: blur(2px) brightness(0.82) saturate(1.05);
  opacity: 1;
  transform: scale(1.06);
  animation: heroZoom 20s var(--ease) infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1.15); } }
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(58, 36, 23, 0.55) 0%, rgba(58, 36, 23, 0.28) 38%, rgba(58, 36, 23, 0.74) 100%);
}
.hero-content { z-index: 2; }
.notification-bar {
  z-index: 3;
  background: rgba(251, 247, 241, 0.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.hero h1 { text-shadow: 0 4px 34px rgba(0, 0, 0, 0.5); }
.hero .subtitle { text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45); }

/* Orbes flotantes */
.hero-orbs { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(50px); opacity: 0.45; }
.orb-1 { width: 340px; height: 340px; top: 14%; left: 6%;
  background: radial-gradient(circle, rgba(207, 116, 64, 0.6), transparent 70%);
  animation: orbFloatA 16s var(--ease) infinite; }
.orb-2 { width: 300px; height: 300px; bottom: 10%; right: 8%;
  background: radial-gradient(circle, rgba(201, 162, 90, 0.55), transparent 70%);
  animation: orbFloatB 20s var(--ease) infinite; }
.orb-3 { width: 220px; height: 220px; top: 48%; left: 56%;
  background: radial-gradient(circle, rgba(251, 247, 241, 0.5), transparent 70%);
  animation: orbFloatA 24s var(--ease) infinite reverse; }
@keyframes orbFloatA { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(32px, -42px); } }
@keyframes orbFloatB { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-36px, 30px); } }

/* Entrada escalonada del hero */
.hero-anim { opacity: 0; transform: translateY(28px); animation: heroUp 0.9s var(--ease) forwards;
  animation-delay: calc(var(--hero-i) * 0.18s + 0.25s); }
@keyframes heroUp { to { opacity: 1; transform: none; } }

/* Indicador de scroll */
.hero-scroll {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 20px;
  z-index: 3;
}
.hero-scroll span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  background: #fff;
  border-radius: 2px;
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ============================================================
   BOTONES y micro-interacciones
   ============================================================ */
.btn { border-radius: 40px; letter-spacing: 0.5px;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.btn.primary { background: linear-gradient(135deg, var(--accent-color), var(--accent-dark)); color: #fff;
  box-shadow: 0 16px 32px -14px rgba(207, 116, 64, 0.8); }
.btn.primary:hover { background: linear-gradient(135deg, var(--accent-dark), var(--accent-dark)); color: #fff;
  transform: translateY(-3px); box-shadow: 0 24px 44px -16px rgba(207, 116, 64, 0.9); }
.btn.secondary:hover { transform: translateY(-3px); }
.btn-publico, .btn-reserva, .btn-bonus, .btn-contacto { border-radius: 40px; }
.btn-reserva:hover, .btn-bonus:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.btn-publico:hover { transform: translateY(-2px); }

/* Botón "ver testimonios" con acento al hover */
.btn-testimonios:hover { background: var(--accent-color); color: #fff; border-color: var(--accent-color); transform: translateY(-3px); }

/* Tarjetas: sombras cálidas + borde sutil */
.servicio-card, .blog-card {
  border: 1px solid rgba(58, 36, 23, 0.06);
  box-shadow: var(--shadow-soft);
}
.servicio-card:hover, .blog-card:hover { box-shadow: var(--shadow-hover); }
.servicio-icon { transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease); }
.servicio-card:hover .servicio-icon { transform: scale(1.12) rotate(-6deg); background: var(--accent-color); color: #fff; }
.metodologia-item { transition: transform 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease); }
.metodologia-item:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.12); border-color: rgba(245, 240, 232, 0.3); }
.metodologia-number { transition: opacity 0.4s var(--ease); opacity: 0.85; }
.metodologia-item:hover .metodologia-number { opacity: 1; }

/* Títulos de sección con subrayado de acento */
.servicios-section h2, .benefits-section h2, .transforma-section h2, .instructora-section h2,
.metodologia-section h2, .blog-section h2, .testimonios-section h2, .tecnicas-section h2,
.publico-title {
  position: relative;
  padding-bottom: 0.7rem;
}
.servicios-section h2::after, .benefits-section h2::after, .transforma-section h2::after,
.instructora-section h2::after, .metodologia-section h2::after, .blog-section h2::after,
.testimonios-section h2::after, .tecnicas-section h2::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 66px; height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--gold));
}
.publico-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 66px; height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--gold));
}
@media (max-width: 768px) {
  .publico-title::after { left: 50%; transform: translateX(-50%); }
}

/* Técnicas / Agenda / Testimonios / carrusel */
.tecnica-item { transition: transform 0.4s var(--ease); }
.tecnica-item:hover { transform: translateY(-6px); }
.tecnica-item:hover h3 { color: var(--accent-color); }
.tecnica-item h3 { transition: color 0.3s var(--ease); }
.agenda-vertical-title { background: linear-gradient(160deg, var(--brown-dark), var(--brown-medium)); -webkit-background-clip: initial; }
.agenda-tab { transition: transform 0.3s var(--ease), background 0.3s, color 0.3s, box-shadow 0.3s; }
.agenda-tab:hover:not(.active) { transform: translateY(-2px); }
.carousel-arrow { transition: background 0.3s, transform 0.3s var(--ease), box-shadow 0.3s; }
.testimonio-card { transition: transform 0.4s var(--ease); }
.testimonio-card:hover { transform: translateY(-5px); }

/* Bonus con resplandor giratorio */
.bonus-section { position: relative; overflow: hidden; }
.bonus-content { position: relative; }
.bonus-content::before {
  content: '';
  position: absolute;
  top: -60%; left: 50%;
  width: 160%; height: 220%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(207, 116, 64, 0.18), transparent 60%);
  animation: bonusGlow 18s linear infinite;
  z-index: 0;
  pointer-events: none;
}
.bonus-content > * { position: relative; z-index: 1; }
@keyframes bonusGlow { from { transform: translateX(-50%) rotate(0); } to { transform: translateX(-50%) rotate(360deg); } }

/* WhatsApp flotante con pulso */
.whatsapp-float { animation: waPulse 2.6s ease-out infinite; }
@keyframes waPulse {
  0%   { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70%  { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================================
   REVEAL on scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   ACCESIBILIDAD: reducir movimiento
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-anim { opacity: 1 !important; animation: none !important; }
}