:root {
    --cream: #F5F0E8;
    --dark: #1A1A18;
    --sage: #7A9E7E;
    --terra: #C4714A;
    --gold: #C9A96E;
    --mist: #E8EDE9;
    --charcoal: #2D2D2B;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--dark);
    color: var(--cream);
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
  }

  /* Custom cursor */
  .cursor {
    width: 10px; height: 10px;
    background: var(--terra);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
    transform: translate(-50%, -50%);
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1px solid rgba(196,113,74,0.4);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.4s ease, width 0.3s, height 0.3s, border-color 0.3s;
    transform: translate(-50%, -50%);
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 28px 60px;
    background: linear-gradient(to bottom, rgba(26,26,24,0.95) 0%, transparent 100%);
  }
  .nav-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.12em;
    font-weight: 300;
    color: var(--cream);
    text-decoration: none;
  }
  .nav-logo span { color: var(--terra); }
  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a {
    color: rgba(245,240,232,0.65);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--cream); }
  .nav-cta {
    background: transparent;
    border: 1px solid var(--terra);
    color: var(--terra);
    padding: 10px 24px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: none;
    transition: all 0.3s;
  }
  .nav-cta:hover { background: var(--terra); color: var(--cream); }

  /* HERO */
  .hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--dark);
  }
  .hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at center, rgba(196,113,74,0.03) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-bg-logo {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 65vmin;
    height: 65vmin;
    pointer-events: none;
    user-select: none;
    opacity: 0;
    animation: fadeIn 2.5s ease 0.2s forwards;
  }
  .hero-bg-logo img {
    width: 100%; height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.03;
  }

  .hero-center {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 40px;
    width: 100%;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.3s forwards;
  }
  .hero-tag::before, .hero-tag::after {
    content: '';
    width: 30px; height: 1px;
    background: var(--sage);
  }

  .hero-name {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.5s forwards;
  }
  .hero-name em {
    font-style: italic;
    color: var(--terra);
  }

  .hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.4rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    color: rgba(245,240,232,0.55);
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.7s forwards;
  }

  .hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.3);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.8s forwards;
  }

  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.85;
    color: rgba(245,240,232,0.65);
    max-width: 440px;
    margin: 0 auto 48px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.9s forwards;
  }

  .hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 0.9s ease 1.1s forwards;
  }

  .hero-micro {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: rgba(245,240,232,0.3);
    margin-top: 16px;
    opacity: 0;
    animation: fadeUp 0.9s ease 1.3s forwards;
  }

  .btn-primary {
    background: var(--terra);
    color: var(--cream);
    padding: 16px 40px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: none;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-primary:hover { background: #B3603D; transform: translateY(-2px); }

  .btn-outline {
    background: transparent;
    color: var(--cream);
    padding: 16px 40px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid rgba(245,240,232,0.3);
    cursor: none;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--cream); transform: translateY(-2px); }

  .hero-stat-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    display: flex;
    z-index: 3;
    opacity: 0;
    animation: fadeUp 0.8s ease 1.5s forwards;
  }
  .stat-item {
    background: rgba(45,45,43,0.4);
    backdrop-filter: blur(12px);
    padding: 28px 40px;
    border-left: 1px solid rgba(245,240,232,0.05);
    flex: 1;
    text-align: center;
  }
  .stat-item:first-child { border-left: none; }
  .stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--gold);
    display: block;
    line-height: 1;
  }
  .stat-label {
    font-size: 0.63rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.4);
    margin-top: 6px;
    display: block;
  }

  /* ABOUT — Portrait photo */
  .about-portrait {
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
    border-bottom: 3px solid var(--terra);
  }
  .about-portrait img {
    width: 100%;
    max-height: 340px;
    object-fit: cover;
    object-position: center 15%;
    display: block;
  }
  .about-portrait::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 35%;
    background: linear-gradient(transparent, rgba(26,26,24,0.5));
    pointer-events: none;
  }

  /* ABOUT SECTION */
  .section-about {
    padding: 120px 60px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
    background: var(--dark);
    position: relative;
  }

  .section-about::before {
    content: 'SOBRE MÍ';
    position: absolute;
    top: 80px; left: 60px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    color: rgba(245,240,232,0.2);
  }

  .about-visual {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .about-card {
    position: relative;
    background: var(--charcoal);
    padding: 32px;
    border-bottom: 3px solid var(--sage);
    transition: transform 0.3s;
  }
  .about-card:hover { transform: translateY(-6px); }

  .card-fitness {
    width: 100%;
    z-index: 2;
  }
  .card-psych {
    width: 100%;
    z-index: 3;
    border-bottom-color: var(--terra);
  }

  .card-icon {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  .card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--cream);
  }
  .card-text {
    font-size: 0.85rem;
    line-height: 1.8;
    color: rgba(245,240,232,0.6);
  }

  .about-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 28px;
  }
  .about-content h2 em { font-style: italic; color: var(--sage); }

  .about-content p {
    font-size: 0.93rem;
    line-height: 1.9;
    color: rgba(245,240,232,0.65);
    margin-bottom: 20px;
  }

  .about-quote {
    border-left: 2px solid var(--terra);
    padding: 16px 24px;
    margin: 32px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-style: italic;
    color: rgba(245,240,232,0.8);
    line-height: 1.7;
  }

  /* SERVICES */
  .section-services {
    padding: 120px 60px;
    background: #141412;
    position: relative;
    overflow: hidden;
  }

  .section-services::after {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(122,158,126,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 70px;
  }
  .services-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.1;
  }
  .services-header h2 em { font-style: italic; color: var(--terra); }
  .services-header p {
    max-width: 320px;
    font-size: 0.85rem;
    line-height: 1.8;
    color: rgba(245,240,232,0.5);
    text-align: right;
  }

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

  .service-card {
    background: var(--charcoal);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
    cursor: none;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--sage);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
  }
  .service-card:hover { background: #343432; }
  .service-card:hover::before { transform: scaleX(1); }
  .service-card:nth-child(2)::before,
  .service-card:nth-child(5)::before { background: var(--terra); }
  .service-card:nth-child(3)::before,
  .service-card:nth-child(6)::before { background: var(--gold); }

  .service-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: rgba(245,240,232,0.25);
    margin-bottom: 28px;
    display: block;
  }
  .service-icon {
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: block;
  }
  .service-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.45rem;
    font-weight: 400;
    margin-bottom: 14px;
    line-height: 1.2;
  }
  .service-desc {
    font-size: 0.82rem;
    line-height: 1.85;
    color: rgba(245,240,232,0.55);
    margin-bottom: 28px;
  }
  .service-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 0.05em;
  }
  .service-price-secondary {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    color: rgba(201,169,110,0.6);
    letter-spacing: 0.04em;
    display: block;
    margin-top: 4px;
  }
  .service-includes {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(245,240,232,0.08);
  }
  .service-includes-label {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.3);
    display: block;
    margin-bottom: 8px;
  }
  .service-includes ul {
    list-style: none;
    padding: 0; margin: 0;
  }
  .service-includes ul li {
    font-size: 0.75rem;
    color: rgba(245,240,232,0.5);
    padding: 3px 0;
    padding-left: 14px;
    position: relative;
    line-height: 1.5;
  }
  .service-includes ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--sage);
    font-size: 0.65rem;
  }

  /* TESTIMONIALS */
  .section-testimonials {
    padding: 120px 60px;
    background: var(--dark);
    text-align: center;
  }

  .testimonials-label {
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 20px;
    display: block;
  }

  .testimonials-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    margin-bottom: 70px;
  }

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

  .testimonial-card {
    background: var(--charcoal);
    padding: 44px 36px;
    text-align: left;
    position: relative;
  }

  .testimonial-quote {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    color: var(--terra);
    line-height: 0.5;
    margin-bottom: 20px;
    display: block;
  }
  .testimonial-text {
    font-size: 0.88rem;
    line-height: 1.9;
    color: rgba(245,240,232,0.7);
    font-style: italic;
    margin-bottom: 28px;
  }
  .testimonial-author {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.4);
  }
  .testimonial-author strong {
    display: block;
    color: var(--cream);
    font-weight: 400;
    letter-spacing: 0;
    font-size: 0.9rem;
    text-transform: none;
    margin-bottom: 4px;
  }
  .stars {
    color: var(--gold);
    font-size: 0.8rem;
    margin-bottom: 20px;
    display: block;
  }

  /* GALLERY */
  .section-gallery {
    padding: 120px 60px;
    background: #0E0E0C;
    position: relative;
    overflow: hidden;
  }
  .section-gallery::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,169,110,0.2), transparent);
  }
  .gallery-header {
    text-align: center;
    margin-bottom: 70px;
  }
  .gallery-label {
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 20px;
    display: block;
  }
  .gallery-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: 18px;
  }
  .gallery-header h2 em {
    font-style: italic;
    color: var(--terra);
  }
  .gallery-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: rgba(245,240,232,0.45);
    letter-spacing: 0.04em;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    max-width: 1000px;
    margin: 0 auto;
  }
  .gallery-item {
    position: relative;
    overflow: hidden;
    background: #111;
    cursor: pointer;
  }
  .gallery-item.gallery-landscape {
    aspect-ratio: 3/2;
  }
  .gallery-item.gallery-portrait {
    aspect-ratio: 2/3;
  }
  .gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.6s;
    filter: brightness(0.85);
  }
  .gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1);
  }
  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,8,0.65) 0%, transparent 45%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px 24px;
  }
  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }
  .gallery-caption {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.85);
    transform: translateY(6px);
    transition: transform 0.4s ease;
  }
  .gallery-item:hover .gallery-caption {
    transform: translateY(0);
  }
  .gallery-placeholder {
    width: 100%; height: 100%; min-height: 240px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 14px;
    background: #161614;
    color: rgba(245,240,232,0.2);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-align: center;
    padding: 24px;
    line-height: 1.7;
  }
  .gallery-placeholder svg { opacity: 0.25; }

  /* PROCESS */
  .section-process {
    padding: 120px 60px;
    background: #141412;
  }

  .process-header {
    margin-bottom: 70px;
  }
  .process-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    margin-bottom: 16px;
  }
  .process-header h2 em { font-style: italic; color: var(--gold); }
  .process-header p {
    font-size: 0.88rem;
    color: rgba(245,240,232,0.5);
    max-width: 500px;
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 28px; right: 28px;
    height: 1px;
    background: rgba(245,240,232,0.1);
  }

  .process-step {
    padding: 0 24px 0 0;
    position: relative;
  }

  .step-dot {
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(245,240,232,0.15);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 32px;
    background: #141412;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
  }
  .process-step:hover .step-dot {
    border-color: var(--terra);
    background: rgba(196,113,74,0.1);
  }

  .step-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 12px;
  }
  .step-text {
    font-size: 0.82rem;
    line-height: 1.8;
    color: rgba(245,240,232,0.5);
  }

  /* CONTACT / CTA */
  .section-cta {
    padding: 130px 60px;
    background: var(--dark);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .section-cta::before {
    content: '';
    position: absolute;
    bottom: -300px; left: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(196,113,74,0.07) 0%, transparent 70%);
  }

  .cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
  }
  .cta-content h2 em { font-style: italic; color: var(--terra); }
  .cta-content p {
    font-size: 0.93rem;
    line-height: 1.9;
    color: rgba(245,240,232,0.6);
    margin-bottom: 40px;
    max-width: 460px;
  }

  .cta-form { position: relative; z-index: 1; }

  .form-group { margin-bottom: 20px; }
  .form-group label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.45);
    margin-bottom: 8px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    background: rgba(245,240,232,0.04);
    border: 1px solid rgba(245,240,232,0.1);
    color: var(--cream);
    padding: 14px 18px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.3s;
    cursor: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--terra);
    background: rgba(196,113,74,0.04);
  }
  .form-group select option { background: var(--charcoal); }
  .form-group textarea { resize: none; height: 110px; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  .form-submit {
    width: 100%;
    background: var(--terra);
    color: var(--cream);
    border: none;
    padding: 18px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: none;
    transition: all 0.3s;
    margin-top: 8px;
  }
  .form-submit:hover { background: #B3603D; }

  /* FOOTER */
  footer {
    background: #0E0E0C;
    padding: 50px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(245,240,232,0.06);
  }

  .footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: rgba(245,240,232,0.5);
  }
  .footer-logo span { color: var(--terra); }

  .footer-links {
    display: flex; gap: 32px; list-style: none;
  }
  .footer-links a {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.35);
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover { color: var(--cream); }

  .footer-copy {
    font-size: 0.72rem;
    color: rgba(245,240,232,0.25);
  }

  /* Decorative SVG background text */
  .bg-text {
    position: absolute;
    font-family: 'Montserrat', sans-serif;
    font-size: 18vw;
    font-weight: 300;
    color: rgba(245,240,232,0.025);
    pointer-events: none;
    white-space: nowrap;
    line-height: 1;
    z-index: 0;
    user-select: none;
  }

  /* Animations */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* Scroll animations */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.15s; }
  .reveal-delay-2 { transition-delay: 0.25s; }
  .reveal-delay-3 { transition-delay: 0.35s; }
  .reveal-delay-4 { transition-delay: 0.45s; }
  /* Fallback: show everything if JS fails */
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; }
  }


  /* ================================
     MOBILE — completo desde cero
  ================================ */
  @media (max-width: 768px) {

    body { cursor: auto; }
    .cursor, .cursor-ring { display: none; }

    /* NAV */
    nav { padding: 16px 20px; background: rgba(26,26,24,0.98); }
    .nav-links { display: none; }
    .nav-logo { font-size: 1rem; }
    .nav-cta { padding: 8px 14px; font-size: 0.65rem; text-decoration: none; display: inline-block; }

    /* HERO */
    .hero { height: 100svh; }
    .hero-center { padding: 0 20px; }
    .hero-bg-logo { width: 75vmin; height: 75vmin; }
    .hero-tag { font-size: 0.6rem; margin-bottom: 20px; }
    .hero-tag::before, .hero-tag::after { width: 18px; }
    .hero-name { font-size: 17vw; }
    .hero-title { font-size: 0.9rem; margin-bottom: 6px; }
    .hero-subtitle { font-size: 0.6rem; margin-bottom: 24px; }
    .hero-desc { font-size: 0.83rem; line-height: 1.7; margin-bottom: 28px; max-width: 100%; }
    .hero-buttons { flex-direction: column; gap: 8px; }
    .btn-primary, .btn-outline { padding: 13px 24px; font-size: 0.7rem; text-align: center; width: 100%; display: block; }
    .stat-item { padding: 16px 8px; }
    .stat-num { font-size: 1.4rem; }
    .stat-label { font-size: 0.5rem; letter-spacing: 0.04em; white-space: normal; line-height: 1.3; }

    /* ABOUT */
    .section-about { display: flex !important; flex-direction: column !important; padding: 56px 20px !important; gap: 24px !important; }
    .section-about::before { display: none; }
    .about-visual { position: relative !important; height: auto !important; display: flex !important; flex-direction: column !important; gap: 12px !important; }
    .about-card { position: relative !important; width: 100% !important; top: auto !important; left: auto !important; right: auto !important; bottom: auto !important; padding: 24px 20px !important; }
    .card-fitness { width: 100% !important; }
    .card-psych { width: 100% !important; }
    .card-icon { font-size: 1.5rem !important; margin-bottom: 10px !important; }
    .card-title { font-size: 1.15rem !important; }
    .card-text { font-size: 0.82rem !important; line-height: 1.65 !important; }
    .about-content h2 { font-size: 8.5vw !important; margin-bottom: 20px !important; }
    .about-content p { font-size: 0.85rem !important; line-height: 1.75 !important; }
    .about-quote { font-size: 0.95rem !important; padding: 12px 16px !important; margin: 20px 0 !important; }

    /* MANIFESTO */
    .section-manifesto { padding: 56px 20px !important; }
    .section-manifesto > div { max-width: 100% !important; }
    .manifesto-grid { display: flex !important; flex-direction: column !important; }
    .manifesto-grid > div { padding: 24px 20px !important; }

    /* SERVICES / PRICING */
    .section-services { padding: 56px 20px !important; }
    .services-header { flex-direction: column !important; align-items: flex-start !important; gap: 12px !important; margin-bottom: 32px !important; }
    .services-header h2 { font-size: 8.5vw !important; }
    .services-header p { text-align: left !important; max-width: 100% !important; font-size: 0.8rem !important; }
    .services-grid { grid-template-columns: 1fr !important; }
    .service-card { padding: 28px 20px !important; }
    .service-num { margin-bottom: 16px !important; }
    .service-icon { font-size: 1.5rem !important; margin-bottom: 12px !important; }
    .service-title { font-size: 1.2rem !important; }
    .service-desc { font-size: 0.8rem !important; }

    /* TESTIMONIALS */
    .section-testimonials { padding: 56px 20px !important; }
    .testimonials-title { font-size: 8.5vw !important; margin-bottom: 32px !important; }
    .testimonials-grid { grid-template-columns: 1fr !important; }
    .testimonial-card { padding: 28px 20px !important; }
    .testimonial-text { font-size: 0.84rem !important; }

    /* GALLERY */
    .section-gallery { padding: 60px 20px !important; }
    .gallery-header { margin-bottom: 40px !important; }
    .gallery-grid { grid-template-columns: 1fr 1fr !important; gap: 3px !important; }
    .gallery-item.gallery-portrait { aspect-ratio: 2/3 !important; }
    .gallery-item.gallery-landscape { aspect-ratio: 3/2 !important; }

    /* PROCESS */
    .section-process { padding: 56px 20px !important; }
    .process-header { margin-bottom: 32px !important; }
    .process-header h2 { font-size: 8.5vw !important; }
    .process-steps { grid-template-columns: 1fr !important; }
    .process-step { padding: 24px 20px !important; }
    .step-title { font-size: 1.1rem !important; }
    .step-text { font-size: 0.82rem !important; }

    /* CTA / CONTACT */
    .section-cta { display: flex !important; flex-direction: column !important; padding: 56px 20px !important; gap: 32px !important; }
    .cta-content h2 { font-size: 8.5vw !important; }
    .cta-info-row { flex-direction: column !important; gap: 16px !important; }
    .cta-form { width: 100% !important; justify-content: stretch !important; }
    .cta-form > div { width: 100% !important; }
    .cta-form a { width: 100% !important; padding: 22px 16px !important; box-sizing: border-box !important; }

    /* FOOTER */
    footer { flex-direction: column !important; text-align: center !important; padding: 36px 20px !important; gap: 16px !important; }
    .footer-links { flex-wrap: wrap !important; justify-content: center !important; gap: 8px 16px !important; }
  }