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

    :root {
      --primary: #ff8c00;
      --secondary: #ffc107;
      --accent: #ff6b6b;
      --light: #f8f9fa;
      --dark: #343a40;
      --text: #495057;
      --text-inverse: #f8f9fa;
      --success: #28a745;
    }

    body {
      font-family: 'Poppins', sans-serif;
      color: var(--text);
      background: linear-gradient(135deg, #f5f7fa 0%, #e4e7f1 100%);
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      color: var(--dark);
      line-height: 1.3;
    }

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

    .btn {
      display: inline-block;
      padding: 12px 24px;
      background: linear-gradient(to right, var(--primary), var(--secondary));
      color: white;
      border: none;
      border-radius: 50px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      box-shadow: 0 5px 20px rgba(255, 140, 0, 0.3);
      text-align: center;
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
    }

    .btn-outline {
      background: transparent;
      border: 2px solid var(--primary);
      color: var(--primary);
      box-shadow: none;
    }

    .btn-outline:hover {
      background: linear-gradient(to right, var(--primary), var(--secondary));
      color: white;
    }

    header {
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      padding: 15px 0;
    }

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

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      flex-shrink: 0;
    }

    .logo-icon {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 24px;
    }

    .logo-text {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 26px;
      color: var(--dark);
    }

    .logo-text span {
      background: linear-gradient(to right, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .nav-links {
      display: flex;
      gap: 30px;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--dark);
      font-weight: 500;
      font-size: 17px;
      transition: all 0.3s ease;
    }

    .nav-links a:hover {
      color: var(--primary);
    }

    .nav-buttons {
      display: flex;
      align-items: center;
      gap: 15px;
      flex-shrink: 1;
      justify-content: flex-end;
    }

    .shortener-section {
      padding: 180px 0 100px;
      text-align: center;
    }

    .shortener-container {
      background: white;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      max-width: 800px;
      margin: 0 auto;
    }

    .shortener-container h1 {
      font-size: 36px;
      margin-bottom: 10px;
    }

    .shortener-container p {
      font-size: 18px;
      color: #6c757d;
      margin-bottom: 30px;
    }

    .input-group {
      display: flex;
      border-radius: 50px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(255, 140, 0, 0.2);
    }

    #url-input {
      flex-grow: 1;
      border: none;
      padding: 18px 25px;
      font-size: 18px;
      outline: none;
    }

    #shorten-btn {
      border: none;
      background: var(--primary);
      color: white;
      padding: 0 30px;
      font-size: 18px;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    #shorten-btn:hover {
      background-color: #e67e00;
    }

    .result-container {
      margin-top: 30px;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.3s, transform 0.3s;
      height: 0;
      overflow: hidden;
      text-align: left;
    }

    .result-container.show {
      opacity: 1;
      transform: translateY(0);
      height: auto;
    }

    #result {
      background-color: var(--light);
      padding: 15px;
      border-radius: 8px;
      font-size: 18px;
      color: var(--primary);
      word-wrap: break-word;
      position: relative;
      padding-right: 50px;
      margin-bottom: 15px;
    }

    #copy-btn {
      position: absolute;
      top: 50%;
      right: 10px;
      transform: translateY(-50%);
      background: none;
      border: none;
      font-size: 20px;
      color: var(--secondary);
      cursor: pointer;
    }

    #tag-info {
        background-color: #fffbe6;
        border: 1px solid #ffecb3;
        padding: 15px;
        border-radius: 8px;
        font-size: 14px;
    }

    #tag-id-display {
        font-weight: bold;
        color: var(--primary);
    }

    .report-spam {
      background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
      padding: 4rem 0;
      border-top: 1px solid #ffcdd2;
    }
    .report-spam h2 {
      font-size: 1.75rem;
      font-weight: 700;
      color: #c62828;
      margin-bottom: 0.75rem;
      text-align: center;
    }
    .report-spam p {
      text-align: center;
      color: #666;
      font-size: 1rem;
      max-width: 600px;
      margin: 0 auto 1.5rem;
    }
    .report-spam-form {
      display: flex;
      gap: 0.5rem;
      max-width: 500px;
      margin: 0 auto;
    }
    .report-spam-form input {
      flex: 1;
      padding: 0.75rem 1rem;
      border: 1px solid #ffcdd2;
      border-radius: 8px;
      font-size: 1rem;
      outline: none;
      transition: border-color 0.2s;
    }
    .report-spam-form input:focus {
      border-color: #ef5350;
    }
    .report-spam-form button {
      background: #c62828;
      color: white;
      border: none;
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.2s;
      white-space: nowrap;
    }
    .report-spam-form button:hover {
      background: #b71c1c;
    }
    .report-spam-feedback {
      display: block;
      text-align: center;
      margin-top: 0.75rem;
      font-size: 0.9rem;
      font-weight: 500;
    }
    .report-spam-policy {
      font-size: 0.8rem !important;
      color: #999 !important;
      margin-top: 1rem !important;
    }
    .report-spam-form input[type="email"] {
      flex: 0 0 220px;
      padding: 0.75rem 1rem;
      border: 1px solid #ffcdd2;
      border-radius: 8px;
      font-size: 1rem;
      outline: none;
      transition: border-color 0.2s;
    }
    .report-spam-form input[type="email"]:focus,
    .report-spam-form input[type="text"]:focus {
      border-color: #ef5350;
    }
    @media (max-width: 576px) {
      .report-spam-form { flex-direction: column; }
      .report-spam-form input[type="email"] { flex: 1; }
    }


    .section {
      padding: 100px 0;
    }

    .section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 60px;
    }

    .section-title {
      font-size: 42px;
      margin-bottom: 20px;
    }

    .section-title span {
      background: linear-gradient(to right, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .section-subtitle {
      font-size: 20px;
      color: var(--text);
    }
    .section-subtitle-inverse {
      font-size: 20px;
      color: var(--text-inverse);
    }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .feature-card {
      background: white;
      border-radius: 20px;
      padding: 40px 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      text-align: center;
    }

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

    .feature-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 25px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      color: white;
    }

    .feature-title {
      font-size: 24px;
      margin-bottom: 15px;
    }

    .feature-desc {
      color: var(--text);
      margin-bottom: 20px;
    }

    .platform {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
      padding: 120px 0;
      position: relative;
      overflow: hidden;
    }

    .platform::before {
      content: '';
      position: absolute;
      width: 400px;
      height: 400px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 50%;
      top: -200px;
      right: -100px;
    }

    .platform::after {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 50%;
      bottom: -150px;
      left: -100px;
    }

    .platform-content {
      max-width: 600px;
      position: relative;
      z-index: 2;
    }

    .platform .section-title {
      color: white;
    }

    .platform .section-title span {
      -webkit-text-fill-color: white;
      background: none;
    }

    .platform-image {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 500px;
      border-radius: 20px;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
      border: 10px solid rgba(255, 255, 255, 0.1);
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
    }

    .testimonial-card {
      background: white;
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .testimonial-header {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
    }

    .testimonial-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 600;
      font-size: 20px;
    }

    .testimonial-name {
      font-weight: 600;
      font-size: 18px;
    }

    .testimonial-role {
      color: var(--primary);
      font-size: 14px;
    }

    .testimonial-text {
      font-style: italic;
      position: relative;
      padding-left: 20px;
    }

    .testimonial-text::before {
      content: '"';
      position: absolute;
      left: 0;
      top: -15px;
      font-size: 60px;
      color: var(--primary);
      opacity: 0.2;
      font-family: serif;
    }

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

    .pricing-card {
      background: white;
      border-radius: 20px;
      padding: 40px 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .pricing-card.popular {
      border: 2px solid var(--primary);
      transform: scale(1.05);
    }

    .popular-badge {
      position: absolute;
      top: 20px;
      right: -30px;
      background: var(--accent);
      color: white;
      padding: 5px 30px;
      transform: rotate(45deg);
      font-weight: 600;
      font-size: 14px;
    }

    .pricing-header {
      margin-bottom: 30px;
    }

    .pricing-title {
      font-size: 24px;
      margin-bottom: 10px;
    }

    .pricing-price {
      font-size: 48px;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 5px;
    }

    .pricing-period {
      color: var(--text);
    }

    .pricing-features {
      list-style: none;
      margin-bottom: 30px;
    }

    .pricing-features li {
      padding: 10px 0;
      border-bottom: 1px solid #eee;
    }

    .pricing-features li:last-child {
      border-bottom: none;
    }

    .cta {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
      padding: 100px 0;
      text-align: center;
    }

    .cta h2 {
      font-size: 48px;
      margin-bottom: 20px;
      color: white;
    }

    .cta p {
      font-size: 20px;
      max-width: 700px;
      margin: 0 auto 40px;
      opacity: 0.9;
    }

    .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    footer {
      background: var(--dark);
      color: white;
      padding: 80px 0 30px;
    }

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

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
      text-decoration: none;
    }

    .footer-logo .logo-icon {
      width: 40px;
      height: 40px;
      font-size: 18px;
    }

    .footer-logo .logo-text {
      color: white;
      font-size: 22px;
    }

    .footer-logo .logo-text span {
      -webkit-text-fill-color: white;
    }

    .footer-about {
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 20px;
    }

    .social-links {
      display: flex;
      gap: 15px;
    }

    .social-link {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 18px;
      transition: all 0.3s ease;
    }

    .social-link:hover {
      background: var(--primary);
      transform: translateY(-5px);
    }

    .footer-title {
      font-size: 20px;
      margin-bottom: 20px;
      color: white;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .footer-links a:hover {
      color: white;
      padding-left: 5px;
    }

    .copyright {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.5);
      font-size: 14px;
    }

    .drawer-icon {
      display: none;
      font-size: 28px;
      color: var(--primary);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .drawer-icon:hover {
      color: var(--secondary);
    }

    .drawer-menu {
      position: fixed;
      top: 0;
      right: -300px;
      width: 300px;
      height: 100%;
      background: white;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
      z-index: 1001;
      transition: right 0.3s ease-in-out;
      display: flex;
      flex-direction: column;
    }

    .drawer-menu.active {
      right: 0;
    }

    .drawer-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      border-bottom: 1px solid #eee;
    }

    .close-drawer-btn {
      background: none;
      border: none;
      font-size: 24px;
      color: var(--dark);
      cursor: pointer;
    }

    .drawer-content {
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .drawer-link {
      text-decoration: none;
      color: var(--dark);
      font-weight: 500;
      font-size: 18px;
      padding: 10px 0;
      transition: color 0.3s ease;
    }

    .drawer-link:hover {
      color: var(--primary);
    }

    .drawer-buttons {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 20px;
    }

    .drawer-buttons .btn {
      width: 100%;
    }

    .recent-links-cards-container {
        display: none;
    }
    .recent-link-card {
        background: #ffffff;
        border-radius: 10px;
        padding: 15px;
        margin-bottom: 15px;
        border: 1px solid #e9ecef;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    .recent-link-card-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid #e1e5eb;
        font-size: 14px;
    }
    .recent-link-card-item:last-child {
        border-bottom: none;
    }
    .recent-link-card-label {
        font-weight: 600;
        color: #495057;
    }
    .recent-link-card-value {
        color: #6c757d;
        text-align: right;
        word-break: break-all;
    }
    .recent-link-card-value a {
        color: var(--primary);
        font-weight: 500;
        text-decoration: none;
    }

    @media (max-width: 992px) {
      .platform-image {
        display: none;
      }
    }

    @media (max-width: 768px) {
      .input-group {
        flex-direction: column;
        gap: 15px;
        border-radius: 0;
        box-shadow: none;
        overflow: visible;
      }
      #url-input {
        border-radius: 50px;
        text-align: center;
        box-shadow: 0 5px 20px rgba(255, 140, 0, 0.2);

      }
      #shorten-btn {
        border-radius: 50px;
        box-shadow: 0 5px 20px rgba(255, 140, 0, 0.2);
      }
      .nav-links {
        display: none;
      }
      .cta-buttons {
        display: block;
        justify-content: center;
        gap: 2px;
      }
      .section-title {
        font-size: 36px;
      }
      .nav-buttons {
        display: none !important;
      }

      .nav-links {
        display: none;
      }

      .drawer-icon {
        display: block;
      }

      .links-table-container {
          display: none;
      }
      .recent-links-cards-container {
          display: block;
      }
    }

    /* --- Banner de Criação de Conta --- */
    .create-account-banner {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: 16px;
      padding: 30px;
      margin: 30px auto;
      max-width: 800px;
      text-align: center;
      color: white;
      box-shadow: 0 8px 25px rgba(255, 140, 0, 0.2);
      position: relative;
      animation: slideUp 0.5s ease;
    }
    .create-account-banner h3 {
      font-size: 22px;
      margin-bottom: 10px;
      color: white;
    }
    .create-account-banner p {
      font-size: 15px;
      margin-bottom: 20px;
      opacity: 0.95;
    }
    .create-account-banner .banner-btns {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .create-account-banner .btn-white {
      background: white;
      color: var(--primary);
      border: none;
    }
    .create-account-banner .btn-white:hover {
      background: #f5f5f5;
      transform: translateY(-2px);
    }
    .create-account-banner .btn-outline-white {
      background: transparent;
      color: white;
      border: 2px solid white;
    }
    .create-account-banner .btn-outline-white:hover {
      background: rgba(255,255,255,0.1);
      transform: translateY(-2px);
    }
    .create-account-banner .banner-dismiss {
      position: absolute;
      top: 10px;
      right: 15px;
      background: none;
      border: none;
      color: white;
      font-size: 20px;
      cursor: pointer;
      opacity: 0.7;
    }
    .create-account-banner .banner-dismiss:hover {
      opacity: 1;
    }

    /* --- Botões de Compartilhar --- */
    .share-buttons {
      display: flex;
      gap: 10px;
      margin-top: 15px;
      flex-wrap: wrap;
    }
    .share-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 18px;
      border: none;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .share-btn:hover {
      transform: translateY(-2px);
    }
    .share-btn-whatsapp {
      background: #25D366;
      color: white;
    }
    .share-btn-twitter {
      background: #1DA1F2;
      color: white;
    }
    .share-btn-facebook {
      background: #1877F2;
      color: white;
    }
    .share-btn-telegram {
      background: #0088cc;
      color: white;
    }

    /* --- Modal de Captura de Email --- */
    .email-modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s, visibility 0.4s;
    }
    .email-modal-overlay.visible {
      opacity: 1;
      visibility: visible;
    }
    .email-modal {
      background: white;
      border-radius: 20px;
      padding: 40px 35px 35px;
      width: 90%;
      max-width: 440px;
      text-align: center;
      box-shadow: 0 20px 60px rgba(0,0,0,0.2);
      transform: scale(0.9);
      transition: transform 0.4s;
      position: relative;
    }
    .email-modal-overlay.visible .email-modal {
      transform: scale(1);
    }
    .email-modal-icon {
      font-size: 48px;
      color: var(--primary);
      margin-bottom: 15px;
    }
    .email-modal h3 {
      font-size: 22px;
      margin-bottom: 8px;
      color: var(--dark);
    }
    .email-modal p {
      color: #666;
      font-size: 14px;
      margin-bottom: 20px;
      line-height: 1.5;
    }
    .email-modal .modal-input-group {
      display: flex;
      gap: 10px;
      margin-bottom: 15px;
    }
    .email-modal .modal-input-group input {
      flex: 1;
      padding: 14px 18px;
      border: 2px solid #e0e0e0;
      border-radius: 12px;
      font-size: 15px;
      outline: none;
      transition: border-color 0.3s;
    }
    .email-modal .modal-input-group input:focus {
      border-color: var(--primary);
    }
    .email-modal .modal-input-group button {
      padding: 14px 24px;
      background: linear-gradient(to right, var(--primary), var(--secondary));
      color: white;
      border: none;
      border-radius: 12px;
      font-weight: 600;
      font-size: 15px;
      cursor: pointer;
      white-space: nowrap;
      transition: all 0.3s ease;
    }
    .email-modal .modal-input-group button:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(255,140,0,0.3);
    }
    .email-modal .modal-dismiss {
      background: none;
      border: none;
      color: #999;
      cursor: pointer;
      font-size: 14px;
      margin-top: 5px;
    }
    .email-modal .modal-dismiss:hover {
      color: #333;
    }
    .email-modal .modal-close-x {
      position: absolute;
      top: 12px;
      right: 16px;
      background: none;
      border: none;
      font-size: 24px;
      color: #aaa;
      cursor: pointer;
    }
    .email-modal .modal-close-x:hover {
      color: #333;
    }
    .email-modal .modal-feedback {
      font-size: 14px;
      margin-top: 10px;
      min-height: 20px;
    }
    .email-modal .modal-feedback.success {
      color: var(--success);
    }
    .email-modal .modal-feedback.error {
      color: var(--accent);
    }

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