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

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Header Styles */
    .header {
      background: white;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .header.scrolled {
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 0;
    }

    .logo {
      font-size: 1.8rem;
      font-weight: bold;
      color: #0d9488;
      text-decoration: none;
    }
    .logo img {
      height: 35px;
      width: auto;
    }

    .nav-menu {
      display: flex;
      list-style: none;
      gap: 2rem;
    }

    .nav-menu a {
      text-decoration: none;
      color: #666;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .nav-menu a:hover {
      color: #0d9488;
    }

    .nav-contact {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .phone-info {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: #666;
      font-size: 0.9rem;
    }

    .btn {
      padding: 0.75rem 1.5rem;
      border: none;
      border-radius: 6px;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-primary {
      background: #0d9488;
      color: white;
    }

    .btn-primary:hover {
      background: #0f766e;
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: transparent;
      color: white;
      border: 2px solid white;
    }

    .btn-secondary:hover {
      background: white;
      color: #0d9488;
    }

    .btn-outline {
      background: transparent;
      color: #0d9488;
      border: 2px solid #0d9488;
    }

    .btn-outline:hover {
      background: #0d9488;
      color: white;
    }

    /* Mobile Menu */
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: #0d9488;
      cursor: pointer;
    }

    /* Hero Section */
    .hero {
       position: relative;
      background-image: url('./img/banner1.png');
      background-size: cover;
      color: white;
      padding: 8rem 0 4rem;
      margin-top: 80px;
    }
    .hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Escurece o fundo para melhor legibilidade */
  z-index: 1;
}

    @media (max-width: 768px) {
      .hero .overlay {
        background-color: rgba(0, 0, 0, 0.5); /* Mais escuro no mobile */
      }
    }

    .hero-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .hero-text h1 {
      font-size: 3rem;
      font-weight: bold;
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }

    .hero-text p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      color: rgba(255, 255, 255, 0.9);
    }

    /* Card padrão (opcional) para hero-text */
    .hero-text.card {
      background: rgba(255, 255, 255, 0.9);
      color: #1f2937;
      border-radius: 14px;
      padding: 1.2rem 1.4rem 1.4rem;
      box-shadow: 0 12px 30px rgba(0,0,0,0.12);
      display: inline-block;
    }

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

    .hero-image {
      position: relative;
    }

    .hero-card {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 1rem;
      padding: 2rem;
      position: relative;
    }

    .hero-card img {
      width: 100%;
      height: auto;
      border-radius: 0.5rem;
    }

    .floating-icon {
      position: absolute;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.5rem;
    }

    .floating-icon.orange {
      background: #f97316;
      top: -20px;
      right: -20px;
    }

    .floating-icon.blue {
      background: #3b82f6;
      bottom: -20px;
      left: -20px;
    }

    /* About Section */
    .about {
      padding: 5rem 0;
      background: #f8fafc;
    }

    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .about-text h2 {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 1.5rem;
      color: #1f2937;
    }

    .about-text p {
      color: #6b7280;
      margin-bottom: 1.5rem;
      line-height: 1.8;
    }

    .about-video {
      background: white;
      border-radius: 1rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      padding: 1.5rem;
    }
        .video-wrapper {
      position: relative;
      width: 100%;
      max-width: 800px;
      aspect-ratio: 16 / 9;
    }

    .video-wrapper iframe {
      width: 100%;
      height: 100%;
      border: none;
    }



    .video-info {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .video-details h3 {
      font-weight: 600;
      color: #1f2937;
    }

    .video-details p {
      color: #6b7280;
      font-size: 0.9rem;
    }

    /* Features Section */
    .features {
      padding: 5rem 0;
    }

    /* Statistics Section */
    .statistics {
      padding: 5rem 0;
      background: #0d9488;
      color: white;
    }

    .statistics .section-header h2 {
      color: white;
    }

    .statistics .section-header p {
      color: rgba(255, 255, 255, 0.8);
    }

    .statistics-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .stat-card {
      text-align: center;
      padding: 2rem;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 1rem;
      backdrop-filter: blur(10px);
      transition: transform 0.3s ease;
    }

    .stat-card:hover {
      transform: translateY(-5px);
    }

    .stat-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
      color: #a7f3d0;
    }

    .stat-number {
      font-size: 3rem;
      font-weight: bold;
      margin-bottom: 0.5rem;
      color: white;
    }

    .stat-label {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.9);
      font-weight: 500;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .feature-card {
      background: white;
      padding: 2.5rem;
      border-radius: 1rem;
      text-align: center;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }

    .feature-icon {
      width: 80px;
      height: 80px;
      background: #e6fffa;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      color: #0d9488;
      font-size: 2rem;
    }

    .feature-card h3 {
      font-size: 1.3rem;
      font-weight: bold;
      margin-bottom: 1rem;
      color: #1f2937;
    }

    .feature-card p {
      color: #6b7280;
      line-height: 1.6;
    }

    /* Pricing Section */
    .pricing {
      padding: 5rem 0;
      background: #f8fafc;
    }

    .section-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .section-header h2 {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 1rem;
      color: #1f2937;
    }

    .section-header p {
      font-size: 1.2rem;
      color: #6b7280;
      max-width: 600px;
      margin: 0 auto;
    }

    .pricing-grid {
      display: grid;
      gap: 2rem;
      grid-template-columns: repeat(4, 1fr);
    }
    @media (max-width: 900px) {
      .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 600px) {
      .pricing-grid {
        grid-template-columns: 1fr;
      }
    }

    .pricing-card {
      background: white;
      border-radius: 1rem;
      padding: 2.5rem 1.5rem 2.2rem 1.5rem;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      position: relative;
      min-height: 420px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .group-info {
      min-height: 80px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      margin-bottom: 1.5rem;
    }

    .pricing-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }

    .pricing-card.popular {
      border: 2px solid #0d9488;
      transform: scale(1.07);
      z-index: 1;
    }

    .popular-badge {
      position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%);
      background: #0d9488;
      color: white;
      padding: 0.5rem 1.5rem;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 1px;
    }

    .pricing-header {
      text-align: center;
      margin-bottom: 1rem;
    }

    .pricing-header h3 {
      font-size: 1.55rem;
      font-weight: bold;
      margin-bottom: 0.5rem;
      color: #1f2937;
      line-height: 1.2;
    }

    .pricing-header p {
      color: #6b7280;
      margin-bottom: 1.5rem;
      font-size: 1rem;
      line-height: 1.5;
    }

    .price {
      font-size: 2.2rem;
      font-weight: bold;
      color: #0d9488;
    }

    .price-period {
      color: #6b7280;
      font-size: 0.95rem;
      font-weight: normal;
    }

    .pricing-features {
      flex: 1 1 auto;
      margin: 2rem 0;
    }

    .pricing-features li {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.9rem;
      color: #374151;
      font-size: 0.98rem;
    }

    .pricing-features .check {
      color: #10b981;
      font-size: 1.2rem;
    }

    .pricing-card a.btn {
      margin-top: auto;
      align-self: stretch;
      width: 100%;
    }

    /* Estilos para descrição do Grupo 1 */
    .group-description {
      background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
      border: 1px solid #d1fae5;
      border-radius: 12px;
      padding: 1.2rem;
      margin: 1rem 0;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
      z-index: 1;
    }

    .group-description::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #10b981, #059669, #047857);
    }

    .description-header {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1rem;
      color: #065f46;
      font-weight: 600;
      font-size: 0.95rem;
    }

    .description-header i {
      color: #10b981;
      font-size: 1.1rem;
    }

    .capital-options {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      margin-bottom: 1rem;
    }

    .capital-option {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.8rem;
      background: rgba(255, 255, 255, 0.7);
      border-radius: 8px;
      border: 1px solid #d1fae5;
      transition: all 0.2s ease;
    }

    .capital-option:hover {
      background: rgba(255, 255, 255, 0.9);
      transform: translateX(3px);
      box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
    }

    .capital-amount {
      font-weight: 700;
      color: #065f46;
      font-size: 0.95rem;
    }

    .capital-price {
      font-weight: 600;
      color: #10b981;
      font-size: 0.9rem;
    }

    .description-footer {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: #6b7280;
      font-size: 0.85rem;
      font-style: italic;
    }

    .description-footer i {
      color: #10b981;
      font-size: 0.9rem;
    }

    /* Estilos para descrição detalhada */
    .description-section {
      margin-bottom: 1.5rem;
    }

    .description-section h4 {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: #065f46;
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.8rem;
      border-bottom: 2px solid #d1fae5;
      padding-bottom: 0.5rem;
    }

    .description-section h4 i {
      color: #10b981;
      font-size: 1.1rem;
    }

    .capital-info {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
    }

    .capital-label {
      font-size: 0.8rem;
      color: #6b7280;
      font-weight: 500;
    }

    .info-list, .objectives-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .info-list li, .objectives-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      margin-bottom: 0.6rem;
      color: #374151;
      font-size: 0.9rem;
      line-height: 1.4;
    }

    .info-list li i {
      color: #10b981;
      font-size: 0.8rem;
      margin-top: 0.2rem;
      flex-shrink: 0;
    }

    .objectives-list li {
      padding-left: 1.2rem;
      position: relative;
    }

    .objectives-list li::before {
      content: '•';
      color: #10b981;
      font-weight: bold;
      position: absolute;
      left: 0;
    }

    /* Botão flutuante do WhatsApp */
    .whatsapp-float {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 1000;
    }

    .whatsapp-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      background: #25d366;
      color: white;
      border-radius: 50%;
      text-decoration: none;
      font-size: 30px;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
      transition: all 0.3s ease;
      animation: pulse 2s infinite;
    }

    .whatsapp-btn:hover {
      background: #128c7e;
      transform: scale(1.1);
      box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
      }
      50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
      }
      100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
      }
    }

    /* Responsivo para mobile */
    @media (max-width: 768px) {
      .whatsapp-float {
        bottom: 20px;
        right: 20px;
      }
      
      .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 28px;
      }
    }

    /* Garantir que a descrição apareça */
    .pricing-card .group-description {
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important;
    }

    /* News Section */
    .news {
      padding: 5rem 0;
    }

    .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .news-card {
      background: white;
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
    }

    .news-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }

    .news-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .news-content {
      padding: 1.5rem;
    }

    .news-content h3 {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
      color: #1f2937;
    }

    .news-content p {
      color: #6b7280;
      font-size: 0.9rem;
      margin-bottom: 1rem;
      line-height: 1.6;
    }

    .news-date {
      color: #9ca3af;
      font-size: 0.8rem;
    }

    /* Contact Section */
    .contact {
      padding: 5rem 0;
      background: #f8fafc;
    }

    .contact-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }

    .contact-form {
      background: white;
      padding: 2rem;
      border-radius: 1rem;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .contact-form h2 {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 1.5rem;
      color: #1f2937;
    }

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

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

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 0.75rem;
      border: 2px solid #e5e7eb;
      border-radius: 0.5rem;
      font-size: 1rem;
      transition: border-color 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #0d9488;
    }

    .contact-info {
      background: white;
      padding: 2rem;
      border-radius: 1rem;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      margin-bottom: 2rem;
    }

    .contact-info h3 {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
      color: #1f2937;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
      color: #374151;
    }

    .contact-item i {
      color: #0d9488;
      width: 20px;
    }

    .map-placeholder {
      background: #e5e7eb;
      height: 250px;
      border-radius: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #6b7280;
      font-size: 1.1rem;
    }

    /* Footer */
    .footer {
      background: #134e4a;
      color: white;
      padding: 4rem 0 2rem;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .footer-section h3 {
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 1rem;
    }

    .footer-section h4 {
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .footer-section p {
      color: #a7f3d0;
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }

    .footer-section ul {
      list-style: none;
    }

    .footer-section ul li {
      margin-bottom: 0.5rem;
    }

    .footer-section ul li a {
      color: #a7f3d0;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-section ul li a:hover {
      color: white;
    }

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

    .social-links a {
      color: #a7f3d0;
      font-size: 1.2rem;
      transition: color 0.3s ease;
    }

    .social-links a:hover {
      color: white;
    }

    .footer-bottom {
      border-top: 1px solid #0f766e;
      padding-top: 2rem;
      text-align: center;
      color: #a7f3d0;
    }

    @media (max-width: 1424px){
      .nav-menu a {
        font-size: 14px;
      }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .nav-menu {
        display: none;
      }

      .mobile-menu-btn {
        display: block;
      }

      .phone-info {
        display: none;
      }

      .hero {
        padding: 4rem 0 2rem;
        background-position: center;
        background-size: cover;
      }

      .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
      }

      .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        color: #134e4a; /* teal escuro para melhor contraste */
      }

      .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        line-height: 1.5;
        color: #1f2937; /* cinza-azulado escuro para legibilidade */
      }

      /* Card em efeito vidro (glassmorphism) */
      .hero-text {
        background: rgba(255, 255, 255, 0.22);
        backdrop-filter: blur(12px) saturate(140%);
        -webkit-backdrop-filter: blur(12px) saturate(140%);
        padding: 1rem 1rem 1.2rem;
        border-radius: 14px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        display: inline-block;
        margin: 0 auto;
        border: 1px solid rgba(255, 255, 255, 0.35);
      }

      .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1.5rem;
      }

      .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
      }

      .about-content {
        grid-template-columns: 1fr;
      }

      .contact-content {
        grid-template-columns: 1fr;
      }

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

      .pricing-card.popular {
        transform: none;
      }
    }

    @media (max-width: 480px) {
      .container {
        padding: 0 15px;
      }

      .hero {
        background-image: url('./img/banner1-mobile.png');
        padding: 3rem 0 2rem;
        background-position: center;
        background-size: cover;
      }

      .hero-text h1 {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
        color: #134e4a; /* mantém contraste no mobile pequeno */
      }

      .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.4;
        color: #1f2937;
      }

      .hero-text {
        background: rgba(255, 255, 255, 0.26);
        padding: 0.9rem 0.9rem 1.1rem;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.35);
      }

      .hero-buttons .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        max-width: 260px;
      }

      .section-header h2 {
        font-size: 2rem;
      }

      .about-text h2 {
        font-size: 2rem;
      }
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-in-up {
      animation: fadeInUp 0.6s ease-out;
    }

    /* Smooth scrolling */
    html {
      scroll-behavior: smooth;
    }

    .desktop-only {
      display: inline-flex;
    }

    @media (max-width: 768px) {
      .desktop-only {
        display: none !important;
      }

      .nav-menu {
        display: none;
      }

      .mobile-menu-btn {
        display: block;
      }
    }

    /* Sidebar styles */
    .sidebar-menu {
      position: fixed;
      top: 0;
      right: -300px;
      width: 280px;
      height: 100vh;
      background: linear-gradient(135deg, #0d9488 70%, #0f766e 100%);
      color: white;
      z-index: 2000;
      transition: right 0.35s cubic-bezier(0.77, 0, 0.18, 1);
      box-shadow: -8px 0 32px rgba(13, 148, 136, 0.18);
      padding: 0;
      display: flex;
      flex-direction: column;
      border-top-left-radius: 18px;
      border-bottom-left-radius: 18px;
      overflow: hidden;
    }

    .sidebar-menu.open {
      right: 0;
    }

    .sidebar-menu .sidebar-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.5rem 1.5rem 1rem 1.5rem;
      background: rgba(255, 255, 255, 0.07);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .sidebar-menu .sidebar-title {
      font-size: 1.3rem;
      font-weight: bold;
      letter-spacing: 1px;
      color: #fff;
    }

    .sidebar-menu .close-btn {
      background: none;
      border: none;
      color: #fff;
      font-size: 2rem;
      cursor: pointer;
      transition: color 0.2s;
    }

    .sidebar-menu .close-btn:hover {
      color: #a7f3d0;
    }

    .sidebar-menu ul {
      list-style: none;
      padding: 2rem 1.5rem;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .sidebar-menu ul li a {
      color: #fff;
      font-size: 1.1rem;
      text-decoration: none;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 0.8rem;
      padding: 0.7rem 1rem;
      border-radius: 8px;
      transition: background 0.18s, color 0.18s;
    }

    .sidebar-menu ul li a:hover {
      background: rgba(255, 255, 255, 0.10);
      color: #a7f3d0;
    }

    .sidebar-menu ul li i {
      font-size: 1.2rem;
      width: 22px;
      text-align: center;
    }

    .sidebar-menu ul li a:hover {
      background: rgba(255, 255, 255, 0.10);
      color: #a7f3d0;
    }

    .sidebar-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.3);
      z-index: 1999;
    }

    .sidebar-overlay.open {
      display: block;
    }

    /* Modal styles */
    .plan-modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.35);
      z-index: 3000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity 0.2s;
    }

    .plan-modal {
      background: #fff;
      border-radius: 1.2rem;
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
      padding: 2.5rem 2rem 2rem 2rem;
      max-width: 380px;
      width: 100%;
      position: relative;
      animation: fadeInModal 0.3s;
    }

    .plan-modal h2 {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
      color: #0d9488;
      text-align: center;
    }

    .plan-modal-close {
      position: absolute;
      top: 1.2rem;
      right: 1.2rem;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: #0d9488;
      cursor: pointer;
    }

    .plan-modal label {
      font-weight: 500;
      color: #1f2937;
      margin-bottom: 0.3rem;
      display: block;
    }

    .plan-modal input {
      width: 100%;
      padding: 0.7rem;
      border: 2px solid #e5e7eb;
      border-radius: 0.5rem;
      font-size: 1rem;
      margin-bottom: 1.1rem;
      transition: border-color 0.2s;
    }

    .plan-modal input:focus {
      border-color: #0d9488;
      outline: none;
    }

    @keyframes fadeInModal {
      from {
        opacity: 0;
        transform: translateY(40px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .documents-list {
      display: block;
      padding: 0;
      margin: 0 0 1rem 0;
    }

    .documents-list li {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      margin-bottom: 0.8rem;
      font-size: 1rem;
      line-height: 1.4;
      color: #374151;
      background: none;
      border: none;
      padding: 0;
    }

    .documents-list li i {
      color: #0d9488;
      font-size: 1.2rem;
      min-width: 22px;
      text-align: center;
      margin-top: 0;
    }

    .documents-list li strong {
      color: #1f2937;
      font-weight: 600;
      margin-right: 0.3rem;
    }