:root {
    --bg: #f7f4ee;
    --bg-soft: #f1e8d5;
    --accent: #dabe84;
    --text: #1f1f1f;
    --text-soft: #5e5a55;
    --white: #ffffff;
    --border: rgba(31, 31, 31, 0.08);
    --shadow: 0 18px 50px rgba(31, 31, 31, 0.06);
    --radius: 22px;
    --container: 1180px;
  }
  
  * {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
  }
  
  img {
    max-width: 100%;
    display: block;
    border-radius: 20px;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  .container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
  }
  
  .narrow {
    max-width: 820px;
  }
  
  .site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(10px);
    background: rgba(247, 244, 238, 0.85);
    border-bottom: 1px solid rgba(31, 31, 31, 0.05);
  }
  
  .header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    height: 42px;
    width: auto;
    display: block;
  }
  
  .nav {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  
  .nav a {
    color: var(--text-soft);
    font-size: 0.96rem;
  }
  
  .nav-cta {
    padding: 10px 18px;
    border: 1px solid var(--accent);
    border-radius: 999px;
    color: var(--text);
    transition: all 0.25s ease;
  }
  
  .nav-cta:hover {
    background: var(--accent);
    color: var(--text);
    font-weight: 600;
  }

  .nav-cta:hover {
    background: var(--accent);
    color: var(--text);
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(218, 190, 132, 0.25);
  }
  
  .hero,
  .intro,
  .value-section,
  .product-section,
  .flex-section,
  .logistics-section,
  .process-section,
  .contact-section {
    padding: 70px 0;
  }

  .hero {
    padding-top: 85px;
    padding-bottom: 70px;
  }

  .hero-bottom {
    grid-area: bottom;
  }
  
  .hero-grid,
  .product-grid,
  .flex-grid,
  .contact-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: start;
  }
  
  .hero-grid {
    grid-template-areas:
      "content visual"
      "bottom visual";
  }
  
  .hero-content {
    grid-area: content;
  }
  
  .hero-visual {
    grid-area: visual;
  }
  
  .hero-bottom {
    grid-area: bottom;
  }

  .hero-visual img,
  .product-image img {
  min-height: 560px;
  object-fit: cover;
  box-shadow: var(--shadow);
  }

  .flex-content {
    max-width: 560px;
  }
  
  .flex-image {
    display: flex;
    align-items: center;
  }
  
  .flex-image img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: cover;
    box-shadow: var(--shadow);
  }
  
  .eyebrow,
  .section-label {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--text-soft);
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
  
  h1,
  h2,
  h3 {
    margin-top: 0;
    color: var(--text);
  }
  
  h1,
  h2 {
    font-family: "Cormorant Garamond", serif;
    line-height: 0.98;
    letter-spacing: -0.02em;
  }
  
  h1 {
    font-size: clamp(2.4rem, 4.8vw, 3.8rem);
    max-width: 700px;
    margin-bottom: 18px;
  }
  
  h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 18px;
  }
  
  h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
  }
  
  .hero-text,
  .section-intro,
  .intro p,
  .product-content p,
  .flex-section p,
  .contact-copy p {
    color: var(--text-soft);
    font-size: 1.05rem;
  }

  .contact-copy {
    max-width: 520px;
    padding-top: 4px;
  }
  
  .contact-copy h2 {
    margin-bottom: 16px;
  }
  
  .contact-copy p {
    margin-top: 0;
    margin-bottom: 14px;
  }

  .hero-content {
    max-width: 640px;
  }
  
  .hero-text {
    max-width: 590px;
    font-size: 1.08rem;
  }
  
  .hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: wrap;
  }

  .hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
  }
  
  .hero-point {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(31, 31, 31, 0.08);
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 500;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 600;
    transition: 0.25s ease;
    border: 1px solid transparent;
  }
  
  .btn-primary {
    background: var(--accent);
    color: var(--text);
  }
  
  .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
  }
  
  .btn-secondary {
    border-color: rgba(31, 31, 31, 0.12);
    background: transparent;
  }
  
  .btn-full {
    width: 100%;
  }
  
  .hero-visual img,
  .product-image img {
    min-height: 560px;
    object-fit: cover;
    box-shadow: var(--shadow);
  }
  
  .cards-3,
  .cards-4,
  .steps,
  .logistics-grid {
    display: grid;
    gap: 24px;
  }
  
  .cards-3 {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 48px;
  }
  
  .cards-4,
  .logistics-grid {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 38px;
  }
  
  .card,
  .value-card,
  .info-box,
  .step {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: 0 10px 30px rgba(31, 31, 31, 0.03);
  }
  
  .value-card {
    border-top: 3px solid var(--accent);
  }
  
  .feature-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: grid;
    gap: 18px;
  }
  
  .feature-list li {
    display: grid;
    gap: 5px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border);
    border-radius: 18px;
  }
  
  .feature-list span {
    color: var(--text-soft);
    font-size: 0.96rem;
  }
  
  .pill-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 30px 0 24px;
  }
  
  .pill {
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(218, 190, 132, 0.18);
    border: 1px solid rgba(218, 190, 132, 0.35);
    font-weight: 500;
  }
  
  .highlight-line {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 30px;
    padding-left: 14px;
    border-left: 3px solid var(--accent);
  }
  
  .steps {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 42px;
  }
  
  .step-number {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--bg-soft);
    border: 1px solid rgba(31, 31, 31, 0.08);
    font-weight: 700;
    margin-bottom: 18px;
  }
  
  .contact-section {
    background: linear-gradient(to bottom, rgba(255,255,255,0.2), rgba(255,255,255,0.55));
  }
  
  .contact-form {
    display: grid;
    gap: 14px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(31, 31, 31, 0.08);
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 14px 36px rgba(31, 31, 31, 0.05);
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    border: 1px solid rgba(31, 31, 31, 0.09);
    background: rgba(255, 255, 255, 0.96);
    border-radius: 12px;
    padding: 14px 16px;
    font: inherit;
    font-size: 0.96rem;
    color: var(--text);
    outline: none;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(218, 190, 132, 0.18);
  }
  
  .trust-note {
    margin-top: 18px;
    font-weight: 600;
    color: var(--text);
  }
  
  .site-footer {
    padding: 36px 0 46px;
    border-top: 1px solid rgba(31, 31, 31, 0.06);
  }
  
  .footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
  }
  
  .footer-inner p,
  .footer-contact {
    color: var(--text-soft);
    margin: 6px 0 0;
  }
  
  .footer-contact {
    display: grid;
    gap: 6px;
    text-align: right;
  }
  
  @media (max-width: 1024px) {
    .hero-grid,
    .product-grid,
    .flex-grid,
    .contact-grid,
    .cards-4,
    .logistics-grid,
    .cards-3,
    .steps {
      grid-template-columns: 1fr 1fr;
    }
  
    .hero-grid,
    .product-grid,
    .flex-grid,
    .contact-grid {
      gap: 36px;
    }
  
    .hero-visual img,
    .product-image img,
    .flex-image img {
      min-height: 420px;
    }
  }
  
  @media (max-width: 768px) {
    .nav {
      display: none;
    }
  
    .hero,
    .intro,
    .value-section,
    .product-section,
    .flex-section,
    .logistics-section,
    .process-section,
    .contact-section {
      padding: 72px 0;
    }
  
    .hero-grid,
    .product-grid,
    .flex-grid,
    .contact-grid,
    .cards-4,
    .logistics-grid,
    .cards-3,
    .steps,
    .footer-inner {
      grid-template-columns: 1fr;
      display: grid;
    }
  
    .footer-contact {
      text-align: left;
    }
  
    h1 {
      font-size: 3.1rem;
    }
  
    h2 {
      font-size: 2.35rem;
    }
  
    .hero-visual img,
    .product-image img,
    .flex-image img {
      min-height: 320px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 18px;
      }
      
      .hero-content,
      .hero-visual,
      .hero-bottom {
        width: 100%;
        max-width: 100%;
      }
      
      .hero-visual {
        width: 100%;
      }
      
      .hero-visual img {
        width: 100%;
        height: 460px;
        max-height: none;
        object-fit: cover;
        object-position: center bottom;
        border-radius: 18px;
      }

      
      .hero-visual img {
        display: block;
      }

      .hero-grid {
        gap: 16px;
      }
      
      .hero-content,
      .hero-visual,
      .hero-bottom {
        width: 100%;
        max-width: 100%;
      }
      
      .hero-visual img {
        display: block;
      }
      
      /* botones debajo de la imagen */
      .hero-actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
      }
      
      .hero-bottom .btn {
        width: 100%;
      }
      
      .hero-points {
        margin-top: 14px;
      }

      .hero-grid {
        grid-template-areas:
          "content"
          "visual"
          "bottom";
      }
  }

  .footer-logo img {
    height: 45px;
    opacity: 0.95;
  }

  .hero-content h1 {
    line-height: 1.05;
  }

  .contact-form .btn-primary {
    min-height: 48px;
    font-weight: 600;
  }

  .hero-visual {
    display: flex;
    align-items: center;
  }

  @media (max-width: 768px) {

    h1 {
      font-size: 2.2rem;
      line-height: 1.1;
    }
  
    .hero-text {
      font-size: 0.95rem;
    }
  
  }

  @media (max-width: 768px) {

    .hero-visual img {
      max-height: 260px;
      border-radius: 18px;
    }
  
  }

  @media (max-width: 768px) {

    .hero-actions {
      flex-direction: column;
      gap: 10px;
    }
  
    .btn {
      width: 100%;
    }
  
  }

  @media (max-width: 768px) {

    .hero,
    .intro,
    .value-section,
    .product-section,
    .flex-section,
    .logistics-section,
    .process-section,
    .contact-section {
      padding: 50px 0;
    }

  }

  @media (max-width: 768px) {
    .flex-grid {
      gap: 24px;
    }
  
    .flex-content {
      max-width: 100%;
    }
  
    .flex-image img {
      max-height: none;
    }
  }



