    /* --- RESET & VARIABLES --- */
:root {
  --color-pink: #ff69b4;
  --color-pink-hover: #e05e9c;
  --color-brown: #4a2e2c;
  --color-brown-light: #5c4033;
  --color-bg: #ffaeba;
  --color-text: #333333;
  --color-lilac: #b388ff;
  --color-blue: #4dd0e1;
  --color-peach: #ffab91;
  --color-yellow: #facc15;

  --shadow-hard: 4px 4px 0px 0px #000;
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.9);
}

@font-face {
  font-family: 'Lemon Milk';
  /* O nome deve ser exatamente como está na pasta: LEMONMILK-Light.woff2 */
  src: url('../assets/fonts/lemonmilk/LEMONMILK-Light.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Atron";
  /* Certifique-se de que o nome do arquivo é EXATAMENTE como está na pasta */
  src: url('../assets/fonts/atron/Aston-Script.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap; 
}

@font-face {
    font-family: 'Degular';
    src: url('./fonts/Degular/Degular/Degular-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}



* {

  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  padding-top: 80px;
}


a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* Garante que a Degular seja a fonte base para textos genéricos */
body, p,input, textarea, .detail-val {
    font-family: 'Degular', sans-serif;
    text-transform: none; /* Reset global de uppercase para textos */
}

/* Mantém o Lemon Milk apenas para o que for estritamente necessário ou títulos */
h1, h2, h3, h4, .nav-item, .badge, .btn {
    font-family: "Lemon Milk";
   
}



img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- UTILITIES --- */
.text-pink {
  color: var(--color-pink);
  font-weight: 100;
}
.text-brown {
  color: var(--color-brown);
   font-weight: 100;
}
.text-light-brown {
  color: #4862aa;
  font-size: 40px;
  font-weight: 500;
}
.hidden {
  display: none;
}
.marker-font {
  font-family: var(--font-marker);
}
.icon-sm {
  width: 16px;
  height: 16px;
}
.icon-inline {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
}

/* Estilização da Paginação do WordPress para o seu layout */
.pagination-wrapper ul.page-numbers {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    gap: 10px;
    margin-top: 40px;
}

.pagination-wrapper .page-numbers li span.current {
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
}

.pagination-wrapper .page-numbers li a, 
.pagination-wrapper .page-numbers li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 2px solid #000;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.2s ease;
}

.pagination-wrapper .page-numbers li a:hover {
    background-color: #ff90b3; /* Cor de destaque ao passar o mouse */
    transform: translate(-3px, -3px);
    box-shadow: 3px 3px 0 #000;
}

/* Ajuste para os ícones de seta (Lucide) dentro da paginação */
.pagination-wrapper .page-numbers svg {
    width: 20px;
    height: 20px;
}

.bg-main{
    background-color: #f8f0ce;

}

/* --- NAVBAR --- */
.navbar {

    position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999;


  background-color: var(--color-bg);
  border-bottom: 1px solid #e5e7eb;
  font-family: var(--font-display);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo img {
  height: 250px;
}

.nav-links {
  display: flex;
  gap: 40px;
  color: white;
}

.nav-item {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  position: relative;
  padding: 2px 0;
}

.nav-item:hover {
  color: var(--color-pink);
}

.nav-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-pink);
  transition: width 0.3s;
}

.nav-item:hover::after {
  width: 100%;
}

/* Dropdown */
.dropdown-wrapper {
  position: relative;
}

.dropdown-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--color-bg);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  width: 180px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}

.dropdown-wrapper:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}




.dropdown-menu a {
      font-family: 'Lemon Milk';
  display: block;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.dropdown-menu a:hover {
  background-color: #f9fafb;
  color: var(--color-pink);
}

.menu-btn {
  display: none;
  color: #f9fafb;
}

.mobile-menu {
  background-color: var(--color-bg);
  border-top: 1px solid #e5e7eb;
  padding: 10px 20px;
}

.mobile-menu a {
  display: block;
  padding: 10px 0;
  font-weight: 500;
  text-transform: uppercase;
  color: #f9fafb;
}

/* --- HERO CAROUSEL --- */
.hero-carousel {
  width: 100%;
  height: 900px;
  position: relative;
  background-color: #000;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  align-items: flex-end;
  padding: 0 40px 60px 40px;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  color: #fff;

  margin: 0 auto;
  width: 100%;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.badge-pink {
  background-color: var(--color-pink);
  color: #000;
}

.slide-content h2 {
  font-family: 'Lemon Milk';
  font-size: 3rem;
  font-weight: 100;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
}

.btn-pink {
  background-color: var(--color-pink);
  color: #000;
}

.btn-pink:hover {
  background-color: var(--color-pink-hover);
}

.carousel-ctrl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  z-index: 10;
}

.carousel-ctrl:hover {
  background: rgba(0, 0, 0, 0.8);
}

.prev {
  left: 20px;
}
.next {
  right: 20px;
}

/* --- NEWS SECTION --- */
/* Balanced Pop Design: Clean Cards + Playful Background */
.news-section {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;

  background-color: #fff; /* Bright Base */

  /* Layered Background: Grid + Pop Icons */
  background-image: 
    /* Icons layer */
    url(../assets/icone-revista-histeria_8.png),
    url(../assets/icone-revista-histeria_7.png),
    url(../assets/icone-revista-histeria_11.png),
    /* Grid layer */
    linear-gradient(rgba(77, 208, 225, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 208, 225, 0.2) 1px, transparent 1px);

  background-position:
    10% 20%,
    90% 15%,
    5% 85%,
    /* Icons positions */ 0 0,
    0 0; /* Grid positions */

  background-repeat: no-repeat, no-repeat, no-repeat, repeat, repeat;
  background-size:
    150px,
    250px,
    180px,
    /* Icons sizes */ 30px 30px,
    30px 30px; /* Grid size */

  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}

.content-wrapper {
  position: relative;
  z-index: 5;
  background-color: transparent;
  padding: 0;
}

.section-header {
  margin-bottom: 50px;
  text-align: left;
}

.news-section .title-lg {
  font-family: "Lemon Milk";
  font-size: 3.5rem;
font-weight: 100;
  line-height: 1;
  text-transform: uppercase;
  color: #111;
  position: relative;
  display: inline-block;
  background: #fff;
  padding: 0 10px;
  border: 2px solid #000;
  box-shadow: 4px 4px 0px var(--color-blue);
  transform: rotate(-1deg);
  font-size: 40px;
  line-height: 1.3;
}

.title-lg {
  font-size: 40px;
}

.underline-deco {
  display: none;
}

.news-grid-layout {
   display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 40px;
}

/* Feature Card - Balanced Pop */
.main-feature-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #000; /* Distinct border */
  /* Solid Color Shadow for Pop effect */
  box-shadow: 8px 8px 0px var(--color-pink);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  background: #fff;
    grid-column: 1 / -1; /* ocupa as 2 colunas */
}

.main-feature-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 12px 12px 0px var(--color-pink);
}

.feature-image-wrapper {
  height: 450px;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #000;
}

.feature-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.main-feature-card:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 60%);
}

#teatro-home {
  margin-bottom: 25px;
}
.feature-text {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 35px;
  color: #fff;
  width: 100%;
}

.badge-sm {
  font-size: 0.8rem;
  margin-bottom: 12px;
  border: 1px solid #fff;
  background: var(--color-pink);
  color: #000;
  padding: 4px 10px;
  border-radius: 4px;

  text-transform: uppercase;
  display: inline-block;
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

.feature-text h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
 font-weight: 100;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 2px 2px 0px #000;
  margin-bottom: 15px;
}

.read-more {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-yellow);
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Sidebar News - Balanced Pop */
.sidebar-news {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 208%;
}

.side-card {
  height: auto;
  display: flex;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 12px;
  overflow: hidden;
    flex-direction: column;
  /* Solid Color Shadow */
  box-shadow: 6px 6px 0px var(--color-blue);
  transition: all 0.2s

  

}

@media (max-width: 990px) {
  .news-grid-layout {
    grid-template-columns: 1fr;
  }

  .sidebar-news {
      display: block;
 width: 100%;
 margin-bottom: 40px;
  }
  .side-card{
      margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .news-grid-layout {
    grid-template-columns: 1fr;
  }

  .sidebar-news {
      display: block;
 width: 100%;
 margin-bottom: 40px;
  }
  .side-card{
      margin-bottom: 40px;
  }
}

.side-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px var(--color-blue);
}

.side-img {

  position: relative;
  border-right: 2px solid #000;
}

.side-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.side-content {
  width: 65%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tag-mini {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  background: var(--color-pink);
  color: #fff;
  display: inline-block;
  padding: 2px 6px;
  border: 1px solid #000;
  width: max-content;
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

.side-content h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
font-weight: 100;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #000;
  text-transform: uppercase;
}

.meta {
  margin-top: auto;
  font-size: 0.75rem;
  font-weight: 700;
  color: #666;
  border-top: 1px dashed #ccc;
  padding-top: 8px;
}

/* --- MUSIC SECTION (Pinned Cards) --- */
.music-section {
  padding: 100px 0;
  position: relative;
background-image: url("../assets/creak-board.png");
  background-position: center;

  background-size: contain;
  min-height: 100vh;
  border-bottom: 4px solid #3e2b22;
  overflow: hidden;
}

.bg-wood {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: url("https://www.transparenttextures.com/patterns/wood-pattern.png");
  filter: contrast(120%);
  pointer-events: none;
}

.section-title-wrapper.center {
  text-align: center;
  margin-bottom: 60px;
}

.pinned-title {
  display: inline-block;
  background-color: #f4f1ea;
  padding: 15px 40px;
  transform: rotate(-2deg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #ccc;
  position: relative;
}

.pin {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 10;
}
.pin-red-dark {
  background-color: #dc2626;
  border: 1px solid #991b1b;
}
.pin-red {
  background-color: #ef4444;
  border: 1px solid #b91c1c;
}
.pin-yellow {
  background-color: var(--color-yellow);
  background-color: #3b82f6;
  border: 1px solid #ca8a04;
}
.pin-blue {
  border: 1px solid #1d4ed8;
}

.pinned-title h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: #4862aa;
  text-transform: uppercase;
  margin: 0;
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.music-card-wrapper {
  position: relative;
  transition: transform 0.3s;
}

.rotate-pos {
  transform: rotate(2deg);
}
.rotate-neg {
  transform: rotate(-1deg);
}

.music-card-wrapper:hover {
  transform: rotate(0) scale(1.05);
  z-index: 20;
}

.music-card {
  background-color: #fff;
  padding: 12px;
  padding-bottom: 24px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.music-img {
  height: 200px;
  border: 1px solid #eee;
  margin-bottom: 15px;
  overflow: hidden;
  position: relative;
}

.music-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s;
}

.music-card-wrapper:hover img {
  filter: grayscale(0%);
}

.img-tag {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 4px 8px;
  letter-spacing: 1px;
}

.music-content {
  padding: 0 5px;
}

.music-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
font-weight: 100;
  line-height: 1.1;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #111;
}

.music-content:hover h3 {
  color: var(--color-pink);
}

.summary {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: #666;
  margin-bottom: 15px;
  border-left: 2px solid var(--color-pink);
  padding-left: 10px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed #ccc;
  padding-top: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #999;
}

.btn-link {
  color: #000;
  font-weight: 900;
  font-size: 0.75rem;
}
.btn-link:hover {
  color: var(--color-pink);
}

/* --- TEAM SECTION (ID Cards) --- */
.team-section {
  padding: 80px 0;
  background-color: #fff;
  background-image: radial-gradient(#e5e5e5 1px, transparent 1px);
  background-size: 20px 20px;
}

.about-intro {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
}

.intro-text {
  width: 50%;
}
.headline-xl {

  font-size: 40px;
font-weight: 100;

  line-height: 1;
  margin-bottom: 20px;
}

.underline-thick {
  text-decoration: underline;
  text-decoration-color: var(--color-pink);
  text-decoration-thickness: 4px;
  text-underline-offset: 4px;
  color: var(--color-pink);
font-weight: 100;
      
}

.about-box {
  background: #fff;
  border: 3px solid #000;
  padding: 24px;
  box-shadow: 8px 8px 0px #000;
}

.about-box p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  text-align: justify;
}

.highlight-marker {
  display: block;
  margin-top: 15px;
  background-color: var(--color-pink);
  color: #fff;
  padding: 0 5px;
  display: inline-block;
  transform: rotate(-1deg);
}

.intro-image {
  width: 50%;
  position: relative;
  height: 300px;
}

.image-bg {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 100%;
  height: 100%;
  background-color: var(--color-blue);
  border: 3px solid #000;
}

.image-frame {
  position: relative;
  border: 3px solid #000;
  background: #fff;
  padding: 8px;
  height: 100%;
}

.image-frame img {
  justify-content: center;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.est-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #000;
  color: #fff;
  padding: 5px 10px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.75rem;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.id-card {
  width: 465px;
  min-height: 331px;
  background-color: #fffbf0;
  border: 3px solid #000;
  padding: 0;
  font-family: 'Lemon Milk';
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}

.id-card:hover {
  transform: translateY(-5px) rotate(0deg) !important;
  z-index: 10;
}
/* feed insta */


.insta-follow-wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.insta-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 28px;
  border-radius: 50px;

  background-color: #ff69b4; /* rosa da identidade */
  color: #ffffff;

  font-weight: 600;
  font-size: 16px;
  text-decoration: none;

  transition: transform 0.2s ease, background-color 0.2s ease;
}

.insta-follow-btn i {
  width: 20px;
  height: 20px;
}

.insta-follow-btn:hover {
  background-color: #e05e9c;
  transform: translateY(-2px);
}



/* ID Card Variants */
.id-card.pink {
  box-shadow: 12px 12px 0px var(--color-pink);
}
.id-card.lilac {
  box-shadow: 12px 12px 0px var(--color-lilac);
}
.id-card.blue {
  box-shadow: 12px 12px 0px var(--color-blue);
}

.rotate-neg-lg {
  transform: rotate(-3deg);
}

.id-header {
  background-color: #000;
  color: #fff;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px -3px 0 -3px;
  transform: rotate(-0.5deg);
  border-bottom: 3px solid transparent;
}
.id-card.pink .id-header {
  border-color: var(--color-pink);
}
.id-card.lilac .id-header {
  border-color: var(--color-lilac);
}
.id-card.blue .id-header {
  border-color: var(--color-blue);
}

.id-header h1 {
  font-size: 1.5rem;
  margin: 0;
  letter-spacing: 1px;
}

.badge-role {
  font-family: var(--font-oswald);
  font-size: 0.7rem;
  font-weight: 700;
  background: #fff;
  color: #000;
  padding: 2px 6px;
  transform: rotate(2deg);
  border: 1px solid #fff;
}
.id-card.pink .badge-role {
  background: var(--color-pink);
}
.id-card.lilac .badge-role {
  background: var(--color-lilac);
}
.id-card.blue .badge-role {
  background: var(--color-blue);
}

.id-body {
  padding: 20px;
  display: flex;
  gap: 20px;
  flex: 1;
}

.id-photo-wrapper {
  width: 110px;
  position: relative;
  transform: rotate(-2deg);
}

.tape {
  position: absolute;
  top: -10px;
  left: 25%;
  width: 50%;
  height: 25px;
  opacity: 0.8;
  z-index: 2;
}
.id-card.pink .tape {
  background-color: var(--color-pink);
}
.id-card.lilac .tape {
  background-color: var(--color-lilac);
}
.id-card.blue .tape {
  background-color: var(--color-blue);
}

.polaroid {
  background: #fff;
  padding: 5px;
  border: 2px solid #222;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  height: 140px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.polaroid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.id-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.id-name-block {
  border-bottom: 2px solid #000;
  margin-bottom: 8px;
  padding-bottom: 4px;
}

.label {
  font-family: var(--font-oswald);
  font-size: 0.6rem;
  font-weight: 700;
  background: #000;
  color: #fff;
  padding: 1px 4px;
}
.id-card.pink .label {
  background: var(--color-pink);
  color: #000;
}
.id-card.lilac .label {
  background: var(--color-lilac);
  color: #000;
}
.id-card.blue .label {
  background: var(--color-blue);
  color: #000;
}

#movie-lb {
  margin-top: 0px;
}

.value-lg {
  display: block;
  font-family: var(--font-oswald);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
}

.detail-row {
  margin-bottom: 8px;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.label-gray {
  display: block;
  background: #e5e5e5;
  font-size: 0.6rem;
  font-weight: 700;
  width: max-content;
  padding: 0 4px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.detail-val {
  font-size: 0.75rem;
  font-weight: 700;
}
.italic {
  font-style: normal;
}

.signature {
  margin-top: auto;
  text-align: right;
  font-family: var(--font-script);
  font-size: 1.5rem;
  transform: rotate(-3deg);
}
.color-pink {
  color: var(--color-pink);
  font-family: "Atron";
}
.color-lilac {
  color: var(--color-lilac);
  font-family: "Atron";
}
.color-blue {
  color: var(--color-blue);
  font-family: "Atron";
}

/* --- TRENDS SECTION --- */
.trends-section {
  padding: 80px 20px;
  color: var(--pop-text-main);
  background-color: #fff0ff;
  background-image: radial-gradient(#ffcce6 2px, transparent 2px);
  background-size: 30px 30px;
}

.trends-header {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hashtag-pill {
  background: #fff;
  border: 2px solid var(--color-text);
  padding: 4px 15px;
  border-radius: 50px;
  box-shadow: 3px 3px 0px #000;
}
.hashtag-pill span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trends-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.trend-card {
  background: #fff;
  border: 3px solid var(--color-text);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s;
  cursor: pointer;
}

.trend-card:hover {
  transform: translateY(-5px);
}

.shadow-pink {
  box-shadow: 8px 8px 0px var(--color-pink);
}
.shadow-lilac {
  box-shadow: 8px 8px 0px var(--color-lilac);
}
.shadow-blue {
  box-shadow: 8px 8px 0px var(--color-blue);
}
.shadow-peach {
  box-shadow: 8px 8px 0px var(--color-peach);
}

.trend-img-wrapper {
  height: 180px;
  border-bottom: 3px solid var(--color-text);
  overflow: hidden;
}

.trend-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.trend-card:hover img {
  transform: scale(1.1);
}

.trend-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.trend-badge {
  align-self: flex-start;
  border: 2px solid var(--color-text);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: #fff;
}
.bg-pink {
  background-color: var(--color-pink);
}
.bg-lilac {
  background-color: var(--color-lilac);
}
.bg-blue {
  background-color: var(--color-blue);
}
.bg-peach {
  background-color: var(--color-peach);
}
.text-dark {
  color: #1a1a1a;
}

.trend-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 15px;
}

.trend-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px dashed #ccc;
  padding-top: 15px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #777;
}

.go-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--color-text);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 0px var(--color-text);
  transition: all 0.2s;
}

.trend-card:hover .go-btn {
  background: var(--color-text);
  color: #fff;
  box-shadow: none;
  transform: translate(2px, 2px);
}

/* --- LITERATURE SECTION --- */
.literature-section {
  padding: 100px 0;
  background-color: #fdfbf7;
  position: relative;
  border-top: 4px solid #000;
  overflow: hidden;
}

.bg-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#e5e7eb 1px, transparent 1px);
  background-size: 100% 2rem;
  margin-top: 1rem;
  pointer-events: none;
}

.margin-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100px;
  width: 1px;
  background-color: rgba(252, 165, 165, 0.5);
  border-right: 1px solid rgba(252, 165, 165, 0.3);
  pointer-events: none;
}

.literature-container {
  padding-left: 80px;
  position: relative;
  z-index: 10;
}

.section-title-icon {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}

.icon-box-tea {
  background: #ffe36c;
  padding: 12px;
  border: 2px solid #000;
  box-shadow: var(--shadow-hard);
  color: #fff;
}
.text-brown {
  color: #56331b;
}

.icon-box {
  background: var(--color-pink);
  padding: 12px;
  border: 2px solid #000;
  box-shadow: var(--shadow-hard);
  color: #fff;
}

.subtitle-mono {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #666;
  margin-top: 5px;
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.book-card {
  background: #fff;
  border: 2px solid #000;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.book-card:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 0px #000;
}

.book-header {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.book-cover {
  width: 100px;
  height: 150px;
  border: 1px solid #000;
  flex-shrink: 0;
}

.book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-meta {
  display: flex;
  flex-direction: column;
}


/* --- CORREÇÃO MOBILE LITERATURA --- */

/* 1. Força a quebra de texto em e-mails longos ou nomes grandes */
.book-meta .author {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    max-width: 100%;
}

/* 2. Remove o recuo lateral extra apenas no celular para ganhar espaço */
@media (max-width: 768px) {
    .literature-container {
        padding-left: 0 !important;
    }

    .books-grid {
        padding: 0 !important; /* Remove padding extra do grid se houver */
    }
    
    .book-card {
        width: 100%;
        max-width: 100%; /* Garante que o card respeite a largura da tela */
    }
}
.genre-tag {
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  background: #f3f4f6;
  border: 1px solid #d1d5db;
  padding: 2px 6px;
  border-radius: 4px;
  width: max-content;
  margin-bottom: 10px;
  color: #555;
}

.book-meta h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
font-weight: 100;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 5px;
}

.author {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: #666;
  margin-bottom: 10px;
}

.rating {
  display: flex;
  gap: 2px;
}
.rating svg {
  width: 14px;
  height: 14px;
}
.fill {
  fill: currentColor;
}
.empty {
  color: #d1d5db;
}
.text-yellow {
  color: var(--color-yellow);
}
.text-blue {
  color: var(--color-blue);
}

.book-body {
  flex: 1;
  margin-bottom: 20px;
}
.excerpt {
  font-size: 0.9rem;
  font-style: italic;
  color: #4b5563;
  border-left: 2px solid #e5e7eb;
  padding-left: 12px;
}

.btn-outline-block {
  width: 100%;
  border: 2px solid #000;
  padding: 10px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s;
}

.book-card:hover .btn-outline-block {
  background: #000;
  color: #fff;
}

/* --- NEWSLETTER --- */
.newsletter-section {
  padding: 100px 20px;
  background-image: url(../assets/newleader-backgorund.png);
  background-position: center;

  background-size: contain;
  background-repeat: no-repeat;
  background-size: cover;

  position: relative;
  overflow: hidden;
}

.paper-note {
  max-width: 700px;
  margin: 0 auto;
  background-color: #fffdf0;
  padding: 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: rotate(1deg);
  position: relative;
  text-align: center;
}

.tape-top {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 140px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(2px);
}

.subtitle-bold {
  font-family: var(--font-mono);
  font-weight: 700;
  color: #555;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px;
  border: 2px solid #d1d5db;
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--color-pink);
}

.newsletter-form button {
  background-color: var(--color-pink);
  color: #fff;
  font-weight: 100;
  text-transform: uppercase;
  padding: 0 30px;
  border: 2px solid var(--color-pink);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.newsletter-form button i {
  font-size: 18px;
}

.newsletter-form button:hover {
  background-color: #fff;
  color: var(--color-pink);
}

.note-footer {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #999;
}

/* --- INSTAGRAM SECTION --- */
.insta-section {
  padding: 80px 0;
  background-color: #fff6ce;
  background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
}

.title-md {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
}

.slider-wrapper {
  position: relative;
  margin-top: 40px;
  padding: 0 40px;
}

.insta-grid {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 20px;
  scrollbar-width: none; /* Firefox */
}
.insta-grid::-webkit-scrollbar {
  display: none;
} /* Chrome */

.insta-card {
  min-width: 300px;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.insta-card:hover {
  transform: scale(1.02);
}

.overlay-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.overlay-grad .tag {
  color: var(--color-pink);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.overlay-grad .link {
  color: #ccc;
  font-size: 0.85rem;
  font-weight: 700;
}
.overlay-grad .link:hover {
  color: #fff;
  text-decoration: underline;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
  z-index: 20;
}
.nav-btn:hover {
  background: var(--color-pink);
  color: #fff;
}
.left {
  left: 0;
}
.right {
  right: 0;
}

/* Garante que o container do plugin ocupe 100% da largura mas permita scroll */
#insta-scroll-container > div {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: max-content !important; /* Força a largura a ser a soma dos filhos */
}

/* Força os itens do Spotlight a não encolherem */
#insta-scroll-container .sli-item {
    flex: 0 0 auto !important; /* Impede que o item encolha */
    width: 300px !important;   /* Tamanho fixo igual ao seu card */
    margin-right: 20px;        /* Seu gap */
    display: block !important;
}

/* Opcional: Remove a paginação ou botões nativos do plugin se aparecerem */
#insta-scroll-container .sli-load-more-container,
#insta-scroll-container .sli-header {
    display: none !important;
}

/* --- FOOTER --- */
footer {
  background-color: #111;
  color: #ccc;
  padding: 60px 0 20px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.logo-footer {
  align-items: center;
  display: flex;
  justify-content: center;
}
.logo-footer img {
  height: 90px;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: center;
}

.footer-col h4 {
  font-family: var(--font-display);
  color: var(--color-pink);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.footer-col ul li a:hover {
  color: var(--color-pink);
}

.social-icons {
  display: flex;
  gap: 15px;
  font-size: 25px;
}
.social-icons a:hover {
  color: var(--color-pink);
}

.copyright {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  font-size: 0.75rem;
  color: #777;
}

@media (max-width: 1680px) {
  .music-section {
background-image: url("../assets/bg-1680.png");
  background-position: center;
  background-size: contain;
  background-repeat: repeat;
  min-height: 100vh;
  border-bottom: 4px solid #3e2b22;
  overflow: hidden;

  }
}

@media (max-width: 1564px) {
  .music-section {
background-image: url("../assets/bg-1680.png");
  background-position: center;
  background-size: contain;
  background-repeat: repeat;
  min-height: 100vh;
  border-bottom: 4px solid #3e2b22;
  overflow: hidden;

  }
}
@media (max-width: 1556px){
    .music-section{
    background-image: url("../assets/bg-1556.jpg");
    background-position: center;
        background-size: contain;
        background-repeat: repeat;
        min-height: 100vh;
        border-bottom: 4px solid #3e2b22;
        overflow: hidden;
}

    
}


@media (max-width: 1440px) {
  .music-section {
    background-image: url(../assets/bg-1440.png);
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    min-height: 100vh;
  }
}

@media (max-width: 1280px) {
  .dropdown-menu {
    left: -16%;
  }
  
  .section-header{
      display: flex;
    
  }
  .news-section .title-lg {
padding: 0 40px;

  }
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .news-grid-layout {
    grid-template-columns: 1fr;
  }
  .music-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .music-card-wrapper {
    transform: none !important;
  }
  .team-grid {
    gap: 40px;
  }
  .about-intro {
    flex-direction: column;
  }
  .intro-text,
  .intro-image {
    width: 100%;
  }
  .trends-grid {
    grid-template-columns: 1fr 1fr;
  }
  .books-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .margin-line {
    display: none;
  }
  .literature-container {
    padding-left: 20px;
  }
  .newsletter-form {
    flex-direction: column;
  }

  .intro-image {
    position: relative;
    height: 200px;
  }

  .newsletter-form button {
    background-color: var(--color-pink);
    color: #fff;
    font-weight: 100;
    text-transform: uppercase;
    padding: 0 30px;
    border: 2px solid var(--color-pink);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    font-size: 20px;
    justify-content: center;
  }

  .newsletter-form button i {
    font-size: 25px;
  }
  
   .section-header{
      display: flex;
      justify-content: center;
  }
  .news-section .title-lg {
padding: 0 40px;

  }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .headline-xl {
    font-size: 2.5rem;
  }
  .trends-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .id-card {
    width: 100%;
    min-width: auto;
  }
}

/* --- CINEMA SECTION --- */
.cinema-section {
  padding: 80px 0;
  background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
  background-color: #7c5133;
  position: relative;
  overflow: hidden;
  border-bottom: 8px solid var(--color-pink);
}

.pattern-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#333 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
    pointer-events: none;
}

.text-white {
  font-size: 40px;
  color: #fff;
  font-family: "Lemon Milk";
  font-weight: 100;
}

.text-stroke-pink {
  -webkit-text-stroke: 2px var(--color-blue);
  color: transparent;
}

.subtitle-neon {
  font-family: var(--font-marker);
  color: var(--color-blue);
  font-size: 1.8rem;
  transform: rotate(-2deg);
  display: inline-block;
  margin-top: 10px;
}

.cinema-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.movie-ticket {
  background: #fff;
  color: #000;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid #000;
  box-shadow: 10px 10px 0px var(--color-blue);
  transition: transform 0.3s;
}

.movie-ticket:hover {
  transform: translateY(-10px) rotate(0deg) !important;
  z-index: 20;
  box-shadow: 15px 15px 0px var(--color-pink);
}

.rotate-neg-sm {

}
.rotate-pos-sm {

}
.z-up {
  z-index: 5;
}

.poster-box {
  height: 200px;
  position: relative;
  border-bottom: 3px solid #000;
  overflow: hidden;
}

.poster-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.movie-ticket:hover .poster-box img {
  transform: scale(1.1);
}

.play-btn-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s;
   pointer-events: none;
}

.play-btn-overlay svg {
  width: 50px;
  height: 50px;
  color: #fff;
  fill: rgba(255, 255, 255, 0.2);
}

.movie-ticket:hover .play-btn-overlay {
  opacity: 1;
  pointer-events: auto;
}

.ticket-details {
  padding: 20px;
  background-image: linear-gradient(#fff 1px, transparent 1px);
  background-size: 100% 24px; /* Notebook paper effect */
}

.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px
  
}

.genre-badge {
  font-family: var(--font-oswald);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 6px;
  color: #fff;
  border: 1px solid #000;
  box-shadow: 2px 2px 0px #000;
}

.date {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: #555;
}

.ticket-details h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 100;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.rating-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}
.rating-stars svg {
  width: 14px;
  height: 14px;
}
.fill-yellow {
  fill: var(--color-yellow);
  color: var(--color-yellow);
}

.ticket-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.5;
}

.btn-ticket {
  display: block;
  text-align: center;
  background: #000;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px;
  border: 2px solid #000;
  transition: all 0.2s;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
}

.btn-ticket:hover {
  background: var(--color-pink);
  color: #000;
  box-shadow: 2px 2px 0px #000;
  transform: translate(2px, 2px);
}

/* Update Responsive for new section */
@media (max-width: 992px) {
  .cinema-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 40px;
  }
}

/* --- AJUSTES DE RESPONSIVIDADE (MANTER NO FINAL DO ARQUIVO) --- */
@media (max-width: 1024px) {
  .logo img {
    height: 180px;
  } /* Evita que o logo empurre a navbar */
  .hero-carousel {
    height: 600px;
  }
  .slide-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  /* Navbar Mobile Fix */
  .nav-container {
  }
  .logo img {
    height: 140px;
  }

  /* Grid de Notícias Home */
  .news-grid-layout {
        display: grid;
       grid-template-columns: 1fr;
     gap: 50px;
     width: 88%;
     margin-left: 25px;
  }
  .feature-image-wrapper {
    height: 300px;
  }
  .feature-text h3 {
    font-size: 1.5rem;
            text-shadow: 1px 2px 0px #000;
  }

  /* Cartões de ID (Time) */
  .team-grid {
    gap: 30px;
    padding: 0 10px;
  }
  .id-card {
    width: 100%;
    max-width: 400px;
    min-height: auto;
    transform: none !important;
  }
  .id-body {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .signature {
    text-align: center;
    margin-top: 15px;
  }

  /* Outras Seções */
  .music-grid,
  .cinema-grid,
  .books-grid,
  .trends-grid {
    grid-template-columns: 1fr;
    padding: 0 10px;
    
  }
  
  .books-grid{
      margin-left: 25px;
  }
  .movie-ticket {
    transform: none !important;
  }

  .about-intro {
    flex-direction: column;
    text-align: center;
  }
  .headline-xl {
    font-size: 2.5rem;
  }

  .newsletter-form {
    flex-direction: column;
  }
  
  .section-title-icon{
      margin-left: 15px;
  }
}

@media (max-width: 480px) {
  .newsletter-section {
    background-image: url(../assets/bg-news.png);
  }
  .music-section {

    background-image: url(../assets/mobile-bg.png);

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .hero-carousel {
    height: 500px;
  }
  .slide-content h2 {
    font-size: 1.5rem;
  }
  .section-header .title-lg {
    font-size: 2.2rem;

    text-align: center;
  }
  .insta-card {
    min-width: 260px;
  }

  .image-bg {
    display: none;
  }
  .image-frame {
    height: auto;
  }

  .image-frame img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .newsletter-section {
    background-image: url(../assets/bg-news.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

/* --- FORÇAR ENCAIXE NO MOBILE --- */

/* 1. Trava a largura máxima de todos os containers de imagem */
.feat-img, 
.card-img-box, 
.article-hero,
.featured-article,
.news-card-simple {
    max-width: 100% !important;
    width: 100% !important;
    overflow: hidden !important; /* O segredo: corta tudo que passar da borda */
    box-sizing: border-box !important; /* Inclui a borda no cálculo do tamanho */
}

/* 2. Força a imagem a preencher o espaço sem estourar */
.feat-img img, 
.card-img-box img,
.article-hero img,
img.wp-post-image, 
img.attachment-post-thumbnail {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important; /* Garante que preencha a altura definida */
    object-fit: cover !important; /* Mantém a proporção e corta o excesso */
    display: block !important;
}

/* 3. Ajuste específico para telas pequenas (Mobile) */
@media (max-width: 768px) {
    /* Define uma altura fixa para não ficar muito alto nem sumir */
    .feat-img {
        height: 250px !important; 
    }
    
    .card-img-box {
        height: 200px !important;
    }

    /* Remove margens negativas se houver */
    .featured-article, .news-card-simple {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }
}


