/* Page-specific styles extracted from 01_ENTRADA_HTML */
/* --- sobre.html --- */
.page-hero {
      padding: 200px 0 120px;
      background: url('../images/videoback/videoback_000.jpg') center/cover no-repeat;
      position: relative;
      overflow: hidden;
    }
    .page-hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(15, 17, 23, 0.8);
      z-index: 1;
    }
    .page-hero .container { position: relative; z-index: 2; }
    .page-hero-tag {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 8px 16px;
      background: rgba(245,130,13,0.08);
      border: 1px solid rgba(245,130,13,0.2);
      border-radius: 100px;
      color: var(--accent);
      font-size: 0.85rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.1em;
      margin-bottom: 24px;
    }
    .page-hero .hero-title {
      font-family: var(--font-heading);
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 900;
      letter-spacing: -0.03em;
      line-height: 1.1;
      max-width: 900px;
      margin: 0 auto 24px;
      color: #fff;
    }
    .page-hero .hero-title .highlight {
      background: linear-gradient(90deg, #F5820D, #FFD166, #F5820D);
      background-size: 200% auto;
      color: transparent;
      -webkit-background-clip: text;
      background-clip: text;
      filter: drop-shadow(0 0 20px rgba(245, 130, 13, 0.3));
      display: inline-block;
    }
    .page-hero p {
      color: var(--text-muted);
      font-size: 1.15rem;
      max-width: 550px;
      line-height: 1.7;
    }
    /* About Split */
    .about-split {
      padding: 100px 0;
      background: var(--bg-panel);
    }
    .split-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .split-image-wrap {
      position: relative;
    }
    .split-image-wrap img {
      width: 100%;
      border-radius: 16px;
      object-fit: cover;
      aspect-ratio: 4/3;
    }
    .split-image-accent {
      position: absolute;
      width: 200px; height: 200px;
      background: var(--accent);
      opacity: 0.1;
      border-radius: 50%;
      top: -30px; right: -30px;
      filter: blur(60px);
    }
    .split-stat-card {
      position: absolute;
      bottom: -20px; left: -20px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 20px 28px;
      display: flex;
      flex-direction: column;
    }
    .split-stat-card .stat-val {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      font-weight: 900;
      color: var(--accent);
      line-height: 1;
    }
    .split-stat-card .stat-lbl {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-top: 4px;
    }
    .split-content h2 {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      font-weight: 900;
      letter-spacing: -0.02em;
      line-height: 1.1;
      margin-bottom: 20px;
    }
    .split-content h2 span { color: var(--accent); }
    .split-content p {
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 16px;
      font-size: 1.05rem;
    }
    .check-list { list-style: none; margin: 28px 0; display: flex; flex-direction: column; gap: 14px; }
    .check-list li { display: flex; align-items: center; gap: 12px; color: var(--text-main); font-weight: 500; }
    .check-list li i { color: var(--accent); font-size: 1.1rem; }
    /* Values */
    .values-section { padding: 100px 0; background: var(--bg); }
    .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
    .value-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 40px 32px;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    .value-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s;
    }
    .value-card:hover { transform: translateY(-5px); border-color: rgba(245,130,13,0.3); }
    .value-card:hover::before { transform: scaleX(1); }
    .value-icon { font-size: 2.2rem; color: var(--accent); margin-bottom: 20px; }
    .value-card h3 {
      font-family: var(--font-heading);
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .value-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
    /* Numbers Strip */
    .numbers-strip { padding: 80px 0; background: var(--bg-panel); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
    .number-item { text-align: center; padding: 20px; border-right: 1px solid var(--border); }
    .number-item:last-child { border-right: none; }
    .number-val {
      display: inline-block;
      font-family: var(--font-heading);
      font-size: 3.5rem;
      font-weight: 900;
      color: var(--accent);
      line-height: 1;
      margin-bottom: 10px;
    }
    .number-lbl { font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
    /* Team */
    .team-section { padding: 100px 0; background: var(--bg); }
    .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
    .team-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s;
    }
    .team-card:hover { transform: translateY(-5px); border-color: rgba(245,130,13,0.3); }
    .team-card-img {
      aspect-ratio: 1/1;
      overflow: hidden;
      background: var(--bg-panel);
      display: flex; align-items: center; justify-content: center;
      font-size: 5rem; color: var(--accent);
    }
    .team-card-img img { width: 100%; height: 100%; object-fit: cover; }
    .team-card-info { padding: 24px; }
    .team-card-info h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
    .team-card-info span { color: var(--accent); font-size: 0.9rem; font-weight: 600; display: block; margin-bottom: 12px; }
    .team-card-info p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
    /* CTA Strip */
    .sobre-cta {
      padding: 100px 0;
      background-color: var(--bg-panel);
      background-image:
        radial-gradient(circle at center, rgba(245,130,13,0.15) 0%, transparent 75%),
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 100%, 25px 25px, 25px 25px;
      text-align: center;
    }
    .sobre-cta h2 { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 900; margin-bottom: 16px; }
    .sobre-cta h2 span { color: var(--accent); }
    .sobre-cta p { color: var(--text-muted); max-width: 550px; margin: 0 auto 40px; font-size: 1.05rem; }
    .sobre-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    @media (max-width: 900px) {
      .split-grid { grid-template-columns: 1fr; gap: 50px; }
      .values-grid, .team-grid { grid-template-columns: 1fr; }
      .numbers-grid { grid-template-columns: repeat(2, 1fr); }
      .number-item:nth-child(2) { border-right: none; }
      .split-stat-card { position: static; margin-top: 20px; display: inline-flex; }
    }

/* --- servicos.html --- */
.page-hero { padding: 200px 0 100px; position: relative; overflow: hidden; }
    .page-hero-tag { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(245,130,13,0.08); border: 1px solid rgba(245,130,13,0.2); border-radius: 100px; color: var(--accent); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px; }
    .page-hero .hero-title {
      font-family: var(--font-heading);
      font-size: clamp(2.2rem, 5vw, 4rem);
      font-weight: 900;
      letter-spacing: -0.03em;
      line-height: 1.1;
      margin: 0 auto 24px;
      color: #fff;
    }
    .page-hero .hero-title .highlight {
      background: linear-gradient(90deg, #F5820D, #FFD166, #F5820D);
      background-size: 200% auto;
      color: transparent;
      -webkit-background-clip: text;
      background-clip: text;
      filter: drop-shadow(0 0 20px rgba(245, 130, 13, 0.3));
      display: inline-block;
    }
    .page-hero .hero-desc { color: var(--text-muted); font-size: 1.15rem; max-width: 700px; margin: 0 auto; line-height: 1.7; }

    .services-main-grid { padding: 100px 0; background: var(--bg-panel); }
    .srv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 50px; }
    .srv-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 50px; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 20px; text-decoration: none; color: inherit; }
    .srv-item::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(245,130,13,0.05) 0%, transparent 50%); opacity: 0; transition: opacity 0.4s; }
    .srv-item:hover { transform: translateY(-10px); border-color: rgba(245,130,13,0.3); box-shadow: 0 30px 60px rgba(0,0,0,0.3); }
    .srv-item:hover::before { opacity: 1; }
    .srv-item-icon { width: 60px; height: 60px; background: rgba(245,130,13,0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--accent); transition: all 0.3s; }
    .srv-item:hover .srv-item-icon { background: var(--accent); color: #000; transform: scale(1.1) rotate(5deg); }
    .srv-item h3 { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; color: #fff; min-height: 2.6em; line-height: 1.25; }
    .sec-header.text-center .sec-desc { margin-left: auto; margin-right: auto; text-align: center; }
    .srv-item p { color: var(--text-muted); line-height: 1.7; font-size: 1.05rem; }
    .srv-item-link { font-weight: 700; color: var(--accent); display: flex; align-items: center; gap: 8px; margin-top: auto; font-size: 0.95rem; }
    .srv-item-link i { transition: transform 0.3s; }
    .srv-item:hover .srv-item-link i { transform: translateX(5px); }

    .methodology { padding: 100px 0; }
    .meth-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 60px; }
    .meth-card { text-align: center; padding: 30px; background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 16px; position: relative; }
    .meth-num { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); width: 40px; height: 40px; background: var(--accent); color: #000; display: flex; align-items: center; justify-content: center; font-weight: 900; border-radius: 50%; font-size: 1.1rem; box-shadow: 0 0 20px rgba(245,130,13,0.4); }
    .meth-card h4 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; margin: 20px 0 10px; color: #fff; }
    .meth-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

    @media (max-width: 992px) {
      .srv-grid { grid-template-columns: 1fr; }
      .meth-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    }
    @media (max-width: 600px) {
      .meth-grid { grid-template-columns: 1fr; }
    }

/* --- portfolio.html --- */
/* Page Hero */
    .page-hero {
      padding: 180px 0 100px;
      background: url('../images/videoback/videoback_000.jpg') center/cover no-repeat;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .page-hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(15, 17, 23, 0.7);
      z-index: 1;
    }
    .page-hero .container {
      position: relative;
      z-index: 2;
    }
    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 0%, rgba(245, 130, 13, 0.08), transparent 60%);
      pointer-events: none;
    }
    .page-hero .hero-title {
      font-family: var(--font-heading);
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 900;
      letter-spacing: -0.03em;
      line-height: 1.1;
      margin-bottom: 24px;
      color: #fff;
    }
    .page-hero .hero-title .highlight {
      background: linear-gradient(90deg, #F5820D, #FFD166, #F5820D);
      background-size: 200% auto;
      color: transparent;
      -webkit-background-clip: text;
      background-clip: text;
      filter: drop-shadow(0 0 20px rgba(245, 130, 13, 0.3));
      display: inline-block;
    }
    .page-hero p {
      color: var(--text-muted);
      max-width: 600px;
      margin: 0 auto;
      font-size: 1.1rem;
    }

    .portfolio-archive {
      padding: 80px 0;
      background: var(--bg-panel);
      min-height: 100vh;
    }
    
    .portfolio-filters {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 40px;
      justify-content: center;
    }
    .filter-btn {
      padding: 10px 24px;
      border-radius: 100px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      color: var(--text-muted);
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .filter-btn:hover {
      background: rgba(255, 255, 255, 0.05);
      color: var(--text-main);
    }
    .filter-btn.active {
      background: var(--accent);
      color: #000;
      border-color: var(--accent);
      box-shadow: 0 4px 15px rgba(245, 130, 13, 0.3);
    }

    .port-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }
    .port-item {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border);
      aspect-ratio: 16/10;
      animation: fadeInPort 0.5s ease forwards;
    }
    .port-item.hide {
      display: none;
    }
    @keyframes fadeInPort {
      from { opacity: 0; transform: scale(0.95); }
      to { opacity: 1; transform: scale(1); }
    }
    .port-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
      filter: grayscale(40%) contrast(1.1);
    }
    .port-item:hover img {
      transform: scale(1.05);
      filter: grayscale(0) contrast(1.1);
    }
    .port-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(11, 13, 18, 0.9) 0%, rgba(11, 13, 18, 0.2) 60%, transparent 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 32px;
    }
    .port-tag {
      font-size: 0.75rem;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.15em;
      margin-bottom: 8px;
      font-weight: 700;
    }
    .port-title {
      font-family: var(--font-heading);
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--text-main);
    }
    a.port-item {
      display: block;
      text-decoration: none;
      color: inherit;
      cursor: pointer;
    }
    .port-link-hint {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 12px;
      font-size: 0.85rem;
      font-weight: 600;
      color: #fff;
      opacity: 0.85;
      transition: opacity 0.2s ease;
    }
    a.port-item:hover .port-link-hint {
      opacity: 1;
    }
    
    @media (max-width: 768px) {
      .port-grid {
        grid-template-columns: 1fr;
      }
    }

/* --- blog.html --- */
/* Page Hero */
    .page-hero {
      padding: 180px 0 100px;
      background: url('../images/videoback/videoback_000.jpg') center/cover no-repeat;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .page-hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(15, 17, 23, 0.7);
      z-index: 1;
    }
    .page-hero .container {
      position: relative;
      z-index: 2;
    }
    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 0%, rgba(245, 130, 13, 0.08), transparent 60%);
      pointer-events: none;
    }
    .page-hero .hero-title {
      font-family: var(--font-heading);
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 900;
      letter-spacing: -0.03em;
      line-height: 1.1;
      margin-bottom: 24px;
      color: #fff;
    }
    .page-hero .hero-title .highlight {
      background: linear-gradient(90deg, #F5820D, #FFD166, #F5820D);
      background-size: 200% auto;
      color: transparent;
      -webkit-background-clip: text;
      background-clip: text;
      filter: drop-shadow(0 0 20px rgba(245, 130, 13, 0.3));
      display: inline-block;
    }
    .page-hero p {
      color: var(--text-muted);
      max-width: 600px;
      margin: 0 auto;
      font-size: 1.1rem;
    }

    /* Featured Post */
    .featured-post {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 0;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      margin-bottom: 60px;
    }
    .featured-post-image {
      position: relative;
      min-height: 350px;
      overflow: hidden;
    }
    .featured-post-image img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }
    .featured-post:hover .featured-post-image img {
      transform: scale(1.03);
    }
    .featured-post-content {
      padding: 50px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .featured-post-category {
      color: var(--accent);
      font-weight: 700;
      text-transform: uppercase;
      font-size: 0.85rem;
      letter-spacing: 0.1em;
      margin-bottom: 20px;
    }
    .featured-post-content h2 {
      font-family: var(--font-heading);
      font-size: 2rem;
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .featured-post-content p {
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 30px;
    }
    .featured-post-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: auto;
    }
    .featured-post-meta span {
      color: var(--text-muted);
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    /* Blog Filters */
    .blog-archive-filters {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 30px;
      margin-bottom: 40px;
      border-bottom: 1px solid var(--border);
    }
    .blog-archive-filters .filter-group {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }
    .blog-search-input {
      padding: 10px 20px 10px 40px;
      border-radius: 100px;
      border: 1px solid var(--border);
      background: var(--bg-card);
      color: var(--text-main);
      font-size: 0.9rem;
      width: 250px;
      outline: none;
      transition: border-color 0.3s;
    }
    .blog-search-input:focus {
      border-color: var(--accent);
    }
    .blog-search-wrapper {
      position: relative;
    }
    .blog-search-wrapper i {
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-muted);
    }

    /* Archive Grid */
    .blog-archive-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 30px;
    }

    /* Pagination */
    .pagination {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 60px;
    }
    .page-btn {
      width: 44px; height: 44px;
      border-radius: 8px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      color: var(--text-main);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s;
      font-weight: 600;
    }
    .page-btn.active, .page-btn:hover {
      background: var(--accent);
      color: #000;
      border-color: var(--accent);
    }

    /* Newsletter CTA */
    .newsletter-cta {
      background-color: var(--bg-panel);
      background-image:
        radial-gradient(circle at center, rgba(245, 130, 13, 0.15) 0%, transparent 75%),
        linear-gradient(to right, var(--bg-panel) 0%, transparent 15%, transparent 85%, var(--bg-panel) 100%),
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
      background-size: 100% 100%, 100% 100%, 25px 25px, 25px 25px;
      padding: 80px 0;
      text-align: center;
    }
    .newsletter-cta h2 {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      font-weight: 900;
      margin-bottom: 15px;
    }
    .newsletter-cta p {
      color: var(--text-muted);
      max-width: 600px;
      margin: 0 auto 30px;
    }
    .newsletter-form {
      display: flex;
      gap: 12px;
      max-width: 500px;
      margin: 0 auto;
      flex-wrap: wrap;
      justify-content: center;
    }
    .newsletter-form input {
      flex: 1;
      min-width: 250px;
      padding: 16px 24px;
      border-radius: 100px;
      border: 1px solid var(--border);
      background: var(--bg-card);
      color: var(--text-main);
      outline: none;
    }
    .newsletter-form input:focus {
      border-color: var(--accent);
    }

    @media (max-width: 900px) {
      .featured-post {
        grid-template-columns: 1fr;
      }
      .featured-post-image { min-height: 250px; }
      .featured-post-content { padding: 30px; }
      .blog-archive-filters {
        flex-direction: column;
        align-items: flex-start;
      }
      .blog-search-input { width: 100%; }
    }

/* --- blog-single.html --- */
/* Reading Progress Bar */
    .progress-container {
      position: fixed;
      top: 0;
      z-index: 2000;
      width: 100%;
      height: 4px;
      background: transparent;
    }
    .progress-bar {
      height: 4px;
      background: var(--accent);
      width: 0%;
      box-shadow: 0 0 10px rgba(245, 130, 13, 0.5);
    }

    /* Post Hero */
    .post-hero {
      padding: 200px 0 100px;
      position: relative;
      overflow: hidden;
      color: white;
      background-image: url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?q=80&w=2070&auto=format&fit=crop');
      background-size: cover;
      background-position: center;
    }
    .post-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(11, 13, 18, 0.75) 0%,
        rgba(11, 13, 18, 0.85) 60%,
        rgba(11, 13, 18, 0.95) 100%
      );
      pointer-events: none;
      z-index: 0;
    }
    .post-hero .container {
      position: relative;
      z-index: 2;
    }
    .post-header-content {
      max-width: 840px;
      margin: 0 auto;
      text-align: center;
    }
    .post-breadcrumb {
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-size: 0.9rem;
      color: rgba(255,255,255,0.5);
    }
    .post-breadcrumb a {
      color: rgba(255,255,255,0.5);
      display: flex;
      align-items: center;
      gap: 5px;
      transition: color 0.3s;
    }
    .post-breadcrumb a:hover { color: var(--accent); }
    .post-category-badge {
      display: inline-block;
      padding: 8px 16px;
      background: rgba(245, 130, 13, 0.15);
      border: 1px solid rgba(245, 130, 13, 0.3);
      color: var(--accent);
      border-radius: 100px;
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 24px;
    }
    .post-title-main {
      font-family: var(--font-heading);
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      line-height: 1.1;
      font-weight: 900;
      color: #ffffff;
      margin-bottom: 30px;
      letter-spacing: -0.03em;
    }
    .post-title-main .highlight {
      background: linear-gradient(90deg, #F5820D, #FFD166, #F5820D);
      background-size: 200% auto;
      color: transparent;
      -webkit-background-clip: text;
      background-clip: text;
      filter: drop-shadow(0 0 20px rgba(245, 130, 13, 0.3));
      display: inline-block;
    }
    .post-meta {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 24px;
      color: rgba(255,255,255,0.6);
      font-size: 0.95rem;
      flex-wrap: wrap;
    }
    .post-meta-item {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    /* Post Body */
    .post-body-section {
      padding: 80px 0;
      background: var(--bg-panel);
    }
    .post-article {
      max-width: 840px;
      margin: 0 auto;
      font-size: 1.15rem;
      line-height: 1.85;
      color: var(--text-muted);
    }
    .post-article h2 {
      font-family: var(--font-heading);
      font-size: 2rem;
      color: var(--text-main);
      margin: 50px 0 20px;
      font-weight: 800;
    }
    .post-article h3 {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      color: var(--text-main);
      margin: 40px 0 15px;
      font-weight: 700;
    }
    .post-article p { margin-bottom: 24px; }
    .post-article ul, .post-article ol {
      margin: 24px 0;
      padding-left: 24px;
    }
    .post-article li { margin-bottom: 12px; }
    .post-article blockquote {
      margin: 50px 0;
      padding: 40px;
      background: var(--bg-card);
      border-left: 5px solid var(--accent);
      border-radius: 0 12px 12px 0;
      font-style: italic;
      font-size: 1.4rem;
      color: var(--text-main);
      line-height: 1.5;
    }
    .post-article .featured-img {
      width: 100%;
      border-radius: 16px;
      margin-bottom: 50px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    }

    /* Internal CTA */
    .post-cta-box {
      background-color: var(--bg-panel);
      background-image:
        radial-gradient(circle at center, rgba(245, 130, 13, 0.15) 0%, transparent 75%),
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
      background-size: 100% 100%, 25px 25px, 25px 25px;
      border-radius: 16px;
      padding: 60px;
      color: white;
      text-align: center;
      margin: 60px 0;
    }
    .post-cta-box h4 {
      font-family: var(--font-heading);
      font-size: 2rem;
      color: #fff;
      margin-bottom: 15px;
      font-weight: 900;
    }
    .post-cta-box p {
      color: rgba(255,255,255,0.7);
      margin-bottom: 30px;
    }

    /* Author Box */
    .author-card {
      margin-top: 80px;
      padding-top: 40px;
      border-top: 1px solid var(--border);
      display: flex;
      gap: 30px;
      align-items: flex-start;
    }
    .author-avatar {
      width: 100px; height: 100px;
      border-radius: 16px;
      overflow: hidden;
      flex-shrink: 0;
      background: var(--bg-card);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
      color: var(--accent);
    }
    .author-info h4 {
      font-family: var(--font-heading);
      font-size: 1.3rem;
      margin-bottom: 8px;
      color: var(--text-main);
    }
    .author-info p {
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 1.6;
    }

    /* Newsletter Box */
    .post-newsletter {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 50px;
      margin-top: 60px;
      text-align: center;
    }
    .post-newsletter h3 {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      margin-bottom: 12px !important;
      color: var(--text-main);
    }
    .post-newsletter p {
      color: var(--text-muted);
      margin-bottom: 24px !important;
    }
    .post-newsletter form {
      display: flex;
      gap: 10px;
      max-width: 500px;
      margin: 0 auto;
      flex-wrap: wrap;
      justify-content: center;
    }
    .post-newsletter input {
      flex: 1;
      min-width: 200px;
      padding: 14px 24px;
      border-radius: 100px;
      border: 1px solid var(--border);
      background: var(--bg);
      color: var(--text-main);
      outline: none;
    }
    .post-newsletter input:focus { border-color: var(--accent); }

    /* Social Share (Floating) */
    .social-share {
      position: fixed;
      left: 40px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 100;
    }
    .share-btn {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--bg-card);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      transition: all 0.3s;
      cursor: pointer;
    }
    .share-btn:hover {
      background: var(--accent);
      color: #000;
      border-color: var(--accent);
      transform: scale(1.1);
    }

    /* Related Posts */
    .related-posts {
      padding: 80px 0;
      background: var(--bg);
      border-top: 1px solid var(--border);
    }
    .related-header {
      text-align: center;
      margin-bottom: 50px;
    }
    .related-header h2 {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      font-weight: 900;
      margin-bottom: 10px;
    }
    .related-header p { color: var(--text-muted); }
    .related-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 30px;
    }

    @media (max-width: 1200px) {
      .social-share {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 40px;
        transform: none;
      }
    }
    @media (max-width: 768px) {
      .author-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .post-cta-box { padding: 40px 20px; }
    }

/* --- servico-sites-institucionais.html --- */
.page-hero { padding: 200px 0 100px; background: var(--bg); position: relative; overflow: hidden; }
    .page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 60% 40%, rgba(245,130,13,0.07), transparent 60%); }
    .page-hero .container { position: relative; z-index: 2; text-align: center; }
    .page-hero-tag { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(245,130,13,0.08); border: 1px solid rgba(245,130,13,0.2); border-radius: 100px; color: var(--accent); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px; }
    .page-hero .hero-title {
      font-family: var(--font-heading);
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 900;
      letter-spacing: -0.03em;
      line-height: 1.1;
      margin-bottom: 24px;
      color: #fff;
    }
    .page-hero .hero-title .highlight {
      background: linear-gradient(90deg, #F5820D, #FFD166, #F5820D);
      background-size: 200% auto;
      color: transparent;
      -webkit-background-clip: text;
      background-clip: text;
      filter: drop-shadow(0 0 20px rgba(245, 130, 13, 0.3));
      display: inline-block;
    }
    .page-hero .hero-desc { color: var(--text-muted); font-size: 1.15rem; max-width: 700px; margin: 0 auto; line-height: 1.7; }
    
    .service-details { padding: 100px 0; background: var(--bg-panel); }
    .details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .details-content h2 { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 900; margin-bottom: 20px; line-height: 1.1; }
    .details-content h2 span { color: var(--accent); }
    .details-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; font-size: 1.1rem; }
    
    .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
    .feature-card { background: var(--bg-card); border: 1px solid var(--border); padding: 40px; border-radius: 12px; transition: all 0.3s; }
    .feature-card:hover { transform: translateY(-5px); border-color: rgba(245,130,13,0.3); }
    .feature-icon { font-size: 2.5rem; color: var(--accent); margin-bottom: 20px; }
    .feature-card h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
    .feature-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

    @media (max-width: 900px) {
      .details-grid { grid-template-columns: 1fr; gap: 40px; }
      .features-grid { grid-template-columns: 1fr; }
    }

/* --- servico-landing-pages.html --- */
.page-hero { padding: 200px 0 100px; background: var(--bg); position: relative; overflow: hidden; }
    .page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 60% 40%, rgba(245,130,13,0.07), transparent 60%); }
    .page-hero .container { position: relative; z-index: 2; text-align: center; }
    .page-hero-tag { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(245,130,13,0.08); border: 1px solid rgba(245,130,13,0.2); border-radius: 100px; color: var(--accent); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px; }
    .page-hero .hero-title {
      font-family: var(--font-heading);
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 900;
      letter-spacing: -0.03em;
      line-height: 1.1;
      margin-bottom: 24px;
      color: #fff;
    }
    .page-hero .hero-title .highlight {
      background: linear-gradient(90deg, #F5820D, #FFD166, #F5820D);
      background-size: 200% auto;
      color: transparent;
      -webkit-background-clip: text;
      background-clip: text;
      filter: drop-shadow(0 0 20px rgba(245, 130, 13, 0.3));
      display: inline-block;
    }
    .page-hero .hero-desc { color: var(--text-muted); font-size: 1.15rem; max-width: 700px; margin: 0 auto; line-height: 1.7; }
    
    .service-details { padding: 100px 0; background: var(--bg-panel); }
    .details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .details-content h2 { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 900; margin-bottom: 20px; line-height: 1.1; }
    .details-content h2 span { color: var(--accent); }
    .details-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; font-size: 1.1rem; }
    
    .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
    .feature-card { background: var(--bg-card); border: 1px solid var(--border); padding: 40px; border-radius: 12px; transition: all 0.3s; }
    .feature-card:hover { transform: translateY(-5px); border-color: rgba(245,130,13,0.3); }
    .feature-icon { font-size: 2.5rem; color: var(--accent); margin-bottom: 20px; }
    .feature-card h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
    .feature-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

    @media (max-width: 900px) {
      .details-grid { grid-template-columns: 1fr; gap: 40px; }
      .features-grid { grid-template-columns: 1fr; }
    }

/* --- servico-sistemas-web.html --- */
.page-hero { padding: 200px 0 100px; background: var(--bg); position: relative; overflow: hidden; }
    .page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 60% 40%, rgba(245,130,13,0.07), transparent 60%); }
    .page-hero .container { position: relative; z-index: 2; text-align: center; }
    .page-hero-tag { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(245,130,13,0.08); border: 1px solid rgba(245,130,13,0.2); border-radius: 100px; color: var(--accent); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px; }
    .page-hero .hero-title {
      font-family: var(--font-heading);
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 900;
      letter-spacing: -0.03em;
      line-height: 1.1;
      margin-bottom: 24px;
      color: #fff;
    }
    .page-hero .hero-title .highlight {
      background: linear-gradient(90deg, #F5820D, #FFD166, #F5820D);
      background-size: 200% auto;
      color: transparent;
      -webkit-background-clip: text;
      background-clip: text;
      filter: drop-shadow(0 0 20px rgba(245, 130, 13, 0.3));
      display: inline-block;
    }
    .page-hero .hero-desc { color: var(--text-muted); font-size: 1.15rem; max-width: 700px; margin: 0 auto; line-height: 1.7; }
    
    .service-details { padding: 100px 0; background: var(--bg-panel); }
    .details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .details-content h2 { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 900; margin-bottom: 20px; line-height: 1.1; }
    .details-content h2 span { color: var(--accent); }
    .details-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; font-size: 1.1rem; }
    
    .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
    .feature-card { background: var(--bg-card); border: 1px solid var(--border); padding: 40px; border-radius: 12px; transition: all 0.3s; }
    .feature-card:hover { transform: translateY(-5px); border-color: rgba(245,130,13,0.3); }
    .feature-icon { font-size: 2.5rem; color: var(--accent); margin-bottom: 20px; }
    .feature-card h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
    .feature-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

    @media (max-width: 900px) {
      .details-grid { grid-template-columns: 1fr; gap: 40px; }
      .features-grid { grid-template-columns: 1fr; }
    }

/* --- servico-ecommerce.html --- */
.page-hero { padding: 200px 0 100px; background: var(--bg); position: relative; overflow: hidden; }
    .page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 60% 40%, rgba(245,130,13,0.07), transparent 60%); }
    .page-hero .container { position: relative; z-index: 2; text-align: center; }
    .page-hero-tag { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(245,130,13,0.08); border: 1px solid rgba(245,130,13,0.2); border-radius: 100px; color: var(--accent); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px; }
    .page-hero .hero-title {
      font-family: var(--font-heading);
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 900;
      letter-spacing: -0.03em;
      line-height: 1.1;
      margin-bottom: 24px;
      color: #fff;
    }
    .page-hero .hero-title .highlight {
      background: linear-gradient(90deg, #F5820D, #FFD166, #F5820D);
      background-size: 200% auto;
      color: transparent;
      -webkit-background-clip: text;
      background-clip: text;
      filter: drop-shadow(0 0 20px rgba(245, 130, 13, 0.3));
      display: inline-block;
    }
    .page-hero .hero-desc { color: var(--text-muted); font-size: 1.15rem; max-width: 700px; margin: 0 auto; line-height: 1.7; }
    
    .service-details { padding: 100px 0; background: var(--bg-panel); }
    .details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .details-content h2 { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 900; margin-bottom: 20px; line-height: 1.1; }
    .details-content h2 span { color: var(--accent); }
    .details-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; font-size: 1.1rem; }
    
    .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
    .feature-card { background: var(--bg-card); border: 1px solid var(--border); padding: 40px; border-radius: 12px; transition: all 0.3s; }
    .feature-card:hover { transform: translateY(-5px); border-color: rgba(245,130,13,0.3); }
    .feature-icon { font-size: 2.5rem; color: var(--accent); margin-bottom: 20px; }
    .feature-card h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
    .feature-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

    @media (max-width: 900px) {
      .details-grid { grid-template-columns: 1fr; gap: 40px; }
      .features-grid { grid-template-columns: 1fr; }
    }

/* --- politica-privacidade.html --- */
.legal-page-hero {
      padding: 160px 0 72px;
      background: linear-gradient(165deg, var(--bg) 0%, #161922 50%, var(--bg-panel) 100%);
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    .legal-page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 0%, rgba(245, 130, 13, 0.12), transparent 55%);
      pointer-events: none;
    }
    .legal-page-hero .container { position: relative; z-index: 1; }
    .legal-page-hero h1 {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 900;
      letter-spacing: -0.03em;
      color: #fff;
      margin-bottom: 12px;
    }
    .legal-page-hero h1 span { color: var(--accent); }
    .legal-page-meta {
      color: var(--text-muted);
      font-size: 0.95rem;
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.6;
    }
    .legal-content {
      padding: 64px 0 100px;
      background: var(--bg-panel);
    }
    .legal-prose {
      max-width: 760px;
      margin: 0 auto;
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 1.75;
    }
    .legal-prose h2 {
      font-family: var(--font-heading);
      font-size: 1.35rem;
      font-weight: 800;
      color: #fff;
      margin: 40px 0 16px;
      letter-spacing: -0.02em;
    }
    .legal-prose h2:first-of-type { margin-top: 0; }
    .legal-prose p { margin-bottom: 14px; }
    .legal-prose ul {
      margin: 12px 0 20px 1.25rem;
      padding: 0;
    }
    .legal-prose li { margin-bottom: 10px; }
    .legal-prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
    .legal-prose a:hover { color: #ffb04d; }
    .legal-note {
      margin-top: 48px;
      padding: 20px 22px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 12px;
      font-size: 0.92rem;
      color: var(--text-muted);
    }
    .legal-note strong { color: var(--text-main); }

/* --- termos-de-uso.html --- */
.legal-page-hero {
      padding: 160px 0 72px;
      background: linear-gradient(165deg, var(--bg) 0%, #161922 50%, var(--bg-panel) 100%);
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    .legal-page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 0%, rgba(245, 130, 13, 0.12), transparent 55%);
      pointer-events: none;
    }
    .legal-page-hero .container { position: relative; z-index: 1; }
    .legal-page-hero h1 {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 900;
      letter-spacing: -0.03em;
      color: #fff;
      margin-bottom: 12px;
    }
    .legal-page-hero h1 span { color: var(--accent); }
    .legal-page-meta {
      color: var(--text-muted);
      font-size: 0.95rem;
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.6;
    }
    .legal-content {
      padding: 64px 0 100px;
      background: var(--bg-panel);
    }
    .legal-prose {
      max-width: 760px;
      margin: 0 auto;
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 1.75;
    }
    .legal-prose h2 {
      font-family: var(--font-heading);
      font-size: 1.35rem;
      font-weight: 800;
      color: #fff;
      margin: 40px 0 16px;
      letter-spacing: -0.02em;
    }
    .legal-prose h2:first-of-type { margin-top: 0; }
    .legal-prose p { margin-bottom: 14px; }
    .legal-prose ul {
      margin: 12px 0 20px 1.25rem;
      padding: 0;
    }
    .legal-prose li { margin-bottom: 10px; }
    .legal-prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
    .legal-prose a:hover { color: #ffb04d; }
    .legal-note {
      margin-top: 48px;
      padding: 20px 22px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 12px;
      font-size: 0.92rem;
      color: var(--text-muted);
    }
    .legal-note strong { color: var(--text-main); }

/* --- busca.html --- */
/* Search Section */
    .search-section {
      padding: 200px 0 100px;
      background: url('../images/videoback/videoback_000.jpg') center/cover no-repeat;
      min-height: 100vh;
      position: relative;
      overflow: hidden;
    }
    .search-section::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(15, 17, 23, 0.8);
      z-index: 1;
    }
    .search-section .container {
      position: relative;
      z-index: 2;
    }
    .search-header {
      text-align: center;
      margin-bottom: 50px;
    }
    .search-header h1 {
      font-family: var(--font-heading);
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 900;
      margin-bottom: 30px;
      letter-spacing: -0.03em;
    }
    .search-header h1 span { color: var(--accent); }

    /* Search Bar Premium */
    .search-bar {
      max-width: 650px;
      margin: 0 auto 30px;
      position: relative;
    }
    .search-bar i {
      position: absolute;
      left: 24px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.3rem;
      color: var(--text-muted);
    }
    .search-bar input {
      width: 100%;
      padding: 20px 24px 20px 60px;
      border-radius: 100px;
      border: 1px solid var(--border);
      background: var(--bg-card);
      color: var(--text-main);
      font-size: 1.1rem;
      outline: none;
      transition: border-color 0.3s, box-shadow 0.3s;
    }
    .search-bar input:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 4px rgba(245, 130, 13, 0.1);
    }

    /* Search Filters */
    .search-filters {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 20px;
    }

    /* Search Status */
    .search-status {
      text-align: center;
      color: var(--text-muted);
      font-size: 0.95rem;
      margin-bottom: 40px;
    }

    /* Results Grid */
    .search-results-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 24px;
    }

    /* Result Card */
    .result-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 30px;
      transition: all 0.3s;
      display: flex;
      flex-direction: column;
    }
    .result-card:hover {
      transform: translateY(-3px);
      border-color: rgba(245, 130, 13, 0.3);
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    .result-card-type {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 12px;
    }
    .result-card h3 {
      font-family: var(--font-heading);
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 10px;
      line-height: 1.3;
    }
    .result-card p {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.6;
      flex: 1;
    }
    .result-card-link {
      margin-top: 20px;
      color: var(--accent);
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.3s;
    }
    .result-card:hover .result-card-link { gap: 10px; }

    /* Pagination */
    .search-pagination {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 50px;
    }
    .page-num {
      width: 44px; height: 44px;
      border-radius: 8px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      color: var(--text-main);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s;
      font-weight: 600;
    }
    .page-num.active, .page-num:hover {
      background: var(--accent);
      color: #000;
      border-color: var(--accent);
    }

    @media (max-width: 600px) {
      .search-results-grid {
        grid-template-columns: 1fr;
      }
    }

/* --- promocao.html --- */
.promo-hero {
      padding: 160px 0 80px;
      background: linear-gradient(165deg, var(--bg) 0%, #161922 45%, var(--bg-panel) 100%);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .promo-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 20%, rgba(245, 130, 13, 0.12), transparent 55%);
      pointer-events: none;
    }
    .promo-hero .container { position: relative; z-index: 1; }
    .promo-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      background: rgba(245, 130, 13, 0.12);
      border: 1px solid rgba(245, 130, 13, 0.35);
      border-radius: 100px;
      color: var(--accent);
      font-size: 0.8rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 28px;
    }
    .promo-hero h1 {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 900;
      line-height: 1.12;
      color: #fff;
      max-width: 920px;
      margin: 0 auto 20px;
      letter-spacing: -0.03em;
    }
    .promo-hero h1 span { color: var(--accent); }
    .promo-lead {
      color: var(--text-muted);
      font-size: 1.15rem;
      line-height: 1.65;
      max-width: 640px;
      margin: 0 auto 36px;
    }
    .promo-offers {
      padding: 40px 0 100px;
      background: var(--bg-panel);
    }
    .promo-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-top: 8px;
    }
    @media (max-width: 992px) {
      .promo-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
    }
    .promo-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 36px 28px;
      text-align: left;
      transition: border-color 0.3s, transform 0.3s;
    }
    .promo-card:hover {
      border-color: rgba(245, 130, 13, 0.35);
      transform: translateY(-6px);
    }
    .promo-card-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: rgba(245, 130, 13, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      color: var(--accent);
      margin-bottom: 20px;
    }
    .promo-card h2 {
      font-family: var(--font-heading);
      font-size: 1.35rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 12px;
      line-height: 1.25;
    }
    .promo-card p {
      color: var(--text-muted);
      font-size: 0.98rem;
      line-height: 1.65;
    }
    .promo-note {
      text-align: center;
      color: var(--text-muted);
      font-size: 0.9rem;
      margin-top: 40px;
      max-width: 720px;
      margin-inline: auto;
    }

