
:root {
    --bg: #f7f3ee;
    --bg-soft: #efe7de;
    --card: rgba(255, 255, 255, 0.72);
    --text: #3d342d;
    --muted: #74685e;
    --accent: #b08b68;
    --accent-dark: #8f6c4c;
    --line: rgba(61, 52, 45, 0.12);
    --white: #ffffff;
    --shadow: 0 12px 30px rgba(70, 52, 38, 0.08);
    --radius: 22px;
    --max: 1180px;
  }

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

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: linear-gradient(180deg, #faf7f2 0%, #f4eee7 100%);
    color: var(--text);
    line-height: 1.6;
  }

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

  a {
    color: inherit;
    text-decoration: none;
  }

  .container {
    width: min(100% - 2rem, var(--max));
    margin: 0 auto;
  }

  .section {
    padding: 4.5rem 0;
  }

  .section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.1;
    margin-bottom: 0.8rem;
    font-weight: 700;
    letter-spacing: -0.03em;
  }

  .section-subtitle {
    max-width: 650px;
    color: var(--muted);
    margin-bottom: 2rem;
  }

  .topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
    background: rgba(250, 247, 242, 0.8);
    border-bottom: 1px solid var(--line);
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 1rem;
  }

  .brand {
    display: flex;
    flex-direction: column;
  }

  .brand strong {
    font-size: 1.1rem;
    letter-spacing: 0.04em;
  }

  .brand span {
    font-size: 0.85rem;
    color: var(--muted);
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
  }

  .nav-links a {
    color: var(--muted);
    font-size: 0.95rem;
    transition: 0.2s ease;
  }

  .nav-links a:hover {
    color: var(--text);
  }

  .lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.3rem;
    box-shadow: var(--shadow);
  }

  .lang-btn {
    border: none;
    background: transparent;
    color: var(--muted);
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s ease;
  }

  .lang-btn.active {
    background: var(--accent);
    color: var(--white);
  }

  .hero {
    padding: 4.6rem 0 3rem;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(176, 139, 104, 0.12);
    color: var(--accent-dark);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
  }

  h1 {
    font-size: clamp(2.4rem, 5vw, 4.7rem);
    line-height: 0.98;
    margin-bottom: 1rem;
    letter-spacing: -0.05em;
    font-weight: 700;
    max-width: 12ch;
  }

  .hero p {
    max-width: 58ch;
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 1.6rem;
  }

  .hero-actions {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin-bottom: 1.4rem;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.2rem;
    border-radius: 999px;
    font-weight: 700;
    transition: 0.25s ease;
    border: 1px solid transparent;
  }

  .btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: var(--shadow);
  }

  .btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
  }

  .btn-secondary {
    border-color: var(--line);
    background: rgba(255,255,255,0.65);
    color: var(--text);
  }

  .btn-secondary:hover {
    background: var(--white);
  }

  .hero-mini {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.95rem;
  }

  .hero-card {
    position: relative;
    min-height: 540px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }

  .hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-overlay {
    position: absolute;
    inset: auto 1rem 1rem 1rem;
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 22px;
    padding: 1rem;
  }

  .hero-overlay strong {
    display: block;
    margin-bottom: 0.2rem;
  }

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

  .card {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(12px);
    border-radius: var(--radius);
    padding: 1.35rem;
    box-shadow: var(--shadow);
  }

  .card h3 {
    margin-bottom: 0.55rem;
    font-size: 1.1rem;
  }

  .card p,
  .card li {
    color: var(--muted);
  }

  .about-grid,
  .contact-grid,
  .reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
  }

  .about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .about-image-grid img {
    border-radius: 24px;
    height: 260px;
    object-fit: cover;
    box-shadow: var(--shadow);
  }

  .bullet-list {
    list-style: none;
    display: grid;
    gap: 0.8rem;
    margin-top: 1.4rem;
  }

  .bullet-list li {
    padding: 0.9rem 1rem;
    background: rgba(255,255,255,0.5);
    border-radius: 16px;
    border: 1px solid var(--line);
  }

  .prices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .price-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(250,244,237,0.95) 100%);
    border: 1px solid rgba(176, 139, 104, 0.18);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    text-align: center;
  }

  .price-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .price {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    color: var(--accent-dark);
  }

  .price-note {
    text-align: center;
    margin-top: 1.2rem;
    color: var(--muted);
  }

  .review-card {
    min-height: 100%;
  }

  .stars {
    margin-bottom: 0.8rem;
    letter-spacing: 0.08em;
    color: var(--accent-dark);
  }

  .review-name {
    margin-top: 1rem;
    font-weight: 700;
  }

  .contact-card,
  .form-card {
    background: rgba(255,255,255,0.72);
    border-radius: 26px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,0.45);
    padding: 1.5rem;
  }

  .contact-list {
    list-style: none;
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
  }

  .contact-list li {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(247,243,238,0.85);
    border: 1px solid var(--line);
  }

  form {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
  }

  .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  label {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 0.45rem;
  }

  input,
  textarea,
  select {
    width: 100%;
    border: 1px solid rgba(61, 52, 45, 0.14);
    background: rgba(255,255,255,0.9);
    border-radius: 16px;
    padding: 0.95rem 1rem;
    font: inherit;
    color: var(--text);
  }

  textarea {
    min-height: 150px;
    resize: vertical;
  }

  .small-note {
    color: var(--muted);
    font-size: 0.92rem;
    margin-top: 0.7rem;
  }

  .footer {
    padding: 2rem 0 3rem;
    color: var(--muted);
  }

  .footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    border-top: 1px solid var(--line);
    padding-top: 1.5rem;
  }

  .whatsapp-float {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1200;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    font-size: 1.6rem;
  }

  .whatsapp-float:hover {
    transform: translateY(-2px);
  }

  [data-lang] {
    display: none;
  }

  [data-lang].active {
    display: initial;
  }

  @media (max-width: 980px) {
    .hero-grid,
    .about-grid,
    .contact-grid,
    .reviews-grid,
    .cards-3,
    .prices-grid {
      grid-template-columns: 1fr;
    }

    .hero-card {
      min-height: 380px;
    }
  }

  @media (max-width: 760px) {
    .nav {
      flex-direction: column;
      align-items: flex-start;
      padding: 0.9rem 0;
    }

    .nav-links {
      gap: 0.9rem;
    }

    .about-image-grid,
    .field-row {
      grid-template-columns: 1fr;
    }

    .section {
      padding: 3.6rem 0;
    }

    h1 {
      max-width: 100%;
    }
  }