﻿@charset "UTF-8";
/* Font loading moved to index.php for PageSpeed optimization */

:root {
  /* Colors from snippet */
  --brand-green: #7cc100;
  /* --principalverde-claro: rgba(124, 193, 0, 1) */
  --brand-green-hover: #649c00;
  /* --boto-primriohover: rgba(100, 156, 0, 1) */
  --brand-cream-hover: #eeffe0;
  /* --boto-secundriohover */

  --bg-white: #ffffff;
  --bg-cream: #f7fff2;
  /* .BG-verde */
  --bg-disabled: #f4f3fe;
  --bg-form: #f7f7fd;
  /* --camposform */

  --text-dark: #212121;
  /* --textopreto */
  --text-gray: #8a8894;
  /* --textocinza */
  --text-white: #ffffff;

  --card-border: #e6e6e6;
  /* Keep existing or approximate */

  /* Sections backgrounds mapping */
  --section-soft: var(--bg-cream);
  /* mapped to BG-verde from snippet */
  --section-cta: #d7ffba;
  /* rectangle-2 color */

  /* Feature cards mapping */
  --feature-text: #000000;
  --font-scale: 1;
  --anchor-offset: 100px;
}

:root.font-zoom,
body.font-zoom {
  --font-scale: 1.12;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background-color: var(--bg-white);
  color: var(--text-dark);
  font-size: calc(16px * var(--font-scale, 1));
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  /* Better font rendering on iOS */
}

section[id],
main[id] {
  scroll-margin-top: var(--anchor-offset);
}

body.font-zoom {
  line-height: 1.35;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  /* iOS requires explicit cursor for some click events */
}

/* img {
  max-width: 100%;
  height: auto;
  display: block;
} */

/* Floating Header */
.floating-header {
  position: fixed;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  /* space between text resize and navbar */
  z-index: 1100;
  padding: 0 12px;
  /* text-wrapper-7 top position approx */
  transform: translateY(0);
  transition: transform 0.2s ease;
}

.floating-header.is-scrolled {
  transform: translateY(-20px);
}

.floating-header .text-resize {
  border-radius: 999px;
  font-weight: 400;
  /* font-normal from snippet */
  background: transparent;
  border: none;
  pointer-events: auto;
  align-self: flex-end;
  /* right aligned mostly */
  font-size: calc(16px * var(--font-scale, 1));
  text-decoration: underline;
  color: #000000;
  position: relative;
  /* relative to allow centering logic if needed, but flex column center handles it */
  margin-right: max(0px, calc(50vw - 540px));
  /* Align roughly with content max width */
}

.floating-header header {
  pointer-events: auto;
  margin-top: 10px;
}

.pill-header {
  background: var(--bg-form);
  /* rgba(247, 247, 253, 1) */
  border: 1px solid var(--text-gray);
  /* rgba(138, 136, 148, 1) */
  border-radius: 46px;
  padding: 10px 20px;
  width: min(800px, 95vw);
  /* approx 794px from snippet */
  margin: 0 auto;
  transition: border-radius 0.3s ease, background-color 0.3s ease;
}

.pill-header.menu-open {
  border-radius: 24px;
  /* Mais quadrado quando aberto */
  background: #fff;
  /* Opcional: destaque maior */
}

/* Quando o menu abre, reduz o arredondamento para parecer uma caixa expandida, se desejar, 
   ou mantém e garante que o conteúdo não vaze. Mas o padrão bootstrap empurra o conteúdo.
   Vamos animar a altura com o transition padrão do bootstrap, mas suavizar a opacidade. */
.navbar-collapse {
  transition: height 0.35s ease, opacity 0.35s ease;
}

.navbar-collapse.collapsing {
  opacity: 0;
}

.navbar-collapse.show {
  opacity: 1;
}

.pill-header .navbar-toggler {
  border: 0;
}

.pill-header .navbar-nav {
  gap: 24px;
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 400;
  font-size: calc(16px * var(--font-scale, 1));
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--brand-green);
}

.page-offset {
  padding-top: 126px;
  /* hero top in snippet */
}

.brand-logo {
  height: 45px;
  /* logo-podcast-2 height 45.49px */
  object-fit: contain;
}

/* Buttons */
.btn-brand {
  background-color: var(--brand-green);
  border: 1px solid var(--brand-green);
  color: var(--text-white);
  font-weight: 400;
  font-size: calc(16px * var(--font-scale, 1));
  border-radius: 61px !important;
  padding: 0.2rem 1.5rem !important;
  /* 8px 24px */
}
.btn-insta {
  background-color: var(--brand-green);
  border: 1px solid var(--brand-green);
  color: var(--text-white);
  font-weight: 400;
  font-size: calc(18px * var(--font-scale, 1));
  border-radius: 61px !important;
  padding: 0.3rem 1.5rem !important;
  /* 8px 24px */
}
.btn-insta svg {
  margin-bottom: 2px;
}


.btn-brand:hover, .btn-insta:hover {
  background-color: var(--brand-green-hover);
  border-color: var(--brand-green-hover);
  color: var(--text-white);
}

.btn-outline-secondary.text-resize {
  /* Override bootstrap outline btn styles to match link style */
  color: #000;
  background: transparent;
  border: none;
  box-shadow: none !important;
}

/* Hero */
.hero,
.acesso {
  /* padding handled by page-offset mostly, or container margin */
  position: relative;
  background-color: #fff;
}

.section-cream,
.section-soft,
.conteudos-rapidos {
  background-color: var(--bg-cream);
}

.hero h1 {
  font-weight: 700;
  font-size: calc(56px * var(--font-scale, 1));
  /* h1 desktop */
  line-height: 1.1;
  color: var(--text-dark);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero .lead {
  font-weight: 500;
  font-size: calc(24px * var(--font-scale, 1));
  /* h4 desktop */
  color: var(--text-gray);
  max-width: 522px;
  margin-left: auto;
  margin-right: auto;
}

/* Newsletter Form */
.newsletter-form {
  max-width: 590px;
  margin: 0 auto;
}

.input-group.input-group-lg {
  background-color: var(--bg-form);
  border: 1px solid var(--text-gray);
  border-radius: 67px;
  padding: 8px;
  /* padding 8px from snippet */
  align-items: center;
}

.input-group .form-control {
  border: none;
  background: transparent;
  font-size: calc(20px * var(--font-scale, 1));
  /* bot-es-e-links-normal */
  color: var(--text-dark);
  box-shadow: none;
  padding-left: 0;
}

.input-group .form-control::placeholder {
  color: var(--text-gray);
  /* camposdescrio */
}

.input-group .input-group-text {
  border: none;
  background: transparent;
  padding-left: 12px;
}

.modal-content {
  border-radius: 32px;
}

.form-control {
  background-color: #F0F0F0;
  border-radius: 8px;
}

.icon-inline {
  width: 32px;
  height: 32px;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ig-item .Caption {
  display: none !important;
}

.ig-item {
  overflow: hidden;
  border-radius: 12px;
}

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

@media (max-width: 520px) {
  .ig-grid {
    display: flex;
    overflow-x: scroll;
    /* Force scroll on iOS */
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 20px;
    /* Space for scrollbar if visible, or swipe area */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
  }

  .ig-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
  }

  .ig-item {
    flex: 0 0 85%;
    /* Shows 85% of the item, hinting there's more */
    min-width: 85%;
    /* iOS fix */
    scroll-snap-align: center;
    width: 85%;
  }
}

/* Feature Cards (Acesso gratuito) */
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* flex-start in snippet css but looks centered */
  text-align: center;
  gap: 16px;
  height: 100%;
}

.feature-icon {
  width: 87px;
  height: 83px;
  object-fit: contain;
}

.feature-card p.h6 {
  /* + Inspiracao semanal */
  font-weight: 600;
  font-size: calc(20px * var(--font-scale, 1));
  /* h5 desktop */
  margin-bottom: 8px;
}

.feature-card p:not(.h6) {
  /* description */
  font-size: calc(16px * var(--font-scale, 1));
  /* body-2 desktop */
  font-weight: 400;
  max-width: 200px;
  margin: 0 auto;
}

/* Sections */
.section-soft {
  background: var(--bg-cream);
}

.section-cream {
  background: var(--bg-cream);
  /* using same or similar */
}

.section-cta {
  background: var(--section-cta);
  padding: 4rem 0;
}

/* About Text */
.about-text p {
  color: var(--text-dark);
  font-size: calc(24px * var(--font-scale, 1));
  /* h4 desktop */
  font-weight: 500;
  margin-bottom: 1.5rem;
}

/* Social Icons */
.social-icons a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  /* background-image provided in snippet but we use img tags, keep that */
}

.social-icons a:hover {
  transform: translateY(-2px);
}

/* Mosaic */
.mosaic-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
}

.mosaic-grid img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  display: block;
}

/* Callout / CTA (Quer falar no podcast?) */
.callout-card {
  /* No specific card bg in snippet, it's just on the section-cta background */
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.callout-card h3 {
  font-size: calc(48px * var(--font-scale, 1));
  /* h2 desktop */
  font-weight: 700;
}

.callout-card p {
  font-size: calc(24px * var(--font-scale, 1));
  /* h4 desktop */
  font-weight: 500;
  max-width: 570px;
  margin: 0 auto 24px;
}

.callout-figure {
  /* Using existing image */
}

/* Latest Episode */
.latest-card {
  background: #000;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  max-width: 802px;
  max-height: 451px;
}

.btn-spotify {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 18px;
  border-radius: 999px;
  background: #1DB954;
  color: #fff;
  text-decoration: none;
  position: absolute;
  margin-left: 500px;
  z-index: 99;
  margin-top: -25px;
  border: solid 1px #000;
}

.btn-spotify:hover {
  filter: brightness(.95);
}

/* Keep existing latest-card styles mostly, just ensure fonts match */

/* Instagram Reels Carousel */
.insta-carousel {
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  --insta-gap: 16px;
  --insta-visible: 4;
}

.insta-track {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--insta-gap);
  padding: 8px 0 24px;
  transition: transform 0.6s ease;
  will-change: transform;
}

.insta-track.no-transition {
  transition: none;
}

.insta-reel {
  display: block;
  flex: 0 0 auto;
  width: clamp(140px, 22vw, 220px);
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.insta-reel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.insta-carousel .carousel-control-prev,
.insta-carousel .carousel-control-next {
  width: 12%;
}

.insta-carousel .carousel-control-prev-icon,
.insta-carousel .carousel-control-next-icon {
  filter: invert(1);
  opacity: 0.9;
}

@media (max-width: 991.98px) {
  .insta-carousel {
    --insta-gap: 10px;
    --insta-visible: 2;
  }
}

@media (max-width: 575.98px) {
  .insta-carousel .carousel-control-prev,
  .insta-carousel .carousel-control-next {
    width: 18%;
  }

  .insta-reel {
    width: calc((100% - var(--insta-gap)) / 2);
  }
}

/* Quick Content (Conteúdos rápidos) */
.quick-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: #fff;
  height: 100%;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.quick-card img {
  height: 190px;
  object-fit: cover;
}

.quick-card .card-body {
  padding: 1rem;
}

/* Footer */
.footer {
  background: var(--text-dark);
  /* #212121 */
  color: #fff;
  /* font-family: "Montserrat", sans-serif; */
}

.footer p.small {
  /* font-family: "Montserrat", sans-serif; */
  font-weight: 300;
  font-size: calc(16px * var(--font-scale, 1));
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer li {
  list-style: none;
  margin-bottom: 8px;
}

/* Typography Overrides based on snippet */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-dark);
}

.modal-header {
  border-bottom: none;
}

/* Responsive Overrides mimicking snippet queries roughly */
@media (max-width: 991.98px) {
  .pill-header {
    width: 94vw;
  }

  .hero h1 {
    font-size: calc(32px * var(--font-scale, 1));
    /* tablet h1 approx */
  }

  .hero .lead {
    font-size: calc(18px * var(--font-scale, 1));
  }

  .mosaic-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .floating-header {
    top: 20px;
    transform: translateY(20%);
  }
  #textResizeContainer {
    padding: 10px 0;
  }

  .hero h1 {
    font-size: calc(28px * var(--font-scale, 1));
    padding: 0 15px;
  }

  .mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .btn-spotify {
    left: 50%;
    transform: translate(-50%, -50%);
    margin-left: auto;
    margin-top: 0px;
    padding: 5px 10px;
  }

  .btn-spotify svg {
    width: 26px;
    height: 26px;
  }

  .latest-card {
    max-width: 347px;
    max-height: 195px;
  }

  .latest-visual iframe {
    height: 195px;
    width: 347px;
  }

  .page-offset {
    padding-top: 100px;
  }

  .icon-inline {
    width: 20px;
    height: 20px;
  }

  #newsletter::placeholder {
    font-size: calc(14px * var(--font-scale, 1));

  }

  .btn-brand {
    font-size: calc(16px * var(--font-scale, 1)) !important;
    padding: 0.2rem 1rem !important;
  }

  .input-group {
    padding: 5px !important
  }

  .input-group .form-control {
    font-size: calc(16px * var(--font-scale, 1));
  }

  .feature-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 8px;
  }

  .feature-card img {
    width: 56px;
    height: 56px;
  }

  .feature-card p:not(.h6) {
    font-size: calc(14px * var(--font-scale, 1));
  }

  .last-card {
    margin-bottom: 110px;
  }

  .mosaico-convidados-mobile {
    margin-top: -100px;
    z-index: 1;
  }

  .texto-sn {
    padding: 0 50px;
  }

  .about-text p {
    font-size: calc(16px * var(--font-scale, 1));
    font-weight: 300;
  }

  .section-cta .social-icons {
    justify-content: center;
  }

  .callout-card {
    padding: 40px 20px 40px 0;
  }

  .callout-card h3 {
    font-size: calc(24px * var(--font-scale, 1));
  }

  .callout-card p {
    font-size: calc(16px * var(--font-scale, 1));
  }

  .callout-figure {
    width: 87px;
    height: 87px;

  }

  .callout-card .col-3,
  .callout-card .col-9 {
    padding: 0;
  }

  .section-cta {
    padding: 0 !important;
  }

  .section-soft {
    background-color: #d7ffba;
    margin-top: 50px;
  }

  .sponsor-img {
    margin-top: -100px;
  }

  .texto-footer {
    padding: 0 40px;
    text-align: center;
  }

  .texto-footer h2 {
    font-size: calc(24px * var(--font-scale, 1));
    padding: 0 20px;
  }

  .texto-footer h4 {
    font-size: calc(16px * var(--font-scale, 1));
    font-weight: 300;
    padding: 0 10px;
  }

  .menu-footer li {
    text-decoration: none;
    list-style: none;
    font-size: calc(14px * var(--font-scale, 1));
    font-weight: 300;
  }

}
