/* GERAL --------------------------------------------------------------------*/ 


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; }

.main-container {
    width: 100%;
    max-width: 1200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* CABEÇALHO -----------------------------------------------------------------*/
.header-section {
    background: linear-gradient(to right, #F48FB1, #7B1FA2);
    padding: 20px 40px;
    color: white;
}

.header-content {
    max-width: 1200px;
    height: auto; /* Alterado para auto para mobile */
    margin: 0 auto;
    display: flex;
    gap: 100px;
    align-items: center; /* Adicionado para melhor alinhamento */
}

.logo {
    width: 45%;
    height: auto;
    margin-left: 20px;
    font-size: 32px;
    font-weight: bold;
    display: flex;
    align-items: left;
}

.header-text {
    margin-top: 50px;
    text-align: center;
}
.header-text h1 {
    margin: 0;
    font-size: 2.5rem;
    color: #4FC3F7;
}
.header-text h2 {
    margin: 5px 0 0;
    font-size: 1.8rem;
    font-weight: 400;
}

/* MEDIA QUERIES PARA MOBILE */
@media screen and (max-width: 768px) {
    .header-section {
        padding: 15px 20px; /* Reduz padding em mobile */
    }
    
    .header-content {
        flex-direction: column; /* Empilha elementos verticalmente */
        gap: 30px; /* Reduz gap entre elementos */
        height: auto; /* Altura automática */
        min-height: 400px; /* Altura mínima para manter proporção */
    }
    
    .logo {
        width: 100%; /* Logo ocupa largura total */
        margin-left: 0;
        justify-content: center; /* Centraliza logo */
        text-align: center;
    }
    
    .header-text {
        margin-top: 0; /* Remove margem superior */
        width: 100%; /* Texto ocupa largura total */
        text-align: center;
    }
    
    .header-text h1 {
        font-size: 2rem; /* Reduz tamanho da fonte */
        line-height: 1.2;
    }
    
    .header-text h2 {
        font-size: 1.4rem; /* Reduz tamanho da fonte */
        line-height: 1.3;
    }
}

/* Ajustes para telas muito pequenas */
@media screen and (max-width: 480px) {
    .header-section {
        padding: 10px 15px;
    }
    
    .header-content {
        gap: 20px;
        min-height: 350px;
    }
    
    .header-text h1 {
        font-size: 1.7rem;
    }
    
    .header-text h2 {
        font-size: 1.2rem;
    }
    
    .logo {
        font-size: 28px; /* Reduz tamanho da logo */
    }
}

/* MENU --------------------------------------------------------------------*/

.nav-section {
    background-color: #4FC3F7;
    padding: 15px 40px;
}
nav ul {
    display: flex;
    justify-content: center;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
}
nav ul li { 
    margin-right: 25px; 
}
nav ul li:last-child {
    margin-right: 0;
}
nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
    padding: 5px 0;
    position: relative;
    white-space: nowrap; /* Evita quebra de texto */
}
nav ul li a:hover { 
    color: #FFD54F; 
}

/* HERO */
.hero-section {
    background-color: white;
    padding: 50px 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}
.hero-text h1 {
    font-size: 42px;
    color: #7B1FA2;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero-text p {
    color: #666;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    font-size: 16px;
}
.btn-primary {
    background-color: #7B1FA2;
    color: white;
}
.btn-primary:hover {
    background-color: #5e1680;
    transform: translateY(-2px);
}

/* MEDIA QUERIES PARA TABLET */
@media screen and (max-width: 1024px) {
    .nav-section {
        padding: 15px 20px;
    }
    
    nav ul {
        gap: 15px;
        flex-wrap: wrap; /* Permite quebra de linha se necessário */
    }
    
    nav ul li {
        margin-right: 15px;
    }
    
    .hero-section {
        padding: 40px 30px;
    }
    
    .hero-text {
        padding-right: 30px;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-text p {
        font-size: 17px;
    }
}

/* MEDIA QUERIES PARA MOBILE */
@media screen and (max-width: 768px) {
    .nav-section {
        padding: 10px 15px;
    }
    
    nav ul {
        flex-direction: column; /* Menu vertical */
        gap: 10px;
        align-items: center;
        display: none; /* Esconde menu por padrão */
    }
    
    /* Menu hamburguer para mobile */
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        padding: 5px;
        margin: 0 auto;
    }
    
    .nav-section nav {
        position: relative;
    }
    
    /* Mostra menu quando tem classe 'active' */
    nav ul.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #4FC3F7;
        padding: 15px;
        z-index: 1000;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    nav ul li {
        margin-right: 0;
        width: 100%;
        text-align: center;
    }
    
    nav ul li a {
        display: block;
        padding: 10px 0;
        white-space: normal; /* Permite quebra de texto */
    }
    
    /* HERO SECTION MOBILE */
    .hero-section {
        padding: 30px 20px;
        flex-direction: column; /* Empilha elementos */
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center; /* Centraliza texto no mobile */
    }
    
    .hero-text h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .hero-text p {
        font-size: 16px;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 15px;
    }
}

/* Ajustes para telas muito pequenas */
@media screen and (max-width: 480px) {
    .nav-section {
        padding: 8px 10px;
    }
    
    .menu-toggle {
        font-size: 20px;
    }
    
    nav ul.active {
        padding: 10px;
    }
    
    .hero-section {
        padding: 25px 15px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-text p {
        font-size: 15px;
    }
    
    .btn {
        padding: 8px 20px;
        font-size: 14px;
    }
}

/* Para garantir que o menu hamburguer só aparece em mobile */
.menu-toggle {
    display: none;
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
}

/* CARROSSEL HERO -------------------------------------------------------------------- */
.carousel-container {
    margin: 20px auto 0;
    max-width: 500px;
    overflow: hidden;
    position: relative;
    border-radius: 2px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.carousel-slide {
    display: flex;
    transition: transform 0.5s ease;
}
.carousel-item {
    min-width: 100%;
    padding: 15px;
    box-sizing: border-box;
    background-color: rgba(255,255,255,0);
    color: #7B1FA2;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
}

/* BENEFÍCIOS */
.benefits-section {
    background-color: #FFD54F;
    padding: 50px 40px;
    position: relative; /* IMPORTANTE: para conter a imagem absoluta */
    min-height: 350px; /* Altura mínima para caber a imagem */
    overflow: visible; /* Permite que a imagem saia */
}

.benefits-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative; /* Para z-index funcionar */
    z-index: 2; /* Texto fica acima da imagem */
}

.benefits-text {
    flex: 2;
    min-width: 300px;
    padding-right: 30px;
    position: relative;
    z-index: 3; /* Texto na frente de tudo */
}

.benefits-text h2 {
    color: #7B1FA2;
    margin-bottom: 20px;
    font-size: 28px;
}

.benefits-list { 
    list-style-type: none; 
    position: relative;
    z-index: 3;
}

.benefits-list li {
    margin-bottom: 10px;
    color: #333;
    font-size: 16px;
    position: relative;
    padding-left: 30px;
    z-index: 3;
}

.benefits-list li::before {
    content: '✓';
    color: #7B1FA2;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.benefits-image {
    flex: 1;
    min-width: 200px;
    position: relative;
    z-index: 1; /* Imagem fica atrás do texto */
    height: 345px; /* Altura fixa para posicionar */
    overflow: visible; /* Permite imagem sair */
}

/* PERSONAGEM INDEX --------------------------------------------------------------------*/
.benefits-image img {
    width: 300px; /* Largura maior que o container */
    height: auto;
    max-width: none; /* Remove limite de max-width */
    
    /* Posiciona no canto superior direito */
    position: absolute;
    right: 0px;    /* Sai para fora da div à direita */
    top: -150Px;       /* Cabeça sai para cima da div */
    
    /* Remove todos efeitos */
    border: none;
    box-shadow: none;
    transform: none;
    background: none;
    
    /* Garante que seja exibida */
    display: block;
    
    /* Não use all: unset pois remove display e position */
    object-fit: contain;
}

/* RESPONSIVO */
@media (max-width: 992px) {
    .benefits-container {
        flex-direction: column;
    }
    
    .benefits-text {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .benefits-image {
        height: 250px;
        width: 100%;
        text-align: center;
    }
    
    .benefits-image img {
        position: relative;
        right: auto;
        top: auto;
        width: 300px;
        margin: -40px auto 0;
        display: inline-block;
    }
}

@media (max-width: 576px) {
    .benefits-section {
        padding: 40px 20px;
        min-height: 300px;
    }
    
    .benefits-image {
        height: 200px;
    }
    
    .benefits-image img {
        width: 250px;
        margin-top: -30px;
    }
}



/* CONTEÚDOS --------------------------------------------------------------------*/
.contents-section {
    background-color: white;
    padding: 50px 40px;
}
.section-title {
    color: #7B1FA2;
    margin-bottom: 30px;
    font-size: 32px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}
.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: #4FC3F7;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.year-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.year-card {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}
.year-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #4FC3F7;
}
.year-card h3 { color: #7B1FA2; margin-bottom: 10px; }
.year-card p { color: #666; font-size: 14px; }

/* SEÇÃO DE ATIVIDADES --------------------------------------------------------------------*/
.activities-section { padding: 50px 40px; }

#year1 { background-color: #F48FB1; }
#year2 { background-color: #FFD54F; }
#year3 { background-color: #87d2f5; }
#year4 { background-color: #bd88d4; }
#year5 { background-color: #F48FB1; }
#apoio { background-color: #FFD54F; }
#jogos { background-color: #87d2f5; }

/* GRID padrão (até 3) */
.activities {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

/* Card */
.activity-card {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s;
    border-left: 5px solid #4FC3F7;
}
.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.activity-card h4 {
    color: #7B1FA2;
    margin-bottom: 10px;
}
.activity-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

/* imagem do card */
.img-activity-container {
    margin: 10px auto 12px;
    width: 300px;
    height: 250px;
    overflow: hidden;
    position: relative;
    border-radius: 2px;
    box-shadow: 0 8px 10px rgba(0,0,0,0.2);
}
.img-activity {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

/* ====== CARROSSEL DAS ATIVIDADES (quando >3) ====== */
.products-wrap {
    position: relative;
}

/* Ativa modo carrossel somente quando a seção tiver .is-carousel */
.products-wrap.is-carousel .activities {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 6px 48px; /* espaço para as setas */
}

/* card “fixo” no carrossel */
.products-wrap.is-carousel .activity-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
}

/* botões */
.carousel-btn {
    display: none;
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    font-size: 28px;
    line-height: 44px;
    text-align: center;
    background: rgba(255,255,255,.95);
    box-shadow: 0 8px 20px rgba(0,0,0,.18);
    z-index: 10;
}
.products-wrap.is-carousel .carousel-btn { display: block; }
.carousel-btn.prev { left: -8px; }
.carousel-btn.next { right: -8px; }

/* scrollbar */
.products-wrap.is-carousel .activities::-webkit-scrollbar { height: 10px; }
.products-wrap.is-carousel .activities::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,.18);
    border-radius: 999px;
}

/* RODAPÉ */
.footer-section {
    background: #7F23A3;
    color: white;
    text-align: center;
    padding: 30px 40px;
}
.footer-section a { color: white; }

/* RESPONSIVO */
@media (max-width: 980px){
    .activities { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .products-wrap.is-carousel .activity-card { flex-basis: 280px; }
}
@media (max-width: 576px){
    body { padding: 10px; }
    .header-section, .nav-section, .hero-section, .benefits-section, .contents-section, .activities-section, .footer-section {
        padding: 25px 15px;
    }
    .hero-text { text-align: center; padding-right: 0; }
    .activities { grid-template-columns: 1fr; }
    .products-wrap.is-carousel .activity-card { flex-basis: 84vw; }
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: bold;
}
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    nav ul { display: none; flex-direction: column; width: 100%; }
    nav ul.active { display: flex; }
    nav ul li { margin: 5px 0; }
    nav ul li a {
        display: block;
        padding: 10px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 5px;
    }
}
.activities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

/* Card */
.activity-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s;
  border-left: 5px solid #4FC3F7;
}
.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* imagem do card */
.img-activity-container {
  margin: 10px auto 12px;
  width: 300px;
  height: 250px;
  overflow: hidden;
  position: relative;
  border-radius: 2px;
  box-shadow: 0 8px 10px rgba(0,0,0,0.2);
}
.img-activity {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

/* ====== CARROSSEL ATIVIDADES (ativa com .is-carousel) ====== */
.products-wrap { position: relative; }

/* Setas escondidas por padrão */
.carousel-btn { display: none; }

.products-wrap.is-carousel .activities {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 6px 48px; /* espaço para as setas */
}

.products-wrap.is-carousel .activity-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
}

.products-wrap.is-carousel .carousel-btn {
  display: block;
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-size: 28px;
  line-height: 44px;
  text-align: center;
  background: rgba(255,255,255,.95);
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
  z-index: 10;
}

.carousel-btn.prev { left: -8px; }
.carousel-btn.next { right: -8px; }

/* scrollbar */
.products-wrap.is-carousel .activities::-webkit-scrollbar { height: 10px; }
.products-wrap.is-carousel .activities::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,.18);
  border-radius: 999px;
}

/* Responsivo */
@media (max-width: 980px){
  .activities { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .products-wrap.is-carousel .activity-card { flex-basis: 280px; }
}

@media (max-width: 576px){
  .activities { grid-template-columns: 1fr; }
  .products-wrap.is-carousel .activity-card { flex-basis: 84vw; }
}
/* ===== SETAS SVG — LATERAL + TRANSPARENTE ===== */
.products-wrap.is-carousel .carousel-btn{
  display: flex;
  align-items: center;
  justify-content: center;

  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: none;

  /* 60% transparente */
  background: rgba(123,31,162,0.6);
  color: #fff;

  cursor: pointer;
  z-index: 30;

  box-shadow: 0 10px 22px rgba(0,0,0,.22);
  transition:
    background .2s ease,
    box-shadow .2s ease,
    transform .2s ease,
    opacity .2s ease;
}

/* posição */
.products-wrap.is-carousel .carousel-btn.prev{ left: -18px; }
.products-wrap.is-carousel .carousel-btn.next{ right: -18px; }

/* SVG */
.products-wrap.is-carousel .carousel-icon{
  width: 24px;
  height: 24px;
  display: block;
  transition: transform .2s ease;
}

/* hover: botão mais visível */
.products-wrap.is-carousel .carousel-btn:hover{
  background: rgba(123,31,162,0.9);
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}

/* 👉 deslocamento LATERAL do ícone */
.products-wrap.is-carousel .carousel-btn.prev:hover .carousel-icon{
  transform: translateX(-6px);
}

.products-wrap.is-carousel .carousel-btn.next:hover .carousel-icon{
  transform: translateX(6px);
}

/* clique */
.products-wrap.is-carousel .carousel-btn:active{
  transform: scale(0.95);
}

/* foco acessível */
.products-wrap.is-carousel .carousel-btn:focus-visible{
  outline: 3px solid #FFD54F;
  outline-offset: 3px;
}

/* mobile */
@media (max-width: 768px){
  .products-wrap.is-carousel .carousel-btn{
    width: 44px;
    height: 44px;
    background: rgba(123,31,162,0.55);
  }

  .products-wrap.is-carousel .carousel-icon{
    width: 22px;
    height: 22px;
  }

  .products-wrap.is-carousel .carousel-btn.prev{ left: -10px; }
  .products-wrap.is-carousel .carousel-btn.next{ right: -10px; }
}
/* CABEÇALHO PRODUTOS  */

/* ====== ESTILOS PARA PÁGINA DE PRODUTO ====== */

/* HEADER DO PRODUTO  */
.header-section-product {
    background: linear-gradient(135deg, #F48FB1 0%, #7B1FA2 100%);
    padding: 25px 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.header-section-product::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

.header-content-product {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-product {
    width: 160px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.header-text-product {
    font-family: 'DynaPuff';
    font-weight: 600; /* ou 700 para mais grossa */
    font-size: 42px;
    text-align: right;
    flex: 1;
}

.header-text-product h1 {
    font-family: 'DynaPuff';
    font-weight: 600; /* ou 700 para mais grossa */
    font-size: 42px;
    margin: 0;
    font-size: 2.2rem;
    color: white;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

.header-text-product h2 {
    font-family: 'DynaPuff';
    font-weight: 600; /* ou 700 para mais grossa */
    font-size: 42px;
    margin: 8px 0 0;
    font-size: 1.4rem;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* HERO DO PRODUTO */
.product-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    gap: 50px;
    position: relative;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><path d="M0,0 L20,0 L20,20 L0,20 Z" fill="none" stroke="%237B1FA2" stroke-width="0.1" opacity="0.1"/></svg>');
    pointer-events: none;
}

/* IMAGEM DO PRODUTO */
.product-img-contenier {
    width: 750px; /* Largura fixa */
    height: 650px; /* Altura fixa */
    position: relative;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Mantém proporção, mostra imagem completa */
    /* ou object-fit: cover; Preenche o container, pode cortar partes da imagem */
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--primary);
    padding: 15px;
    background: white;
    transition: var(--transition);
}
.product-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(123, 31, 162, 0.3);
}

/* INFORMAÇÕES DO PRODUTO */
.product-info {
    flex: 1.2;
    min-width: 300px;
    padding: 30px;
    text-align: left;
}

.product-info h1 {
    font-family: 'DynaPuff';
    font-weight: 550; /* ou 700 para mais grossa */
    font-size: 55px;
    color: #7B1FA2;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(123, 31, 162, 0.2);
    position: relative;
    padding-bottom: 15px;
    
    /* Opcional: ajustes específicos para DynaPuff */
    letter-spacing: 0.5px;
}


.product-info h1::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--accent), var(--secondary));
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.subtitle {
    font-family: 'DynaPuff', cursive;
    font-size: 24px; /* Aumentado de 20px */
    color: var(--accent);
    margin-bottom: 25px;
    font-weight: 700; /* Mais forte */
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    border-radius: var(--radius);
    border-left: 5px solid var(--accent);
    box-shadow: var(--shadow);
}


/* BADGE DE PROMOÇÃO */
.badge-sale {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--secondary) 0%, #F48FB1 100%);
    color: black;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(123, 31, 162, 1);
    animation: pulse 10s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* EFEITO DE ZOOM (PULSAR) PARA PREÇO PROMOCIONAL */
@keyframes pulseZoom {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(123, 31, 162, 0);
    }
    50% {
        transform: scale(1.15);
        text-shadow: 0 10px 25px rgba(123, 31, 162, 0.6);
    }
}

/* ESTRUTURA DE PREÇOS COM LABELS */
.price-container {
    margin: 5px 0;
    display: flex;
    justify-content: center;
    align-items: baseline;
    text-align: center;
}

.price-labels {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.price-label {
    font-size: 18px;
    color: #666;
    font-weight: 600;
}

/* Preço antigo com label */
.price-old {
    font-size: 30px;
    color: #000000;
    text-decoration: line-through;
    text-decoration-thickness: 2px; /* Linha mais fina */
    text-decoration-color: #f70c0c; /* Cor específica da linha */
    opacity: 0.9;
    font-weight: 500;
}

/* Preço atual SEM promoção */
.price-container:not(:has(.price-labels)) .price-current {
    font-size: 68px;
    font-weight: 800;
    color: #7b1fa2;
    
    /* Animação de zoom (pulsar) */
    animation: pulseZoom 4s ease-in-out infinite;
    
    /* Sombra sutil permanente */
    text-shadow: 0 3px 8px rgba(123, 31, 162, 0.2);
    
    /* Efeito gradiente no texto com roxo */
    background: linear-gradient(to bottom, #7b1fa2, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    /* Apenas padding mínimo, sem fundo */
    padding: 5px 10px;
    display: inline-block;
}

/* Preço atual COM promoção */
.price-labels .price-current {
    font-size: 68px;
    font-weight: 800;
    color: #7b1fa2;
    
    /* Animação de zoom (pulsar) */
    animation: pulseZoom 4s ease-in-out infinite;
    
    /* Sombra sutil permanente */
    text-shadow: 0 3px 8px rgba(123, 31, 162, 0.2);
    
    /* Efeito gradiente no texto com roxo */
    background: linear-gradient(to bottom, #7b1fa2, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    /* Apenas padding mínimo, sem fundo */
    padding: 5px 10px;
    display: inline-block;
}

/* Container limpo sem fundo */
.price-labels {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 0;
}


/* Container limpo sem fundo */
.price-labels {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 0;
}

/* Ajuste para telas menores */
@media (max-width: 576px) {
    .price-labels .price-current {
        font-size: 36px;
        animation: pulseZoom 4s ease-in-out infinite;
    }
    
    @keyframes pulseZoom {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.12); }
    }
}

/* Mobile */
@media (max-width: 576px) {
    .price-labels {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .price-label {
        font-size: 16px;
    }
}


/* BOTÃO DE COMPRA */
.btn-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 20px 0;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #8529A3 0%, #B454A9 100%); 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(123, 31, 162, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(123, 31, 162, 0.4);
}

.btn-lg {
    padding: 20px 50px;
    font-size: 20px;
    min-width: 300px;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.btn:hover::after {
    left: 100%;
}

/* GARANTIA */
.guarantee {
    color: var(--gray);
    font-size: 16px;
    margin-top: 25px;
    padding: 15px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.highlight {
    background: linear-gradient(135deg, rgba(123, 31, 162, 0.05) 0%, rgba(244, 143, 177, 0.05) 100%);
    border: 2px solid #7B1FA2;
    border-radius: 15px;
    padding: 25px 35px;
    margin: 25px auto;
    text-align: center;
    max-width: 700px;
    width: 90%;
}

/* Título do highlight */
.highlight h3 {
    font-family: 'DynaPuff', cursive;
    font-weight: 600;
    font-size: 28px;
    color: #7B1FA2;
    margin-bottom: 10px;
}

/* Texto do highlight */
.highlight p {
    font-family: 'DynaPuff', cursive;
    font-weight: 500;
    font-size: 20px;
    color: #333;
    line-height: 1.4;
    margin: 0;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .highlight {
        padding: 20px 25px;
        margin: 20px auto;
    }
    
    .highlight h3 {
        font-size: 24px;
    }
    
    .highlight p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .highlight {
        padding: 15px 20px;
        border-radius: 12px;
    }
    
    .highlight h3 {
        font-size: 20px;
    }
    
    .highlight p {
        font-size: 16px;
    }
}

/* SEÇÕES DE CONTEÚDO */

/* CONTAINER PRINCIPAL COM PERSONAGEM FIXO */
.sections-with-personagem {
    position: relative;
    background: white;
}

/* PERSONAGEM FIXO À DIREITA */
.personagem-fixed {
    position: absolute;
    right: 150px;
    top: 45%;
    transform: translateY(-50%);
    width: 450px;
    z-index: 5;
    pointer-events: none; /* Não interfere com o conteúdo */
}

.personagem-img {
    width: 100%;
    height: auto;
    max-height: 800px;
    object-fit: contain;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
    opacity: 0.9;
    animation: floatPersonagem 8s ease-in-out infinite;
}

/* Animação flutuante sutil */
@keyframes floatPersonagem {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-25px);
    }
}

/* SEÇÕES COM LARGURA REDUZIDA PARA CABER O PERSONAGEM */
.section-products {
    padding: 60px 40px;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 2;
    background: white;
}

.section-products:last-child {
    border-bottom: none;
}

.section-products-content {
    display: flex;
    max-width: 900px; /* Reduzida para caber personagem */
    margin: 0 auto;
    position: relative;
}

.section-products-text {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.section-products-space {
    flex: 0 0 350px; /* Espaço igual à largura do personagem */
    visibility: hidden; /* Espaço reservado mas invisível */
}

.section-products-title {
    color: #7B1FA2;
    font-size: 32px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    text-align: left;
}

.section-products-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #7B1FA2, #F48FB1);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.section-products-description {
    color: #333;
    line-height: 1.8;
    font-size: 18px;
    text-align: left;
}

.section-products-description p {
    margin-bottom: 20px;
}


/* RESPONSIVO - Em telas menores, personagem some */
@media (max-width: 1200px) {
    .personagem-fixed {
        display: none;
    }
    
    .section-products-content {
        max-width: 100%;
    }
    
    .section-products-space {
        display: none;
    }
    
    .section-products-text {
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    .section-products {
        padding: 40px 20px;
    }
    
    .section-products-title {
        font-size: 28px;
        text-align: center;
    }
    
    .section-products-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .section-products-description {
        font-size: 16px;
        text-align: justify;
    }


/* ESTRUTURA DE PREÇOS COM LABELS - VERSÃO PRICE-ROW */

.price-row {
    margin: 5px 0;
    display: flex;
    justify-content: center;
    align-items: baseline;
    text-align: center;
    flex-wrap: wrap;
}

/* Estilos para quando NÃO tem promoção (apenas preço normal) */
.price-row .price-now {
    font-size: 68px;
    font-weight: 800;
    color: #7b1fa2;
    
    /* Animação de zoom (pulsar) */
    animation: pulseZoom 4s ease-in-out infinite;
    
    /* Sombra sutil permanente */
    text-shadow: 0 3px 8px rgba(123, 31, 162, 0.2);
    
    /* Efeito gradiente no texto com roxo */
    background: linear-gradient(to bottom, #7b1fa2, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    /* Apenas padding mínimo, sem fundo */
    padding: 5px 10px;
    display: inline-block;
}

/* Estilos para quando TEM promoção */
.price-row:has(.price-sale) {
    /* Container para os labels "De" e "Por" */
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 0;
}

/* Adiciona label "De:" antes do preço antigo */
.price-row:has(.price-sale) .price-old::before {
    content: "De:";
    font-size: 18px;
    color: #666;
    font-weight: 600;
    margin-right: 8px;
}

/* Adiciona label "Por:" antes do preço promocional */
.price-row:has(.price-sale) .price-sale::before {
    content: "Por:";
    font-size: 18px;
    color: #666;
    font-weight: 600;
    margin-right: 8px;
}

/* Preço antigo com estilo */
.price-row .price-old {
    font-size: 30px;
    color: #000000;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: #f70c0c;
    opacity: 0.9;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Preço promocional */
.price-row .price-sale {
    font-size: 68px;
    font-weight: 800;
    color: #7b1fa2;
    
    /* Animação de zoom (pulsar) */
    animation: pulseZoom 4s ease-in-out infinite;
    
    /* Sombra sutil permanente */
    text-shadow: 0 3px 8px rgba(123, 31, 162, 0.2);
    
    /* Efeito gradiente no texto com roxo */
    background: linear-gradient(to bottom, #7b1fa2, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Animação de pulsar */
@keyframes pulseZoom {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

/* MEDIA QUERIES PARA MOBILE */
@media screen and (max-width: 768px) {
    .price-row .price-now,
    .price-row .price-sale {
        font-size: 48px !important;
        animation: none; /* Remove animação em mobile se quiser */
    }
    
    .price-row .price-old {
        font-size: 22px !important;
    }
    
    .price-row:has(.price-sale) .price-old::before,
    .price-row:has(.price-sale) .price-sale::before {
        font-size: 16px !important;
        margin-right: 5px;
    }
    
    .price-row:has(.price-sale) {
        gap: 5px;
    }
}

@media screen and (max-width: 480px) {
    .price-row .price-now,
    .price-row .price-sale {
        font-size: 36px !important;
    }
    
    .price-row .price-old {
        font-size: 18px !important;
    }
    
    .price-row:has(.price-sale) .price-old::before,
    .price-row:has(.price-sale) .price-sale::before {
        font-size: 14px !important;
    }
}




