    :root {
      --green: #1f6c43;
      --yellow: #ffcc33;
      --black: #0f172a;
      --white: #fff;
      --bg: #f8fafc;
      --muted: #69747a;
      --line: #e6ece8;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
      background: var(--bg);
      color: var(--black);
      line-height: 1.6;
    }

    /* HEADER */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--line);
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .header.scrolled {
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .nav {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--green);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .logo-dot {
      width: 10px;
      height: 10px;
      background: var(--yellow);
      border-radius: 50%;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      color: var(--black);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
      position: relative;
    }

    .nav-links a:hover {
      color: var(--green);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--green);
      transition: width 0.3s;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .btn-contact {
      background: var(--green);
      color: white;
      padding: 0.6rem 1.5rem;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s;
    }

    .btn-contact:hover {
      background: #145a3a;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(31, 108, 67, 0.3);
    }

    /* HERO */
    .hero {
      margin-top: 80px;
      padding: 4rem 2rem;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      min-height: 80vh;
    }

    .hero-content h1 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      line-height: 1.1;
      margin-bottom: 1.5rem;
      color: var(--black);
    }

    .hero-content h1 .highlight {
      color: var(--green);
      position: relative;
      display: inline-block;
    }

    .hero-content p {
      font-size: 1.2rem;
      color: var(--muted);
      margin-bottom: 2rem;
      line-height: 1.8;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--green);
      color: white;
      padding: 1rem 2rem;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s;
      display: inline-block;
    }

    .btn-primary:hover {
      background: #145a3a;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(31, 108, 67, 0.3);
    }

    .btn-secondary {
      background: transparent;
      color: var(--green);
      padding: 1rem 2rem;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 600;
      border: 2px solid var(--green);
      transition: all 0.3s;
      display: inline-block;
    }

    .btn-secondary:hover {
      background: var(--green);
      color: white;
      transform: translateY(-2px);
    }

    .hero-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 500px;
    }

    .hero-circle {
      width: 400px;
      height: 400px;
      background: linear-gradient(135deg, rgba(31, 108, 67, 0.1), rgba(255, 204, 51, 0.1));
      border-radius: 50%;
      position: relative;
      animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
    }

    .floating-card {
      position: absolute;
      background: white;
      padding: 1rem 1.5rem;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
      font-weight: 600;
      white-space: nowrap;
      animation: floatCard 4s ease-in-out infinite;
      font-size: 0.95rem;
    }

    @keyframes floatCard {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-10px) rotate(2deg); }
    }

    .floating-card:nth-child(1) {
      top: -5%;
      left: 50%;
      transform: translateX(-50%);
      background: var(--green);
      color: white;
    }

    .floating-card:nth-child(2) {
      top: 20%;
      right: -20%;
      background: var(--yellow);
      color: var(--black);
      animation-delay: 1s;
    }

    .floating-card:nth-child(3) {
      bottom: 20%;
      right: -15%;
      background: white;
      border: 2px solid var(--green);
      animation-delay: 2s;
    }

    .floating-card:nth-child(4) {
      bottom: 20%;
      left: -15%;
      background: var(--green);
      color: white;
      animation-delay: 3s;
    }

    .floating-card:nth-child(5) {
      top: 20%;
      left: -20%;
      background: white;
      border: 2px solid var(--yellow);
      animation-delay: 0.5s;
    }

    /* SECTION */
    .section {
      max-width: 1200px;
      margin: 6rem auto;
      padding: 0 2rem;
    }

    .section-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .section-badge {
      background: rgba(31, 108, 67, 0.1);
      color: var(--green);
      padding: 0.5rem 1rem;
      border-radius: 20px;
      font-weight: 600;
      font-size: 0.9rem;
      display: inline-block;
      margin-bottom: 1rem;
    }

    .section-header h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 1rem;
      color: var(--black);
    }

    .section-header p {
      color: var(--muted);
      font-size: 1.1rem;
      max-width: 600px;
      margin: 0 auto;
    }

    /* GRID */
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .card {
      background: white;
      padding: 2rem;
      border-radius: 16px;
      border: 1px solid var(--line);
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--green), var(--yellow));
      transform: scaleX(0);
      transition: transform 0.3s;
    }

    .card:hover::before {
      transform: scaleX(1);
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
      border-color: var(--green);
    }

    .card-icon {
      width: 60px;
      height: 60px;
      background: rgba(31, 108, 67, 0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      font-size: 1.8rem;
    }

    .card h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: var(--black);
    }

    .card p {
      color: var(--muted);
      line-height: 1.7;
    }

    .card-link {
      text-decoration: none;
      color: inherit;
      display: block;
    }

    /* CLIENTES */
    .clients-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      align-items: center;
    }

    .client-logo {
      background: white;
      padding: 2rem;
      border-radius: 12px;
      border: 1px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: center;
      height: 120px;
      transition: all 0.3s;
      font-weight: 700;
      color: var(--muted);
    }

    .client-logo:hover {
      border-color: var(--green);
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .coming-soon-badge {
      display: inline-block;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      padding: 0.4rem 1rem;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-left: 0.5rem;
      animation: pulse-glow 2s ease-in-out infinite;
      box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    }

    @keyframes pulse-glow {
      0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
      }
      50% {
        opacity: 0.9;
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
      }
    }

    /* STATS */
    .stats {
      background: var(--green);
      color: white;
      padding: 4rem 2rem;
      border-radius: 24px;
      margin: 4rem 0;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 3rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 0.5rem;
      color: var(--yellow);
    }

    .stat-label {
      font-size: 1.1rem;
      opacity: 0.9;
    }

    /* CONTACTO */
    .contact-container {
      background: white;
      padding: 3rem;
      border-radius: 24px;
      border: 1px solid var(--line);
      max-width: 600px;
      margin: 0 auto;
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 600;
      color: var(--black);
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 1rem;
      border: 2px solid var(--line);
      border-radius: 8px;
      font-family: inherit;
      font-size: 1rem;
      transition: border-color 0.3s;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--green);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 150px;
    }

    /* FOOTER */
    .footer {
      background: var(--black);
      color: white;
      padding: 4rem 2rem 2rem;
      margin-top: 6rem;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      margin-bottom: 2rem;
    }

    .footer-section h3 {
      margin-bottom: 1rem;
      color: var(--yellow);
    }

    .footer-section ul {
      list-style: none;
    }

    .footer-section ul li {
      margin-bottom: 0.5rem;
    }

    .footer-section a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-section a:hover {
      color: white;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.5);
    }

    /* MOBILE */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1rem;
      }

      .hero-visual {
        order: -1;
        min-height: 400px;
      }

      .hero-circle {
        width: 280px;
        height: 280px;
      }

      .hero-buttons {
        justify-content: center;
      }

      .stats-grid {
        grid-template-columns: 1fr;
      }

      .floating-card {
        font-size: 0.8rem;
        padding: 0.7rem 1rem;
      }

      .floating-card:nth-child(2) {
        right: -25%;
      }

      .floating-card:nth-child(3) {
        right: -20%;
      }

      .floating-card:nth-child(5) {
        left: -25%;
      }
    }

    /* SMOOTH SCROLL */
    html {
      scroll-behavior: smooth;
    }

/* ESTILOS ADICIONALES PARA PÁGINAS INDIVIDUALES */
.page-content {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

.section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
