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

    :root {
      --bg: #ff5100;
      --panel: #111418;
      --muted: #ff5100;
      --accent: #7ab3ff;
      --white: #fff;
      --btn-grad: linear-gradient(90deg, #ff5100 0%, #ff5100 100%);
      --orange-primary: #ff8903;
      --orange-secondary: #ff5100;
      --text-light: #e6e8ea;
      --text-dark: #111317;
      --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.2);
      --glass-bg: rgba(255, 137, 3, 0.1);
      --glass-border: rgba(255, 137, 3, 0.2);
      --brand-1: #ff8903; /* laranja claro */
      --brand-2: #ff5100; /* laranja escuro */
      --brand-3: #e64a19; /* laranja mais escuro para contraste */
      --muted-light: #9ca3af;
      --card-shadow: 0 8px 24px rgba(9,30,66,0.08);
      --card-shadow-hover: 0 12px 32px rgba(9,30,66,0.12);
      --radius: 18px;
      --radius-sm: 12px;
      --max-width: 1200px;
      --gap: 20px;
      --section-padding: 60px 0;
      font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
      line-height: 1.6;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-secondary) 50%, var(--orange-primary) 100%);
      color: var(--text-light);
      overflow-x: hidden;
      width: 100%;
      max-width: 100vw;
    }

    /* Animated background elements */
    .bgAnimation {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: -1;
    }

    .floatingElement {
      position: absolute;
      border-radius: 50%;
      background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
      animation: float 6s ease-in-out infinite;
    }

    .floatingElement:nth-child(1) {
      width: 80px;
      height: 80px;
      top: 20%;
      left: 10%;
      animation-delay: 0s;
    }

    .floatingElement:nth-child(2) {
      width: 60px;
      height: 60px;
      top: 60%;
      right: 20%;
      animation-delay: 2s;
    }

    .floatingElement:nth-child(3) {
      width: 100px;
      height: 100px;
      bottom: 20%;
      left: 30%;
      animation-delay: 4s;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(180deg); }
    }

    /* Header */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 40px;
      background: var(--white);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
      width: 100%;
      max-width: 100vw;
    }

    .nav.scrolled {
      padding: 15px 36px;
      background: rgba(255, 255, 255, 0.95);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .brand .logo {
      width: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
    }

    .brand .title {
      align-items: center;
      gap: 10px;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--orange-primary);
      text-decoration: none;
    }

    .nav-right {
      margin-left: auto;
      display: flex;
      gap: 14px;
      align-items: center;
    }

    .nav-link {
      color: var(--orange-primary);
      font-size: 14px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      padding: 8px 16px;
      border-radius: 20px;
      position: relative;
      overflow: hidden;
    }

    .nav-link::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s ease;
    }

    .nav-link:hover::before {
      left: 100%;
    }

    .nav-link:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-2px);
    }

    .cta {
      background: linear-gradient(45deg, var(--orange-primary), var(--orange-secondary));
      color: var(--white);
      padding: 10px 22px;
      border-radius: 25px;
      box-shadow: 0 4px 15px rgba(255, 137, 3, 0.4);
      transition: all 0.3s ease;
      text-decoration: none;
      font-weight: 600;
      position: relative;
      overflow: hidden;
    }

    .cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s ease;
    }

    .cta:hover::before {
      left: 100%;
    }

    .cta:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(255, 137, 3, 0.6);
      background: linear-gradient(45deg, var(--orange-secondary), var(--orange-primary));
    }

    /* Hero */
    .hero {
      display: flex;
      align-items: center;
      gap: 60px;
      padding: 120px 8% 80px;
      min-height: 100vh;
      position: relative;
      width: 100%;
      max-width: 100vw;
    }

    /* Left big "logo" area */
    .hero-left {
      flex: 0 0 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: slideInLeft 0.8s ease-out;
    }

    /* SVG X-ish similar mark but adapted to Huddlesky */
    .mark-wrap {
      width: 320px;
      height: 320px;
      display: flex;
      align-items: center;
      justify-content: center;
      transform: translateY(0);
      transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.26, 1);
    }

    /* Right text area */
    .hero-right {
      flex: 1;
      max-width: 980px;
      padding-right: 6%;
      animation: slideInRight 0.8s ease-out;
    }

    .eyebrow {
      color: var(--orange-primary);
      font-weight: 600;
      font-size: 14px;
      margin-bottom: 14px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    h1 {
      margin: 0 0 22px 0;
      font-size: 63px;
      line-height: 0.98;
      font-weight: 800;
      letter-spacing: -1px;
      color: #e7eaec;
    }

    .desc {
      color: var(--text-light);
      max-width: 820px;
      font-size: 18px;
      margin-bottom: 28px;
      opacity: 0.9;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      align-items: center;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 32px;
      border-radius: 50px;
      font-weight: 700;
      cursor: pointer;
      border: 1px solid rgba(255, 255, 255, 0.06);
      text-decoration: none;
      color: var(--text-light);
      background: transparent;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      font-size: 16px;
      box-shadow: var(--shadow);
    }

    .btn:active {
      transform: translateY(1px);
    }

    .btn-primary {
      background: linear-gradient(45deg, var(--text-dark), #333);
      color: var(--white);
      border: none;
    }

    .btn-primary:hover {
      background: linear-gradient(45deg, #333, #555);
      transform: translateY(-3px);
      box-shadow: var(--shadow-hover);
    }

    .btn-secondary {
      padding: 16px 32px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      background: rgba(255, 255, 255, 0.1);
      color: var(--white);
      backdrop-filter: blur(10px);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: translateY(-3px);
      box-shadow: var(--shadow-hover);
    }

    /* Dark band below hero like in the image */
    .below-hero {
      margin-top: 36px;
      background: #23272a;
      color: var(--text-light);
      padding: 48px 8%;
      border-top: 1px solid rgba(255, 255, 255, 0.02);
      width: 100%;
      max-width: 100vw;
    }

    .below-hero h2 {
      margin: 0;
      font-size: 36px;
      font-weight: 800;
      letter-spacing: -0.6px;
      max-width: 800px;
    }

    /* Mobile menu */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 68px;
      left: 0;
      right: 0;
      background: white;
      padding: 20px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      z-index: 100;
      width: 100%;
      max-width: 100vw;
    }

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

    .mobile-nav-links {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .mobile-nav-links a {
      color: var(--text-dark);
      text-decoration: none;
      font-weight: 600;
      padding: 10px 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    @media (min-width: 769px) {
      .mobile-menu-toggle {
        display: none;
      }
    }

    /* Animations */
    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    .dev-content {
      background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
      color: #0f172a;
      width: 100%;
      max-width: 100vw;
      overflow-x: hidden;
    }

    .dev-content * { box-sizing: border-box; margin: 0; padding: 0; }
    
    /* Header aprimorado */
    .dev-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 24px;
      border-bottom: 1px solid rgba(15,23,42,0.04);
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    
    .dev-logo {
      display: flex;
      gap: 12px;
      align-items: center;
    }
    
    .dev-logo .mark {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
      color: white;
      font-weight: 700;
    }
    
    .dev-nav a {
      margin-left: 18px;
      color: var(--muted);
      text-decoration: none;
      font-weight: 600;
      transition: color 0.2s;
      position: relative;
    }
    
    .dev-nav a:hover {
      color: var(--brand-2);
    }
    
    .dev-nav a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
      transition: width 0.3s;
    }
    
    .dev-nav a:hover::after {
      width: 100%;
    }

    .dev-container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 20px;
      width: 100%;
    }

    /* HERO melhorado */
    .dev-hero {
      background: linear-gradient(90deg, rgba(255,137,3,0.12), rgba(255,81,0,0.08));
      border-radius: var(--radius);
      padding: 60px 40px;
      display: flex;
      align-items: center;
      gap: 40px;
      box-shadow: var(--card-shadow);
      margin: 40px 0;
      width: 100%;
    }
    
    .dev-hero .text {
      flex: 1;
    }
    
    .dev-hero h1 {
      margin: 0;
      font-size: 42px;
      letter-spacing: -0.02em;
      line-height: 1.2;
      background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .dev-hero p {
      color: var(--muted);
      margin-top: 16px;
      line-height: 1.6;
      font-size: 18px;
    }

    .dev-hero .actions {
      display: flex;
      gap: 12px;
      margin-top: 24px;
      flex-wrap: wrap;
    }
    
    .dev-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 20px;
      border-radius: var(--radius-sm);
      border: 0;
      cursor: pointer;
      font-weight: 700;
      transition: all 0.2s;
      text-decoration: none;
    }
    
    .dev-btn-primary {
      background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
      color: white;
      box-shadow: 0 4px 12px rgba(255, 137, 3, 0.3);
    }
    
    .dev-btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(255, 137, 3, 0.4);
    }
    
    .dev-btn-ghost {
      background: transparent;
      border: 2px solid rgba(15,23,42,0.06);
      color: var(--muted);
    }
    
    .dev-btn-ghost:hover {
      border-color: var(--brand-1);
      color: var(--brand-2);
    }

    /* GRID LINKS aprimorado */
    .quick-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 28px;
    }
    
    .quick {
      background: white;
      padding: 24px;
      border-radius: var(--radius-sm);
      box-shadow: var(--card-shadow);
      display: flex;
      align-items: flex-start;
      gap: 16px;
      transition: all 0.3s;
      cursor: pointer;
      border: 1px solid rgba(15,23,42,0.03);
      width: 100%;
    }
    
    .quick:hover {
      transform: translateY(-5px);
      box-shadow: var(--card-shadow-hover);
    }
    
    .quick svg {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      padding: 8px;
      background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
      color: white;
      flex-shrink: 0;
    }
    
    .quick .title {
      font-weight: 700;
      margin-bottom: 6px;
    }
    
    .quick .desc {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.4;
    }

    /* Seção de Produtos */
    .dev-section {
      padding: var(--section-padding);
    }
    
    .dev-section-title {
      margin-bottom: 30px;
      font-size: 32px;
      text-align: center;
      position: relative;
    }
    
    .dev-section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
      margin: 12px auto 0;
      border-radius: 2px;
    }
    
    .dev-section-subtitle {
      text-align: center;
      color: var(--muted);
      max-width: 700px;
      margin: 0 auto 40px;
      font-size: 18px;
    }
    
    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    
    .product-card {
      background: white;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--card-shadow);
      transition: all 0.3s;
      border: 1px solid rgba(15,23,42,0.03);
    }
    
    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--card-shadow-hover);
    }
    
    .product-icon {
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(255,137,3,0.1), rgba(255,81,0,0.05));
    }
    
    .product-icon svg {
      width: 40px;
      height: 40px;
      color: var(--brand-2);
    }
    
    .product-content {
      padding: 24px;
    }
    
    .product-content h3 {
      margin-bottom: 12px;
      font-size: 20px;
    }
    
    .product-content p {
      color: var(--muted);
      margin-bottom: 16px;
      line-height: 1.5;
    }
    
    .product-features {
      list-style: none;
      margin-top: 16px;
    }
    
    .product-features li {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
      color: var(--muted);
      font-size: 14px;
    }
    
    .product-features li::before {
      content: '✓';
      color: var(--brand-1);
      font-weight: bold;
    }
    
    .product-actions {
      display: flex;
      gap: 10px;
      margin-top: 20px;
    }
    
    .dev-btn-sm {
      padding: 10px 16px;
      font-size: 14px;
    }

    /* Notícias */
    .news-card {
      background: white;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--card-shadow);
      display: flex;
      flex-direction: column;
      transition: all 0.3s;
    }
    
    .news-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--card-shadow-hover);
    }
    
    .news-card .media {
      height: 360px;
      background: #eee;
      background-size: cover;
      background-position: center;
      transition: transform 0.5s;
    }
    
    .news-card:hover .media {
      transform: scale(1.03);
    }
    
    .news-card .content {
      padding: 24px;
    }
    
    .news-card h3 {
      margin: 0;
      font-size: 22px;
    }
    
    .news-card p {
      color: var(--muted);
      margin-top: 12px;
      line-height: 1.6;
    }

    /* Seção de Recursos */
    .resources-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    
    .resource-card {
      background: white;
      border-radius: var(--radius);
      padding: 30px;
      box-shadow: var(--card-shadow);
      transition: all 0.3s;
    }
    
    .resource-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--card-shadow-hover);
    }
    
    .resource-card h3 {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
      font-size: 20px;
    }
    
    .resource-card h3 svg {
      width: 24px;
      height: 24px;
      color: var(--brand-2);
    }
    
    .resource-card ul {
      list-style: none;
      margin-top: 16px;
    }
    
    .resource-card li {
      padding: 8px 0;
      border-bottom: 1px solid rgba(15,23,42,0.05);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .resource-card li:last-child {
      border-bottom: none;
    }
    
    .resource-card li a {
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s;
    }
    
    .resource-card li a:hover {
      color: var(--brand-2);
    }

    .dev-footer {
      color: var(--muted);
      font-size: 14px;
      text-align: center;
      padding-top: 40px;
      border-top: 1px solid rgba(15,23,42,0.05);
    }
    
    .dev-footer a {
      color: var(--muted);
      text-decoration: none;
      margin: 0 8px;
      transition: color 0.2s;
    }
    
    .dev-footer a:hover {
      color: var(--brand-2);
    }

    /* Estilos para dots do carousel */
    .carousel-dots {
      display: flex;
      gap: 8px;
      margin-top: 12px;
    }
    
    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #e6e7eb;
      cursor: pointer;
      transition: background 0.3s;
    }
    
    .dot.active {
      background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
    }
    
    /* Utilitários */
    .text-center {
      text-align: center;
    }
    
    .mt-40 {
      margin-top: 40px;
    }
    
    .mb-40 {
      margin-bottom: 40px;
    }

    .feature-section {
      padding: 80px 8%;
      background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
      color: var(--text-dark);
      width: 100%;
      max-width: 100vw;
    }

    .feature-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 60px;
      width: 100%;
    }

    .feature-text {
      flex: 1;
    }

    .feature-text h2 {
      font-size: 42px;
      font-weight: 800;
      margin-bottom: 24px;
      line-height: 1.2;
      background: linear-gradient(90deg, var(--orange-primary), var(--orange-secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .feature-text p {
      font-size: 18px;
      line-height: 1.6;
      margin-bottom: 32px;
      color: #4b5563;
    }

    .feature-actions {
      margin-top: 40px;
    }

    .feature-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 18px 36px;
      background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
      color: white;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 700;
      font-size: 18px;
      box-shadow: 0 8px 25px rgba(255, 137, 3, 0.3);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .feature-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s ease;
    }

    .feature-btn:hover::before {
      left: 100%;
    }

    .feature-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(255, 137, 3, 0.5);
      background: linear-gradient(135deg, var(--orange-secondary), var(--orange-primary));
    }

    .btn-icon {
      transition: transform 0.3s ease;
    }

    .feature-btn:hover .btn-icon {
      transform: translateX(4px);
    }

    .feature-note {
      margin-top: 16px;
      font-size: 14px;
      color: #6b7280;
      font-style: italic;
    }

    .feature-image {
      flex: 1;
      display: flex;
      width: 300px;
    }

    .feature-image img {
      width: 500px;
      border-radius: 12px;
      transition: transform 0.3s ease;
      margin-right: -100px;
    }

    .feature-image img:hover {
      transform: translateY(-5px);
    }

    /* ========== CORREÇÕES ESPECÍFICAS PARA MOBILE ========== */
    
    /* CORREÇÃO: Remover barra inferior e garantir que tudo fique centralizado */
    @media (max-width: 768px) {
      body, .nav, .hero, .below-hero, .dev-content, .feature-section {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
      }
      
      .nav {
        padding: 15px 20px;
        justify-content: space-between;
      }
      
      .brand {
        flex-shrink: 0;
      }
      
      .brand .title {
        font-size: 1.2rem;
      }
      
      .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        color: var(--orange-primary);
        font-size: 24px;
        cursor: pointer;
        flex-shrink: 0;
      }

      .nav-right {
        display: none;
      }

      .hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 100px 5% 40px;
        min-height: unset;
        gap: 30px;
      }

      .hero-left {
        order: 2;
        margin-top: 20px;
        flex: 0 0 auto;
      }

      .hero-right {
        order: 1;
        padding-right: 0;
        text-align: center;
      }

      h1 {
        font-size: 34px;
        text-align: center;
      }

      .hero-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
      }

      .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
      }
      
      .mark-wrap {
        width: 200px;
        height: 200px;
      }
      
      .dev-container {
        padding: 0 15px;
      }
      
      .dev-hero {
        margin: 20px 0;
        padding: 30px 20px;
        flex-direction: column;
        text-align: center;
      }
      
      .dev-section {
        padding: 40px 0;
      }
      
      .dev-section-title {
        font-size: 28px;
      }
      
      .dev-section-subtitle {
        font-size: 16px;
      }
      
      .quick-grid {
        grid-template-columns: 1fr;
      }
      
      .feature-section {
        padding: 60px 5%;
      }
      
      .feature-container {
        flex-direction: column;
        text-align: center;
      }
      
      .feature-image img {
        width: 100%;
        margin-right: 0;
      }
      
      .products-grid {
        grid-template-columns: 1fr;
      }
      
      .resources-grid {
        grid-template-columns: 1fr;
      }
    }
    
    @media (max-width: 480px) {
      .hero {
        padding: 100px 4% 30px;
      }
      
      .mark-wrap {
        width: 160px;
        height: 160px;
      }
      
      h1 {
        font-size: 28px;
      }
      
      .desc {
        font-size: 16px;
      }
      
      .btn {
        padding: 14px 24px;
        font-size: 14px;
      }
      
      .dev-hero {
        padding: 20px 15px;
      }
      
      .dev-hero h1 {
        font-size: 24px;
      }
      
      .dev-hero p {
        font-size: 16px;
      }
      
      .quick {
        padding: 18px;
      }
      
      .quick svg {
        width: 36px;
        height: 36px;
      }
      
      .feature-text h2 {
        font-size: 26px;
      }
      
      .feature-btn {
        padding: 14px 24px;
        font-size: 16px;
      }
      
      .below-hero h2 {
        font-size: 24px;
      }
      
      .product-content {
        padding: 20px;
      }
      
      .resource-card {
        padding: 20px;
      }
      
      .news-card .content {
        padding: 20px;
      }
    }
    
    /* CORREÇÃO: Ajustes específicos para elementos que estavam causando overflow */
    @media (max-width: 768px) {
      .dev-header {
        padding: 15px 20px;
      }
      
      .dev-logo .mark {
        width: 36px;
        height: 36px;
      }
      
      .dev-nav a {
        margin-left: 10px;
        font-size: 13px;
      }
      
      .dev-btn {
        padding: 12px 16px;
        font-size: 14px;
      }
      
      /* Garantir que elementos com largura fixa não causem overflow */
      .quick {
        width: 100%;
      }
      
      .feature-image img {
        max-width: 100%;
      }
    }
    
    @media (max-width: 480px) {
      .dev-header {
        padding: 12px 15px;
      }
      
      .dev-nav a {
        margin-left: 8px;
        font-size: 12px;
      }
      
      .dev-btn {
        padding: 10px 14px;
        font-size: 13px;
      }
    }

    /* CORREÇÃO: Ajustes para elementos de texto longo */
    @media (max-width: 768px) {
      .desc, .dev-hero p, .feature-text p, .product-content p, .resource-card p, .news-card p {
        font-size: 16px;
        line-height: 1.5;
        word-wrap: break-word;
      }
    }

    /* CORREÇÃO: Ajustes para elementos de grid */
    @media (max-width: 768px) {
      .products-grid, .resources-grid, .quick-grid {
        gap: 16px;
      }
    }

    /* CORREÇÃO: Ajustes para elementos de footer */
    @media (max-width: 768px) {
      .dev-footer {
        padding-top: 30px;
        font-size: 13px;
      }
    }

    /* CORREÇÃO: Ajustes para elementos de navegação mobile */
    @media (max-width: 768px) {
      .mobile-menu {
        top: 60px;
      }
    }

    /* CORREÇÃO: Ajustes para elementos de carousel */
    @media (max-width: 768px) {
      .news-card .media {
        height: 200px;
      }
      
      .news-card .content {
        padding: 18px;
      }
      
      .news-card h3 {
        font-size: 18px;
      }
    }

    /* CORREÇÃO: Ajustes para elementos de botão */
    @media (max-width: 768px) {
      .cta {
        padding: 8px 16px;
        font-size: 14px;
      }
    }

    /* subtle hover for mark */
    .mark-wrap:hover {
      transform: translateY(-6px) rotate(-1deg);
    }

    /* small utility */
    .muted {
      color: var(--white);
    }
