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

    :root {
      --terracotta:   #c8653a;
      --terra-lt:     #e0845a;
      --terra-pale:   #f5e8e0;
      --sage:         #5a7a5e;
      --sage-lt:      #7a9e7e;
      --sage-pale:    #eaf0ea;
      --cream:        #faf7f2;
      --white:        #ffffff;
      --ink:          #1e1c1a;
      --ink-soft:     #5a5550;
      --ink-ghost:    #9e9890;
      --line:         #e8e2d8;
      --nav-h:        70px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Nunito', sans-serif;
      background: var(--cream);
      color: var(--ink);
      font-size: 16px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      height: var(--nav-h);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5vw;
      background: rgba(250,247,242,0.92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid transparent;
      transition: border-color .3s;
    }
    nav.scrolled { border-color: var(--line); }

    .nav-logo {
      display: flex; align-items: center; gap: .7rem;
      text-decoration: none;
    }
    .nav-logo-mark {
      width: 38px; height: 38px;
      background: var(--terracotta);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      color: var(--white);
      font-weight: 700;
      flex-shrink: 0;
    }
    .nav-logo-text {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--ink);
      line-height: 1.1;
    }
    .nav-logo-sub {
      font-size: .65rem;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--ink-ghost);
    }

    .nav-links { display: flex; gap: 2.2rem; list-style: none; }
    .nav-links a {
      font-size: .85rem;
      font-weight: 600;
      color: var(--ink-soft);
      text-decoration: none;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--terracotta); }

    .nav-cta {
      font-size: .82rem;
      font-weight: 600;
      color: var(--white);
      background: var(--terracotta);
      padding: .6rem 1.4rem;
      border-radius: 50px;
      text-decoration: none;
      transition: background .2s, transform .2s;
    }
    .nav-cta:hover { background: var(--terra-lt); transform: translateY(-1px); }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      padding-top: var(--nav-h);
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      overflow: hidden;
    }

    .hero-left {
      display: flex; flex-direction: column; justify-content: center;
      padding: 6vw 4vw 6vw 5vw;
    }

    .hero-flag {
      display: inline-flex; align-items: center; gap: .6rem;
      background: var(--terra-pale);
      color: var(--terracotta);
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: .45rem 1rem;
      border-radius: 50px;
      margin-bottom: 2rem;
      width: fit-content;
      opacity: 0;
      transform: translateY(14px);
      animation: fadeUp .7s .1s forwards;
    }
    .hero-flag-dot {
      width: 7px; height: 7px;
      background: var(--terracotta);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: .5; transform: scale(.7); }
    }

    h1.hero-headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 4.5vw, 5rem);
      font-weight: 700;
      line-height: 1.1;
      color: var(--ink);
      margin-bottom: 1.6rem;
      opacity: 0;
      transform: translateY(18px);
      animation: fadeUp .85s .25s forwards;
    }
    h1.hero-headline em {
      font-style: italic;
      color: var(--terracotta);
    }

    .hero-sub {
      font-size: 1.05rem;
      font-weight: 400;
      color: var(--ink-soft);
      max-width: 460px;
      margin-bottom: 2.5rem;
      opacity: 0;
      transform: translateY(18px);
      animation: fadeUp .85s .4s forwards;
    }

    .hero-actions {
      display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
      opacity: 0;
      transform: translateY(18px);
      animation: fadeUp .85s .55s forwards;
    }

    .btn-primary {
      display: inline-block;
      padding: .85rem 2rem;
      background: var(--terracotta);
      color: var(--white);
      font-family: 'Nunito', sans-serif;
      font-size: .9rem;
      font-weight: 600;
      border-radius: 50px;
      text-decoration: none;
      transition: background .2s, transform .2s, box-shadow .2s;
      box-shadow: 0 4px 18px rgba(200,101,58,.25);
    }
    .btn-primary:hover {
      background: var(--terra-lt);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(200,101,58,.3);
    }

    .btn-secondary {
      display: inline-flex; align-items: center; gap: .5rem;
      font-size: .9rem;
      font-weight: 600;
      color: var(--sage);
      text-decoration: none;
      transition: color .2s;
    }
    .btn-secondary:hover { color: var(--terracotta); }
    .btn-secondary::after { content: '→'; transition: transform .2s; }
    .btn-secondary:hover::after { transform: translateX(4px); }

    .hero-right {
      position: relative;
      background: linear-gradient(150deg, #e8d5c4 0%, #c9a882 50%, #a07850 100%);
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
      opacity: 0;
      animation: fadeIn 1s .3s forwards;
    }

    .hero-right::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse at 30% 70%, rgba(90,122,94,.3) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(200,101,58,.2) 0%, transparent 50%);
    }

    /* Azulejo tile pattern */
    .hero-right::after {
      content: '';
      position: absolute; inset: 0;
      background-image:
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,.07) 39px, rgba(255,255,255,.07) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,.07) 39px, rgba(255,255,255,.07) 40px);
    }

    .hero-card {
      position: relative; z-index: 2;
      background: rgba(255,255,255,.18);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,.35);
      border-radius: 20px;
      padding: 2.5rem 2rem;
      text-align: center;
      width: min(340px, 80%);
    }

    .hero-card-avatar {
      width: 80px; height: 80px;
      background: var(--terracotta);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      color: var(--white);
      font-weight: 700;
      margin: 0 auto 1rem;
      border: 3px solid rgba(255,255,255,.5);
    }

    .hero-card-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: .2rem;
    }
    .hero-card-role {
      font-size: .8rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255,255,255,.7);
      margin-bottom: 1.5rem;
    }

    .hero-card-langs {
      display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap;
    }
    .lang-tag {
      display: inline-flex; align-items: center; gap: .4rem;
      background: rgba(255,255,255,.2);
      border: 1px solid rgba(255,255,255,.3);
      color: var(--white);
      font-size: .78rem;
      font-weight: 600;
      padding: .35rem .9rem;
      border-radius: 50px;
    }

    .hero-stat-strip {
      position: absolute;
      bottom: 2rem; left: 50%;
      transform: translateX(-50%);
      display: flex; gap: 2rem;
      background: rgba(255,255,255,.15);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,.25);
      border-radius: 50px;
      padding: .8rem 2rem;
      z-index: 2;
    }

    .hero-stat { text-align: center; }
    .hero-stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
    }
    .hero-stat-label {
      font-size: .65rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255,255,255,.65);
    }
    .stat-divider {
      width: 1px;
      background: rgba(255,255,255,.25);
      align-self: stretch;
    }

    /* ── SECTION SHARED ── */
    section { padding: 6rem 5vw; }

    .section-tag {
      display: inline-flex; align-items: center; gap: .6rem;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--terracotta);
      margin-bottom: 1rem;
    }
    .section-tag::before {
      content: '';
      display: block; width: 22px; height: 2px;
      background: var(--terracotta);
      border-radius: 2px;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 3.5vw, 3.4rem);
      font-weight: 700;
      line-height: 1.15;
      color: var(--ink);
      margin-bottom: 1.2rem;
    }
    .section-title em { font-style: italic; color: var(--terracotta); }

    .section-body {
      font-size: 1rem;
      font-weight: 400;
      color: var(--ink-soft);
      max-width: 500px;
      line-height: 1.75;
    }

    /* ── SERVICES ── */
    #services { background: var(--white); }

    .services-intro {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 3rem; align-items: end;
      margin-bottom: 4rem;
    }

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

    .service-card {
      background: var(--cream);
      border-radius: 16px;
      padding: 2.2rem 1.8rem;
      border: 1.5px solid var(--line);
      transition: border-color .3s, transform .3s, box-shadow .3s;
      cursor: default;
    }
    .service-card:hover {
      border-color: var(--terracotta);
      transform: translateY(-4px);
      box-shadow: 0 12px 36px rgba(200,101,58,.1);
    }

    .service-emoji {
      font-size: 2rem;
      margin-bottom: 1.2rem;
      display: block;
    }

    .service-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: .6rem;
    }

    .service-desc {
      font-size: .88rem;
      font-weight: 400;
      color: var(--ink-soft);
      line-height: 1.7;
    }

    .service-examples {
      margin-top: 1rem;
      display: flex; flex-wrap: wrap; gap: .4rem;
    }
    .example-tag {
      font-size: .72rem;
      font-weight: 600;
      background: var(--terra-pale);
      color: var(--terracotta);
      padding: .25rem .65rem;
      border-radius: 50px;
    }

    /* ── ABOUT ── */
    #about {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 6vw; align-items: center;
      background: var(--cream);
    }

    .about-visual {
      position: relative;
    }

    .about-main-card {
      background: linear-gradient(145deg, var(--terracotta), #a04828);
      border-radius: 20px;
      padding: 3.5rem 2.5rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .about-main-card::before {
      content: '';
      position: absolute; inset: 0;
      background:
        repeating-linear-gradient(45deg, transparent, transparent 18px, rgba(255,255,255,.04) 18px, rgba(255,255,255,.04) 19px);
    }

    .about-avatar {
      width: 100px; height: 100px;
      border-radius: 50%;
      background: rgba(255,255,255,.2);
      border: 3px solid rgba(255,255,255,.4);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      color: var(--white);
      font-weight: 700;
      margin: 0 auto 1.2rem;
      position: relative; z-index: 1;
    }

    .about-card-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--white);
      position: relative; z-index: 1;
    }
    .about-card-title {
      font-size: .8rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255,255,255,.65);
      margin-top: .3rem;
      position: relative; z-index: 1;
    }

    .about-float-card {
      position: absolute;
      bottom: -1.5rem; right: -1.5rem;
      background: var(--white);
      border-radius: 14px;
      padding: 1.2rem 1.5rem;
      box-shadow: 0 12px 40px rgba(0,0,0,.1);
      border: 1px solid var(--line);
    }
    .about-float-num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--sage);
      line-height: 1;
    }
    .about-float-label {
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--ink-ghost);
      margin-top: .2rem;
    }

    .about-sage-strip {
      position: absolute;
      top: -1rem; left: -1rem;
      background: var(--sage-pale);
      border: 1px solid var(--sage-lt);
      border-radius: 12px;
      padding: .8rem 1.2rem;
      display: flex; align-items: center; gap: .6rem;
    }
    .about-sage-strip span {
      font-size: 1.2rem;
    }
    .about-sage-strip p {
      font-size: .75rem;
      font-weight: 600;
      color: var(--sage);
      line-height: 1.3;
    }

    .about-content { padding: 1rem 0; }

    .about-intro {
      font-size: 1.05rem;
      font-weight: 400;
      color: var(--ink-soft);
      line-height: 1.8;
      margin-bottom: 2.5rem;
    }

    .about-pillars {
      display: flex; flex-direction: column; gap: 1.2rem;
    }

    .pillar {
      display: flex; gap: 1rem; align-items: flex-start;
      padding: 1.2rem;
      background: var(--white);
      border-radius: 12px;
      border: 1.5px solid var(--line);
      transition: border-color .3s;
    }
    .pillar:hover { border-color: var(--terracotta); }

    .pillar-icon {
      font-size: 1.4rem;
      flex-shrink: 0;
      margin-top: .1rem;
    }

    .pillar-text strong {
      display: block;
      font-size: .95rem;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: .25rem;
    }
    .pillar-text p {
      font-size: .85rem;
      color: var(--ink-soft);
      line-height: 1.6;
    }

    /* ── AREAS ── */
    #areas { background: var(--sage); }

    #areas .section-tag { color: rgba(255,255,255,.7); }
    #areas .section-tag::before { background: rgba(255,255,255,.7); }
    #areas .section-title { color: var(--white); }
    #areas .section-body { color: rgba(255,255,255,.7); max-width: 100%; }

    .areas-header {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 3rem; align-items: end;
      margin-bottom: 3.5rem;
    }

    .areas-grid {
      display: flex; flex-wrap: wrap; gap: 1rem;
    }

    .area-chip {
      display: flex; align-items: center; gap: .6rem;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.2);
      color: var(--white);
      font-size: .9rem;
      font-weight: 600;
      padding: .7rem 1.4rem;
      border-radius: 50px;
      transition: background .2s;
    }
    .area-chip:hover { background: rgba(255,255,255,.2); }
    .area-chip span { font-size: 1rem; }

    /* ── TESTIMONIALS ── */
    #testimonials { background: var(--cream); }

    .testi-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }
    .testi-header .section-tag { justify-content: center; }
    .testi-header .section-tag::before { display: none; }
    .testi-header .section-title { max-width: 100%; }
    .testi-header .section-body { margin: 0 auto; text-align: left; max-width: 480px; }

    .testi-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .testi-card {
      background: var(--white);
      border-radius: 16px;
      padding: 2rem 1.8rem;
      border: 1.5px solid var(--line);
      transition: box-shadow .3s, transform .3s;
    }
    .testi-card:hover {
      box-shadow: 0 10px 32px rgba(0,0,0,.07);
      transform: translateY(-3px);
    }

    .testi-stars {
      color: var(--terracotta);
      font-size: 1rem;
      letter-spacing: .1em;
      margin-bottom: 1rem;
    }

    .testi-text {
      font-size: .95rem;
      font-weight: 400;
      color: var(--ink-soft);
      line-height: 1.75;
      margin-bottom: 1.5rem;
      font-style: italic;
    }

    .testi-author {
      display: flex; align-items: center; gap: .9rem;
      padding-top: 1rem;
      border-top: 1px solid var(--line);
    }

    .testi-avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--terracotta), var(--sage));
      display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: .95rem;
      color: var(--white);
      font-weight: 700;
      flex-shrink: 0;
    }

    .testi-name {
      font-size: .9rem;
      font-weight: 600;
      color: var(--ink);
    }
    .testi-loc {
      font-size: .78rem;
      color: var(--ink-ghost);
    }

    /* ── CONTACT ── */
    #contact { background: var(--white); }

    .contact-wrap {
      display: grid; grid-template-columns: 1fr 1.2fr;
      gap: 6vw; align-items: start;
    }

    .contact-info .section-body { margin-bottom: 2.5rem; }

    .contact-items {
      display: flex; flex-direction: column; gap: 1.4rem;
    }

    .contact-item {
      display: flex; gap: 1rem; align-items: flex-start;
    }

    .contact-item-icon {
      width: 42px; height: 42px;
      background: var(--terra-pale);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .contact-item-label {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--ink-ghost);
      margin-bottom: .2rem;
    }
    .contact-item-value {
      font-size: .95rem;
      font-weight: 500;
      color: var(--ink);
    }

    .contact-form {
      background: var(--cream);
      border-radius: 20px;
      padding: 2.5rem;
      border: 1.5px solid var(--line);
      display: flex; flex-direction: column; gap: 1.2rem;
    }

    .contact-form h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: .2rem;
    }
    .contact-form p {
      font-size: .88rem;
      color: var(--ink-ghost);
      margin-bottom: .5rem;
    }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { display: flex; flex-direction: column; gap: .4rem; }

    .form-group label {
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--ink-ghost);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      font-family: 'Nunito', sans-serif;
      font-size: .95rem;
      color: var(--ink);
      background: var(--white);
      border: 1.5px solid var(--line);
      border-radius: 10px;
      padding: .75rem 1rem;
      outline: none;
      transition: border-color .2s, box-shadow .2s;
      appearance: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--terracotta);
      box-shadow: 0 0 0 3px rgba(200,101,58,.1);
    }
    .form-group textarea { resize: vertical; min-height: 110px; }

    .form-submit {
      font-family: 'Nunito', sans-serif;
      font-size: .9rem;
      font-weight: 700;
      color: var(--white);
      background: var(--terracotta);
      border: none;
      border-radius: 50px;
      padding: .9rem 2rem;
      cursor: pointer;
      transition: background .2s, transform .2s, box-shadow .2s;
      box-shadow: 0 4px 16px rgba(200,101,58,.25);
      align-self: flex-start;
    }
    .form-submit:hover {
      background: var(--terra-lt);
      transform: translateY(-2px);
      box-shadow: 0 8px 22px rgba(200,101,58,.3);
    }

    /* ── FOOTER ── */
    footer {
      background: var(--ink);
      padding: 2.5rem 5vw;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 1rem;
    }

    .footer-logo {
      display: flex; align-items: center; gap: .6rem;
    }
    .footer-logo-mark {
      width: 32px; height: 32px;
      background: var(--terracotta);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: .85rem;
      color: var(--white);
      font-weight: 700;
    }
    .footer-logo-text {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      color: var(--white);
    }

    .footer-copy {
      font-size: .78rem;
      color: rgba(255,255,255,.3);
    }

    .footer-tagline {
      font-size: .8rem;
      color: rgba(255,255,255,.4);
      font-style: italic;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      to { opacity: 1; }
    }

    .reveal {
      opacity: 0; transform: translateY(24px);
      transition: opacity .65s, transform .65s;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      #hero { grid-template-columns: 1fr; }
      .hero-right { display: none; }
      .services-intro { grid-template-columns: 1fr; gap: 1rem; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      #about { grid-template-columns: 1fr; }
      .about-float-card { right: 1rem; }
      .areas-header { grid-template-columns: 1fr; gap: 1rem; }
      .testi-grid { grid-template-columns: 1fr; }
      .contact-wrap { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      footer { flex-direction: column; text-align: center; }
      nav { padding: 0 4vw; }
      .nav-links { display: none; }
    }

    @media (max-width: 600px) {
      .services-grid { grid-template-columns: 1fr; }
    }
	
/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
  z-index: 999;
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 28px rgba(37,211,102,.5);
}