:root {
    --grad-1: #0ea5ff;
    --grad-2: #6ee7b7;
    --grad-3: #f97316;
    --grad-4: #7c3aed;
    --bg-dark: #071029;
    --bg-dark-alt: #0c1a42;
    --muted: #9aa7b2;
    --card: rgba(255, 255, 255, 0.03);
    --glass: rgba(255, 255, 255, 0.04);
    --radius: 14px;
    --section-gap: 140px;
    --bg-main: #0b1220;
    --bg-card: #10192e;
    --bg-card-soft: #0f172a;
    --text-main: #f8fafc;
    --text-muted: #555c67;
    --blue: #22d3ee;
    --text-normal: oklch(0.707 0.022 261.325);
    --orange: #ff6a00;
    --bg-section-dark-light: #101827;
    --bg-section-dark: #020617;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, Arial;
    background: linear-gradient(180deg, #071029 0%, #071733 60%);
    color: #fff;
    -webkit-font-smoothing: antialiased
}

a {
    text-decoration: none;
    color: inherit
}

#container > header {
    padding: 10px 20px;
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgb(255 255 255 / 25%);
    position: fixed;
    width: 100%;
    z-index: 10;
    top: 0;
}

.nav-link:after {
    content: "";
    height: 2px;
    background-color: #fff;
    display: block;
    margin-top: 5px;
    width: 0;
    transition: width .2s;
}

.nav-link:hover:after {
    width: 100%;
}

.btn-ghost:hover {
    color: #fff;
}

.how-features {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.how-features>div {
    display: inherit;
    align-items: center;
    gap: 12px;
}

.how-grid {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 6px;
}

.bolt {
    width: 36px;
    min-width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--grad-3), var(--grad-4));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.2);
}

.brand > a {
    display: flex;
    align-items: center;
    gap: 10px
}

.brand img {
    width: 56px;
    height: 56px;
    border-radius: 12px
}

nav {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 10px;
}

.nav-link {
    padding: 8px 10px;
    border-radius: 8px;
    transition: background .18s, color .18s
}


.nav-link.active {
    background: linear-gradient(90deg, var(--grad-4), var(--grad-3));
    color: white
}

.contact-submit,
.btn-primary {
    background: linear-gradient(90deg, var(--grad-4), var(--grad-3));
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.12);
    transition: filter .2s ease;
    display: inline-block;
}

.btn-primary:hover {
    filter: brightness(1.3);
}

#signup h4 {
    font-size: 1.2rem;
}

.btn-ghost {
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--muted)
}

.btn-ghost:hover {
    color: #fff;
}


/* Sections spacing */
section {
    margin-top: var(--section-gap);
    padding: 70px 20px;
    margin: 0;
}

section.alt {
    background-color: var(--bg-dark-alt);
}


/* Hero */
#container .hero {
    display: flex;
    gap: 28px;
    align-items: center;
    max-width: 1200px;
    flex-wrap: wrap;
    padding: 0 20px 60px;
    margin: var(--section-gap) auto 0;
}

.hero-left {
    flex: 1;
    min-width: 320px
}

.hero h2 {
    font-size: 36px;
    margin: 0 0 12px 0;
    line-height: 1.02;
    background: linear-gradient(90deg, var(--grad-1), var(--grad-3));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800
}

.hero p {
    color: var(--muted);
    font-size: 20px;
    max-width: 95%;
    line-height: 25px;
}

.gif-area {
    flex: 0 0 540px;
    min-width: 320px;
    border-radius: 16px;
    /* padding: 12px; */
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(14, 165, 255, 0.08));
    box-shadow: -2px 0px 20px rgb(80 208 208 / 52%);
    overflow: hidden
}

.gif-inner {
    border-radius: 12px;
    overflow: hidden;
    /* background: linear-gradient(90deg, var(--grad-1), var(--grad-2)); */
    background-color: #000;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .45s cubic-bezier(.2, .9, .2, 1)
}

.gif-inner:hover {
    transform: scale(1.02)
}

/* Resources */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 16px
}

.resource {
    background: var(--card);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: transform .18s ease
}

.resource:hover {
    transform: translateY(-6px)
}

.resource h4 {
    margin: 40px 0 8px;
}

.resource p {
    color: var(--muted);
    margin: 0
}

.resource .thumb {
    width: 100%;
    height: 140px;
    border-radius: 10px;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #e6f7ff2e, #edfdf730);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700
}

.info strong {
    margin-bottom: 5px;
    display: block;
}

#how .card {
    background: var(--card);
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

/* Advanced features (sidebar + content) */
.advanced-section-title {
    font-size: 20px;
    margin-bottom: 12px
}

.advanced {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-top: 6px
}

.adv-left {
    flex: 0 0 240px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03)
}

.adv-btn {
    display: block;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 8px;
    color: var(--muted);
    cursor: pointer;
    border: 1px solid transparent;
    transition: all .18s ease
}

.adv-btn.active {
    background: linear-gradient(90deg, var(--grad-4), var(--grad-3));
    color: white;
    border-color: rgba(255, 255, 255, 0.04);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.12)
}

.adv-btn:hover {
    transform: translateX(6px);
    color: white
}

.adv-right {
    flex: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    min-height: 300px;
    position: relative;
    overflow: hidden
}

.adv-slide {
    opacity: 0;
    transition: opacity .45s ease, transform .45s ease;
    position: absolute;
    inset: 18px;
    pointer-events: none
}

.adv-slide.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto
}

.adv-slide img {
    max-width: 48%;
    float: right;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.5);
    visibility: hidden;
}

/* FAQ */
#faq details {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.03)
}

#faq summary {
    font-weight: 700;
    cursor: pointer
}

#faq p {
    color: var(--muted);
    margin: 8px 0 0 0
}

footer {
    margin-top: 48px;
    padding: 30px 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border-top: 1px solid rgba(255, 255, 255, 0.03)
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

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

.socials a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--grad-1), var(--grad-2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white
}

.mobile-meu {
    cursor: pointer;
    border: 1px solid #fff;
    padding: 7px 10px;
    border-radius: 3px;
    font-size: 1.4em;
    display: none;
}

/******** NOVAS SEÇÕES **********/
.title-header {
    text-align: center;
    margin-bottom: 3rem;
}
.card-icon svg {
    width: 29px;
    height: 29px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.complexidade-card>.title {
    display: flex;
    gap: 10px;
    align-items: center;
}

.complexidade-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0;
}

.complexidade-header p {
    font-size: 20px;
    color: var(--text-muted);
}

.complexidade-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.complexidade-card {
    background: linear-gradient(180deg,
            var(--bg-card) 0%,
            var(--bg-card-soft) 100%);
    border-radius: var(--radius);
    padding: 20px 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid oklch(0.278 0.033 256.848);
    border-top-width: 5px;
}

.complexidade-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.complexidade-card h3 {
    font-size: 24px;
    margin: 1rem 0 0.8rem;
    color: var(--text-main);
}

.complexidade-card p {
    font-size: 16px;
    color: var(--text-normal);
    line-height: 1.6;
    margin: 0;
}

.card-icon {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.card-icon.blue {
    color: var(--blue);
}

.card-icon.orange {
    color: var(--orange);
}

.card-metric {
    margin-top: 20px;
}

.card-metric strong {
    display: block;
    font-size: 32px;
    font-weight: 700;
}

.card-metric span {
    font-size: 14px;
    color: var(--text-muted);
}

.card-metric.blue strong {
    color: var(--blue);
}

.card-metric.orange strong {
    color: var(--orange);
}

/* Card destaque */
.complexidade-card.destaque {
    border-color: var(--orange);
}

.ia-ecossistema-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ia-ecossistema-texto h2 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.texto-principal {
    font-size: 20px;
    color: var(--text-main);
    margin-bottom: 1.2rem;
}

.texto-secundario {
    font-size: 16px;
    margin-top: 30px;
    /* color: var(--text-normal); */
}

.ia-ecossistema-card {
    background: #333c4a;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid #5e5e5e;
}

.ia-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ia-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.ia-feature:last-child {
    margin-bottom: 0;
}

.feature-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.15);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ia-feature strong {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-main);
}

.ia-feature p {
    font-size: 16px;
    color: var(--text-normal);
    line-height: 1.5;
    margin: 0;
}

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

.recurso-visual-inner {
  background: #e14218;
  border-radius: 18px;
  padding: 88px 48px;
  height: 100%;
  color: white;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  text-align: center;
  font-weight: bold;
}

.recurso-visual svg {
  width: 96px;
  height: 96px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  margin: 0 auto;
}

.recurso-texto h2 {
  font-size: 36px;
  margin: 25px 0;
}

.badge-exclusivo {
    display: table;
  background: #7e2a0c;
  color: #ffb86a;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
}

.recurso-texto p {
  color: var(--text-normal);
  line-height: 1.6;
  font-size: 18px;
}

.recurso-texto blockquote {
  margin: 0;
  font-style: italic;
  padding: 1.2rem 1.5rem;
  border: 1px solid #ff6900;
  border-radius: 4px;
  color: var(--text-normal);
  border-left-width: 4px;
}

.ferramentas-grid {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.tool {
  padding: 2rem;
  width: 48.5%;
  border-radius: 16px;
  color: white;
}

.ferramentas-section .section-header > h2 {
    font-size: 36px;
    text-align: center;
}

.ferramentas-section .section-header > p {
    font-size: 20px;
    text-align: center;
}

.tool.teal {background: #095970;}
.tool.blue {background: #193ba6;}
.tool.orange {background: #902d10;}
.tool.purple {background: #6715a2;}

.capital-grid {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.capital-card {
  background: #101827;
  padding: 2rem;
  border: 1px solid #202c41;
  width: 48%;
  border-radius: 16px;
}

.capital-card svg {
  width: 32px;
  height: 32px;
  stroke: #ff6a00;
  fill: none;
  stroke-width: 2;
}

.tool .title > h3 {
    margin: 0;
    font-size: 24px;
}

.tool .title {
    display: flex;
    gap: 10px;
    font-size: 24px;
    align-items: center;
}

.tool > p {
    font-size: 16px;
    color: var(--text-normal);
    margin-top: 10px;
}

.tool svg {
    height: 32px;
    width: 31px;
}

.tool.purple svg {
    color: #c27aff;
}

.tool.blue svg {
    color: #51a2ff;
}

.tool.teal svg {
    color: #00d3f3;
}

.tool.orange svg {
    color: #ff8a29;
}

.capital-card h3 {
  margin-bottom: .5rem;
  font-size: 23px;
}

.auditavel-grid {
    gap: 1.8rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.auditavel-card {
  padding: 20px;
  border-radius: 16px;
  width: 48%;
  background-color: #192334;
  border: 1px solid #2c3b54;
}

.auditavel-card svg {
  width: 32px;
  height: 32px;
  stroke: #00d3f3;
  fill: none;
  stroke-width: 2;
  margin-bottom: 0;
}

#secao-ia-auditavel .section-header h2,
#secao-capital-intelectual .section-header h2 {
    font-size: 32px;
    text-align: center;
}

#secao-ia-auditavel .section-header p,
#secao-capital-intelectual .section-header p {
    font-size: 20px;
    color: var(--text-normal);
}
.auditavel-card,
.capital-card > p {
    font-size: 16px;
    margin: 0;
    color: var(--text-normal);
}
.auditavel-card .title,
.capital-card .title {
    display: flex;
    gap: 10px;
    align-items: center;
}

.auditavel-card .title,
.capital-card .title > h3 {
    margin: 0;
}
.auditavel-card >p {
    margin: 0;
}

.auditavel-card .title > h3 {
    color: var(--text-main);
}

.section-contact .section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.section-contact h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #ffffff;
}

.section-contact p {
  color: #aab4d4;
}

#contact-form .contact-submit {
    color: var(--text);
    cursor: pointer;
    border: none;
}

#contato .contact-card {
  max-width: 640px;
  margin: 0 auto;
  background: #050b19;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.05);
}

#contato .form-group {
  margin-bottom: 20px;
}

#contato .form-group label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: #cdd4f3;
}

#contato .form-group label span {
  color: #7f89b8;
  font-weight: normal;
}

#contato .form-group input,
#contato .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: #0b132b;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  color: #fff;
  font-size: 0.95rem;
}

#contato .form-group input:focus,
#contato .form-group textarea:focus {
  outline: none;
  border-color: #5b8cff;
  box-shadow: 0 0 0 1px rgba(91,140,255,0.4);
}

#contato .form-actions {
  text-align: right;
}

#contato .form-feedback {
  margin-top: 16px;
  font-size: 1.2rem;
}

#contato .form-feedback.success {
  color: #4ade80;
}

#contato .form-feedback.error {
  color: #f87171;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgb(3 7 18 / 6%);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.page.termos-de-uso {
  position: fixed;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) scale(0.96);
  max-width: 1000px;
  width: calc(100% - 40px);
  max-height: 80vh;
  overflow: auto;

  background-color: #050b18;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);

  opacity: 0;
  pointer-events: none;
  transition: all .25s ease;
}

.modal-content {
  color: #d1d7f0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: transparent;
  border: none;
  color: #9aa4d6;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: #ffffff;
}

.modal-active .modal-overlay {
  opacity: 1;
  pointer-events: all;
}

.modal-active .page.termos-de-uso {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.page.termos-de-uso::-webkit-scrollbar {
  width: 8px;
}

.page.termos-de-uso::-webkit-scrollbar-track {
  background: transparent;
}

.page.termos-de-uso::-webkit-scrollbar-thumb {
  background: rgba(120, 130, 180, 0.35);
  border-radius: 6px;
  border: 2px solid transparent;
  background-clip: content-box;
}

.page.termos-de-uso::-webkit-scrollbar-thumb:hover {
  background: rgba(160, 170, 220, 0.6);
  background-clip: content-box;
}

#contato .form-group label > svg {
    color: #00a8e8;
    width: 18px;
    display: inline-block;
    vertical-align: text-bottom;
    height: auto;
}

#contato .form-group label .text {
    color: inherit;
}

.faq-section {
  color: #fff;
}

#faq .faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header h2 {
  font-size: 36px;
  margin-bottom: 1rem;
}

.faq-header p {
  color: #94a3b8;
  font-size: 20px;
}

.faq-item {
  background-color: #141e30;
  margin-bottom: 1rem;
  border: 1px solid #1e293b;
  border-radius: 7px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #162338;
}

.faq-icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid #38bdf8;
  border-bottom: 2px solid #38bdf8;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(-135deg);
}

.faq-answer {
  display: none;
  padding: 15px 25px;
  border-top: 1px solid #253145;
  border-radius: 6px;
  color: #cbd5e1;
  background-color: #141e30;
  font-size: 0.95rem;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

#container > header > .container {
    margin: 0 auto;
    max-width: 1200px;
}

.faq-item.active .faq-icon {
  transform: rotate(-135deg);
}

.bg-dark-light {
    background-color: var(--bg-section-dark-light);
}
.bg-dark {
    background-color: var(--bg-section-dark);
}
.content-section {
    padding: 50px 20px;
    margin: 0;
}

.content-section .content-inner {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.title-header > p {
    margin-bottom: 0;
    margin-top: 15px;
}

.title-header > h2 {
    margin-bottom: 0;
    margin-top: 0;
}

/**************************************************
 ANIMATION SYSTEM
**************************************************/

.animate {
  opacity: 0;
  transition: 
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}

/* Fade Up (titles) */
.animate--fade-up {
  transform: translateY(40px);
}

/* Slide Left */
.animate--slide-left {
  transform: translateX(-80px);
}

/* Slide Right */
.animate--slide-right {
  transform: translateX(80px);
}

/* When visible */
.animate.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/**************************************************
 STAGGER SYSTEM
**************************************************/

.animate--stagger > * {
  opacity: 0;
  transform: translateY(40px);
  transition: 
    opacity 0.6s ease,
    transform 0.6s ease;
}

.animate--stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Delay progressivo */
.animate--stagger.is-visible > *:nth-child(1) { transition-delay: 0.1s; }
.animate--stagger.is-visible > *:nth-child(2) { transition-delay: 0.2s; }
.animate--stagger.is-visible > *:nth-child(3) { transition-delay: 0.3s; }
.animate--stagger.is-visible > *:nth-child(4) { transition-delay: 0.4s; }
.animate--stagger.is-visible > *:nth-child(5) { transition-delay: 0.5s; }
.animate--stagger.is-visible > *:nth-child(6) { transition-delay: 0.6s; }

/**************************************************
 FAQ SEQUENTIAL ANIMATION
**************************************************/
#contact-form .form-group,
#contact-form .form-actions,
.faq-item {
  opacity: 0;
  transform: translateY(30px);
  transition: 
    opacity 0.5s ease,
    transform 0.5s ease;
}

#contact-form .is-visible,
.faq-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Container do Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #22222254;
    color: #fff;
    padding: 20px;
    box-sizing: border-box;
    display: flex; /* Escondido por padrão, o JS mostra se necessário */
    justify-content: space-between;
    align-items: center;
    z-index: 999999;
    backdrop-filter: blur(6px);
    font-family: sans-serif;
    border-top: 1px solid rgb(255 255 255 / 25%);
}

#cookie-banner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    padding-right: 20px;
}

#cookie-banner a {
    color: #4CAF50;
    text-decoration: underline;
}

/* Botão de Aceitar */
#cookie-banner button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
    white-space: nowrap;
    transition: background 0.3s;
}

#cookie-banner button:hover {
    background: #45a049;
}

/* Responsividade para celulares */
@media (max-width: 600px) {
    #cookie-banner {
        flex-direction: column;
        text-align: center;
    }
    #cookie-banner p {
        padding-right: 0;
        margin-bottom: 15px;
    }
}
/******** NOVAS SEÇÕES **********/

@media(max-width:980px) {
    .resources-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .adv-right {
        min-height: 200px
    }

    .btn-primary {
        white-space: nowrap;
    }
    #container > header {
        position: static;
    }

    .content-section {
        padding: 60px 20px;
    }
    .mobile-meu {
        display: inherit;
    }

    .menu-nav {
        flex-direction: column;
        position: fixed;
        background-color: #071028;
        left: 0;
        border: 1px solid #454c5e;
        top: 0;
        bottom: 0;
        height: 100%;
        width: 0;
        transition: width .2s;
        overflow: hidden;
    }

    .menu-nav.open {
        width: 250px;
    }

    .container .brand {
        min-width: 70%;
    }
        .complexidade-cards {
        grid-template-columns: 1fr;
    }

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

    .ia-ecossistema-container {
        grid-template-columns: 1fr;
    }

    .ia-ecossistema-texto h2 {
        font-size: 2rem;
    }
    #container .hero {
        margin-top: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .recurso-container {
        display: block;
    }

    .recurso-visual {
        margin-bottom: 40px;
    }

    .tool {
        width: 100%;
    }

    .capital-card {
        width: 100%;
    }

    article.auditavel-card {
        width: 100%;
    }
    .content-section {
        padding: 50px 20px;
    }
    .ia-ecossistema-section,
    .recurso-section {
        padding: 3rem 1.5rem;
    }
    #container .hero {
        margin-top: 50px;
    }
}

@media(max-width:640px) {
    .resources-grid {
        grid-template-columns: 1fr
    }

    .hero p {
        max-width: 100%
    }

    .gif-inner {
        height: 220px
    }

    .adv-left {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        flex-basis: 100%;
        background: none;
    }

    .adv-btn {
        width: 48%;
        background: linear-gradient(180deg, rgb(255 255 255 / 6%), rgb(255 255 255 / 5%));
        min-height: 60px;
        align-content: center;
        color: #fff;
    }

    .adv-slide.show p {
        color: #ffffffc9 !important;
    }

    body {
        font-size: 18px;
        --muted: #ffffffc9;
    }

    .advanced {
        flex-direction: column
    }

    .adv-right {
        width: 100%;
    }

    #container header {
        backdrop-filter: none;
    }

    .container {
        justify-content: space-between;
    }

    .gif-area {
        max-width: 100%;
    }

    #features > div {
        flex-wrap: wrap;
    }
    .container .brand {
        min-width: initial;
    }
}

@media only screen and (max-width: 479px) {
    .tool .title > h3 {
        font-size: 20px;
    }
}