/* ================================
   SAIBA MAIS — LAYOUT BASE
================================ */

.saiba-mais-page {
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--cor-fundo);
}

.saiba-mais-hero {
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 720px;
    margin: 0 auto;
    gap: 2rem;
}

.saiba-mais-hero__logo {
    max-width: 292px;
    width: 100%;
    margin-bottom: 2rem;
}

.saiba-mais-hero__title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--cor-secundaria);  
}

.saiba-mais-hero__description {
    color: var(--cor-texto);
    font-size: 1rem;
}

.saiba-mais__highlight {
  color: var(--cor-primaria);
  font-weight: 600;
}

.saiba-mais-hero__subtitle {
    font-size: 1.3rem;
    color: var(--cor-primaria);
}

.saiba-mais-hero__cta {
  background-color: var(--cor-terciaria);
  color: var(--cor-clara);
  text-decoration: none;
  border-radius: 14px;
  padding: 1em 2em;
  font-size: 1.1rem;
  font-weight: 800;
  text-align: center;
}

.saiba-mais-page__panel--right {
    position: relative;
    height: 100vh;

    background-image: url('../assets/img/background-saiba-mais-cortada.png');
    background-size: cover;
    background-position: center;

    clip-path: ellipse(75% 55% at 100% 50%);
}

/* ================================
   HOVERS & INTERAÇÕES
   ================================ */

.saiba-mais-hero__cta:hover {
  background-color: var(--hover-terciaria);
  transform: translateY(-2px);
}

/* ================================
   RESPONSIVIDADE — TABLETS
   ================================ */

@media (max-width: 1024px) {
    .saiba-mais-page {
        grid-template-columns: 1.2fr 0.8fr;
    }

    .saiba-mais-hero {
        padding: 3rem 2rem;
        max-width: 600px;
        gap: 1.8rem;
    }

    .saiba-mais-hero__logo {
    max-width: 200px;
}

    .saiba-mais-hero__title {
        font-size: 1.8rem;
        line-height: 1.25;
    }

    .saiba-mais-hero__description {
        font-size: 0.95rem;
    }

    .saiba-mais-hero__subtitle {
        font-size: 1.2rem;
    }

    .saiba-mais-hero__cta {
        font-size: 1.05rem;
        padding: 0.9em 2em;
    }

    .saiba-mais-page__panel--right {
        clip-path: ellipse(80% 70% at 100% 50%);
        background-position: center;
        background-size: cover;
    }
}

/* ================================
   RESPONSIVIDADE — MOBILE
================================ */

@media (max-width: 768px) {
    .saiba-mais-page {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .saiba-mais-page__panel--right {
    display: none;
    order: -1;
    height: 220px;
    width: 100%;
    clip-path: ellipse(120% 70% at 50% 30%);
    background-position: top center;
    background-size: cover;
  }

  .saiba-mais-hero {
    padding: 2rem 1.6rem;
    max-width: 100%;
    gap: 1.6rem;
  }

  .saiba-mais-hero__logo {
    max-width: 160px;
    margin-bottom: 1rem;
  }

  .saiba-mais-hero__title {
    font-size: 1.2rem;
    line-height: 1.25;
  }

  .saiba-mais-hero__description {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .saiba-mais-hero__subtitle {
    font-size: 1rem;
  }

  .saiba-mais-hero__cta {
    font-size: 0.9rem;
    padding: 0.8em 1.6em;
    width: 100%;
  }
}