
    body {
      box-sizing: border-box;
    }
    .font-cormorant {
      font-family: 'Cormorant', serif;
    }
    .font-jakarta {
      font-family: 'Plus Jakarta Sans', sans-serif;
    }
    .font-catamaran {
      font-family: 'Catamaran', sans-serif;
    }
    .gradient-gold {
      background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #DAA520 100%);
    }
    .text-gold {
      color: #DAA520;
    }
    .border-gold {
      border-color: #DAA520;
    }
    .bg-gold {
      background-color: #DAA520;
    }
    .service-card {
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 50px -12px rgba(218, 165, 32, 0.25);
    }
    .sub-item {
      transition: all 0.3s ease;
    }
    .sub-item:hover {
      padding-left: 1.5rem;
      color: #DAA520;
    }
    .hero-pattern {
      background-image: 
        radial-gradient(circle at 20% 80%, rgba(218, 165, 32, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(218, 165, 32, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(218, 165, 32, 0.05) 0%, transparent 70%);
    }
    .floating {
      animation: float 6s ease-in-out infinite;
    }
    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-20px); }
    }
    .fade-in {
      animation: fadeIn 0.8s ease-out forwards;
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease-out, padding 0.3s ease;
    }
    .accordion-content.open {
      max-height: 1200px;
    }
    .accordion-icon {
      transition: transform 0.3s ease;
    }
    .accordion-icon.rotated {
      transform: rotate(180deg);
    }
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(10, 26, 47, 0.9);
      animation: fadeIn 0.3s ease;
    }
    .modal.open {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .modal-content {
      background-color: #0a1a2f;
      padding: 2.5rem;
      border: 1px solid #1e3a5f;
      border-radius: 1.5rem;
      max-width: 500px;
      width: 90%;
      box-shadow: 0 20px 60px -12px rgba(218, 165, 32, 0.2);
    }
    .error-message {
      color: #ef4444;
      font-size: 0.875rem;
      margin-top: 0.5rem;
    }
    .success-message {
      color: #10b981;
      font-size: 0.875rem;
      margin-top: 0.5rem;
    }
    .whatsapp-btn {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 60px;
      height: 60px;
      background-color: #25d366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
      transition: all 0.3s ease;
      z-index: 100;
    }
    .whatsapp-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    }
    ::-webkit-scrollbar {
      width: 8px;
    }
    ::-webkit-scrollbar-track {
      background: #0a1a2f;
    }
    ::-webkit-scrollbar-thumb {
      background: #DAA520;
      border-radius: 4px;
    }

    @view-transition { navigation: auto; }