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

    :root {
      --verde: #19395f;
      --verde-claro: #4A9E4C;
      --verde-menta: #A8D5A2;
      --crema: #FAF6EE;
      --crema-oscura: #EFE8D8;
      --tierra: #8B5E3C;
      --tierra-claro: #C4956A;
      --amarillo: #E8C547;
      --rojo: #C0392B;
      --texto: #1C1C1C;
      --gris: #6B7280;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--crema);
      color: var(--texto);
      overflow-x: hidden;
    }

    /* ─── NAV ─────────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.8rem 5%;
      background: rgba(250,246,238,0.7);
      backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(45,106,47,0.12);
      transition: box-shadow 0.3s;
    }
    nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }

    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 900;
      color: var(--verde);
      letter-spacing: -0.5px;
    }
    .nav-logo img {width: 130px;}

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      text-decoration: none;
      color: var(--texto);
      font-weight: 500;
      font-size: 0.9rem;
      letter-spacing: 0.3px;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--verde); }

    .nav-cta {
      background: var(--verde);
      color: #fff !important;
      padding: 0.55rem 1.3rem;
      border-radius: 50px;
      font-weight: 600 !important;
      transition: background 0.2s, transform 0.15s !important;
    }
    .nav-cta:hover { background: var(--verde-claro) !important; transform: translateY(-1px); }

    /* ─── HERO ────────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 80vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding-top: 80px;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 70% 50%, rgba(168,213,162,0.35) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(196,149,106,0.2) 0%, transparent 50%),
        var(--crema);
    }

    /* Decorative organic shapes */
    .hero-blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      opacity: 0.4;
    }
    .hero-blob-1 {
      width: 500px; height: 500px;
      background: var(--verde-menta);
      right: -100px; top: -100px;
    }
    .hero-blob-2 {
      width: 300px; height: 300px;
      background: var(--amarillo);
      left: -80px; bottom: 100px;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-30px) scale(1.05); }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      width: 50%;
      padding: 0 5%;
      animation: fadeUp 1s ease both;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .hero-tag {
      display: inline-block;
      background: var(--verde-menta);
      color: var(--verde);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 0.4rem 1rem;
      border-radius: 50px;
      margin-bottom: 1.5rem;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 5vw, 4.5rem);
      font-weight: 900;
      line-height: 1.08;
      color: var(--texto);
      margin-bottom: 1.5rem;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--verde);
    }

    .hero p {
      font-size: 1.1rem;
      line-height: 1.7;
      color: var(--gris);
      max-width: 480px;
      margin-bottom: 2.5rem;
      font-weight: 300;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--verde);
      color: #fff;
      padding: 0.9rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      transition: all 0.25s;
      box-shadow: 0 4px 20px rgba(45,106,47,0.3);
    }
    .btn-primary:hover { background: var(--verde-claro); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(45,106,47,0.35); }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: transparent;
      color: var(--verde);
      padding: 0.9rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      border: 2px solid var(--verde);
      transition: all 0.25s;
    }
    .btn-secondary:hover { background: var(--verde); color: #fff; }

    /* Hero image / video area */
    .hero-visual {
      position: absolute;
      right: 0; top: 0; bottom: 0;
      width: 52%;
      overflow: hidden;
    }

    .hero-visual-inner {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--verde-menta) 0%, var(--crema-oscura) 60%, var(--tierra-claro) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 1rem;
      clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
    }
.hero-visual-inner video { object-fit: cover; height: 100%; width: 100%;}
    .hero-placeholder-text {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-style: italic;
      color: rgba(255,255,255,0.7);
      text-align: center;
      padding: 1rem;
    }

    .hero-placeholder-icon {
      width: 80px; height: 80px;
      border: 3px dashed rgba(255,255,255,0.5);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
    }

    /* ─── STATS ───────────────────────────────────────── */
    .stats-band {
      background: var(--verde);
      padding: 2.5rem 5%;
      display: flex;
      justify-content: center;
      gap: 4rem;
      flex-wrap: wrap;
    }

    .stat-item {
      text-align: center;
      color: #fff;
      animation: fadeUp 0.8s ease both;
    }

    .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      font-weight: 900;
    }
    .stat-label {
      font-size: 0.85rem;
      opacity: 0.8;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-top: 0.2rem;
    }

    /* ─── SECCIÓN NOSOTROS ────────────────────────────── */
    .section {
      padding: 6rem 5%;
    }

    .section-tag {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--tierra-claro);
      margin-bottom: 1rem;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 900;
      line-height: 1.15;
      margin-bottom: 1.5rem;
    }

    .nosotros-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .nosotros-text p {
      font-size: 1.05rem;
      line-height: 1.8;
      color: var(--gris);
      font-weight: 300;
      margin-bottom: 1.2rem;
    }

    .nosotros-text p strong {
      color: var(--texto);
      font-weight: 600;
    }

    .valores-lista {
      list-style: none;
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .valores-lista li {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-weight: 500;
      color: var(--texto);
    }

    .check-icon {
      width: 28px; height: 28px;
      background: var(--verde-menta);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--verde);
      font-size: 0.9rem;
    }

    .nosotros-image {
      background: linear-gradient(135deg, var(--crema-oscura), var(--verde-menta));
      border-radius: 20px;
      height: auto;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
    }

    .nosotros-image::before {
      content: '';
      position: absolute;
      width: 200px; height: 200px;
      background: rgba(255,255,255,0.2);
      border-radius: 50%;
      top: -50px; right: -50px;
    }

    .img-placeholder {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    .img-placeholder-text {
      font-size: 0.9rem;
      color: var(--gris);
      text-align: center;
      font-style: italic;
    }

    /* ─── MARCAS ──────────────────────────────────────── */
    .marcas-section {
      background: var(--crema-oscura);
      padding: 6rem 5%;
    }

    .marcas-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 4rem;
    }

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

    .marca-card {
      background: #fff;
      border-radius: 24px;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
      cursor: pointer;
      text-decoration: none;
      color: inherit;
      display: block;
    }

    .marca-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 60px rgba(0,0,0,0.12);
    }

    .marca-card-header {
      height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 0.5rem;
      position: relative;
      overflow: hidden;
    }

    /* Colores únicos por marca */
    .marca-geny .marca-card-header { background:url(assets/geny.jpg) no-repeat center center; background-size: cover; }
    .marca-ricogusto .marca-card-header { background:url(assets/ricogusto.jpg) no-repeat center center; background-size: cover;}
    .marca-tegua .marca-card-header { background:url(assets/tegua.jpg) no-repeat center center; background-size: cover;}
    .marca-carlimar .marca-card-header { background:url(assets/carlimar.jpg) no-repeat center center; background-size: cover;}

    .marca-emoji {
      font-size: 3.5rem;
      filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
    }

    .marca-card-badge {
      position: absolute;
      top: 1rem; right: 1rem;
      background: rgba(255,255,255,0.25);
      backdrop-filter: blur(8px);
      color: #fff;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 0.3rem 0.8rem;
      border-radius: 50px;
    }

    .marca-card-body {
      padding: 1.8rem 2rem;
    }

    .marca-nombre {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 900;
      margin-bottom: 0.5rem;
    }


    .marca-descripcion {
      font-size: 0.95rem;
      color: var(--gris);
      line-height: 1.6;
      margin-bottom: 1.2rem;
      font-weight: 300;
    }

    .marca-productos {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
    }

    .producto-tag {
      background: var(--crema-oscura);
      color: var(--texto);
      font-size: 0.75rem;
      font-weight: 500;
      padding: 0.3rem 0.75rem;
      border-radius: 50px;
    }

    .marca-link {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      transition: gap 0.2s;
    }
    .marca-geny .marca-link { color: #1a7abf; }
    .marca-ricogusto .marca-link { color: #b5451b; }
    .marca-tegua .marca-link { color: #2D6A2F; }
    .marca-carlimar .marca-link { color: #7b1fa2; }

    .marca-link:hover { gap: 0.8rem; }

    /* ─── CONTACTO ────────────────────────────────────── */
    .contacto-section {
      padding: 6rem 5%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .contacto-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }

    .contacto-info h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      font-weight: 900;
      margin-bottom: 1rem;
      line-height: 1.15;
    }

    .contacto-info p {
      color: var(--gris);
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 2rem;
      font-weight: 300;
    }

    .whatsapp-btn {
      position: fixed; width: 56px; height: 56px;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      background: #25D366;
      color: #fff;
      padding: 13px 0; z-index: 10000;
      border-radius: 50px; text-align: center;
      bottom: 10px; right: 10px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      transition: all 0.25s;
      box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    }
    .whatsapp-btn:hover { background: #128C7E; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.4); }

    .whatsapp-icon {
      width: 30px; height: 30px;
      fill: #fff;
    }

    .contacto-datos {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-top: 1rem;
    }

    .dato-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      color: var(--gris);
      font-size: 0.95rem;
    }

    .dato-icon {
      width: 36px; height: 36px;
      background: var(--crema-oscura);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }

    /* Form */
    .form-contacto {
      background: #fff;
      border-radius: 24px;
      padding: 2.5rem;
      box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    }

    .form-contacto h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

    .form-group {
      margin-bottom: 1.2rem;
    }

    .form-group label {
      display: block;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--texto);
      margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 0.85rem 1rem;
      border: 2px solid var(--crema-oscura);
      border-radius: 12px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      color: var(--texto);
      background: var(--crema);
      transition: border-color 0.2s;
      outline: none;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--verde);
      background: #fff;
    }

    .form-group textarea {
      resize: vertical;
      min-height: 110px;
    }

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

    .btn-submit {
      width: 100%;
      background: var(--verde);
      color: #fff;
      border: none;
      padding: 1rem;
      border-radius: 50px;
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.25s;
      margin-top: 0.5rem;
      box-shadow: 0 4px 20px rgba(45,106,47,0.3);
    }
    .btn-submit:hover { background: var(--verde-claro); transform: translateY(-1px); }

    /* Form success */
    .form-success {
      display: none;
      text-align: center;
      padding: 2rem;
    }

    .form-success .success-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    /* ─── FOOTER ──────────────────────────────────────── */
    footer {
      background: var(--texto);
      color: rgba(255,255,255,0.7);
      padding: 3rem 5% 2rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      max-width: 1200px;
      margin: 0 auto 3rem;
    }

    .footer-brand .nav-logo {
      color: #fff;
      font-size: 1.8rem;
      display: block;
      margin-bottom: 1rem;
    }
    .footer-brand .nav-logo img {width: 80px;}
    .footer-brand p {
      font-size: 0.9rem;
      line-height: 1.6;
      font-weight: 300;
    }

    .footer-col h4 {
      color: #fff;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .footer-col ul a {
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s;
    }

    .footer-col ul a:hover { color: var(--verde-menta); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-bottom p {
      font-size: 0.85rem;
    }

    .social-links {
      display: flex;
      gap: 1rem;
    }

    .social-link {
      width: 36px; height: 36px;
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      font-size: 0.9rem;
      transition: all 0.2s;
    }

    .social-link:hover {
      background: var(--verde);
      border-color: var(--verde);
      color: #fff;
    }

    /* ─── SCROLL REVEAL ───────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    /* ─── RESPONSIVE ──────────────────────────────────── */
    @media (max-width: 900px) {
      .hero-content { width: 100%; padding-bottom: 1rem; }
      .hero-visual { position: relative; width: 100%; height: 300px; clip-path: none; }
      .hero { flex-direction: column; min-height: auto; padding: 100px 5% 0; }
      .nosotros-grid, .contacto-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .marcas-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .stats-band { gap: 2rem; }
    }

    @media (max-width: 600px) {
      .nav-links, .hero-tag { display: none; }
      .hero {padding: 85px 4% 0;}
      .footer-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
    .nav-logo img {width: 100px;}
    nav.scrolled .nav-logo img {width: 85px;}
    .hero h1, .hero p  {margin-bottom: 0.5rem;}
    nav {padding: 0.5rem 5%;}
    .hero-buttons {gap: 0.5rem;}
    .btn-primary, .btn-secondary {padding: 0.8rem 1rem;}
    .hero h1{line-height: 1;} 
    .stat-label {max-width: 90px; font-size: 0.75rem;}
    .stat-number {font-size:2.2rem;} 
    .stats-band {gap: 1rem; padding: 2rem 5%;}
    }