/* ===== Paleta PromoPing ===== */

/* Scroll suave para navegação */
html {
  scroll-behavior: smooth;
}

/* Offset para compensar header fixo */
section[id] {
  scroll-margin-top: 80px;
}

:root {
    /* Cores principais da paleta */
    --promoping-orange-light: #f4af55;
    --promoping-orange-medium: #ed9a6c;
    --promoping-orange-dark: #dc7c35;
    --promoping-cream: #fff5d5;
    --promoping-dark: #0e0f19;
    
    /* Cores secundárias */
    --promoping-orange-gradient: linear-gradient(135deg, #f4af55 0%, #ed9a6c 50%, #dc7c35 100%);
    --promoping-cream-transparent: rgba(255, 245, 213, 0.95);
    --promoping-dark-transparent: rgba(14, 15, 25, 0.15);
    
    /* Cores de texto */
    --text-primary: #0e0f19;
    --text-secondary: #2d1b69;
    --text-light: #fff5d5;
    
    /* Cores de fundo */
    --bg-primary: #fff5d5;
    --bg-secondary: #f4af55;
    --bg-gradient: linear-gradient(135deg, #f4af55 0%, #ed9a6c 50%, #dc7c35 100%);
}


/* ===== Global ===== */

/* Focus visível para navegação por teclado (acessibilidade) */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--promoping-orange-dark, #dc7c35);
  outline-offset: 2px;
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--promoping-orange-dark, #dc7c35);
  outline-offset: 2px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    background: linear-gradient(135deg, #f4af55 0%, #ed9a6c 50%, #dc7c35 100%);
    background-attachment: fixed;
    background-size: cover;
    color: var(--text-primary);
    min-height: 100vh;
}


/* ===== Header ===== */

.pp-header {
    background: var(--promoping-cream-transparent);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 24px;
    margin: 30px auto 0 auto;
    max-width: 1400px;
    box-shadow: 0 8px 32px var(--promoping-dark-transparent);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    padding: 24px 40px;
}

.pp-container {
    max-width: 1200px;
    /* aumentei um pouco para dar mais espaço */
    margin: 0 auto;
    padding: 0 32px;
    /* aumentei o padding */
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-logo {
    height: 32px;
    width: auto;
}

.brand-name {
    font-weight: 700;
    color: #fff;
}

.header-actions {
    display: flex;
    gap: 16px;
}

.pp-btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
}

.pp-btn-ghost {
    background: var(--promoping-orange-gradient);
    color: var(--text-light);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px var(--promoping-dark-transparent);
}

.pp-btn-ghost:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}


/* ===== Hero ===== */

.pp-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: transparent;
    padding: 0;
    position: relative;
    z-index: 1;
}

.pp-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 40px;
}

.pp-hero-left h1 {
    color: var(--text-light);
    font-size: 5rem;
    margin: 0 0 24px;
    max-width: 14ch;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-shadow: 0 4px 8px var(--promoping-dark-transparent);
}

.pp-hero-title-rotator {
    position: relative;
    display: block;
    min-height: 2.45em;
    perspective: 1400px;
    transform-style: preserve-3d;
}

.pp-hero-title-card {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0;
    backface-visibility: hidden;
    transform-origin: center center -44px;
    will-change: transform, opacity, filter;
}

.pp-hero-title-card-current {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
}

.pp-hero-title-card-next {
    opacity: 0;
    transform: translateY(34px) scale(1.05) rotateX(-68deg);
    filter: blur(6px);
}

.pp-hero-title-rotator.is-animating .pp-hero-title-card-current {
    opacity: 0;
    transform: translateY(-22px) scale(0.92) rotateX(64deg);
    filter: blur(7px);
    transition: transform 0.72s cubic-bezier(0.2, 0.75, 0.2, 1), opacity 0.72s ease, filter 0.72s ease;
}

.pp-hero-title-rotator.is-animating .pp-hero-title-card-next {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
    filter: blur(0);
    transition: transform 0.72s cubic-bezier(0.2, 0.75, 0.2, 1), opacity 0.72s ease, filter 0.72s ease;
}

.pp-hero-title-text {
    display: block;
    width: 100%;
}

.pp-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    margin: 0 0 16px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(10, 15, 27, 0.28);
    color: var(--promoping-orange-light);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
}

.pp-hero-subtitle {
    color: var(--text-light);
    font-size: 1.15rem;
    line-height: 1.55;
    max-width: 560px;
    margin: 0 0 32px;
    opacity: 0.95;
    text-shadow: 0 2px 6px var(--promoping-dark-transparent);
}

.pp-hero-purpose {
    max-width: 560px;
    margin: 0 0 28px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    background: rgba(7, 11, 18, 0.34);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(12px);
}

.pp-hero-purpose-title {
    margin: 0 0 12px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.pp-hero-purpose-list {
    margin: 0;
    padding-left: 1.2rem;
    color: rgba(255, 255, 255, 0.92);
    display: grid;
    gap: 10px;
}

.pp-hero-purpose-list li {
    line-height: 1.55;
}

.pp-hero-right {
    display: flex;
    justify-content: center;
}

.pp-hero-logo {
    width: 100%;
    max-width: 520px;
    /* ainda maior */
    height: auto;
    border-radius: 24px;
    box-shadow: none;
}


/* Botão CTA */

.pp-btn-cta {
    background: var(--promoping-orange-gradient);
    color: var(--text-light);
    padding: 14px 22px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px var(--promoping-dark-transparent);
}

.pp-btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}


/* ===== About ===== */

.pp-about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 0 10px;
    background: transparent;
    position: relative;
    z-index: 1;
}

.pp-about h2 {
    max-width: 860px;
    margin: 0 auto 20px auto;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--text-light);
    text-shadow: 0 2px 4px var(--promoping-dark-transparent);
}

.pp-about-text {
    max-width: 760px;
    margin: 0 auto;
    opacity: 0.95;
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-light);
    text-shadow: 0 1px 2px var(--promoping-dark-transparent);
}

.highlight {
    color: var(--promoping-orange-light);
    font-weight: 700;
}


/* Responsivo para telas menores */

@media (max-width: 900px) {
    .pp-about {
        min-height: 70vh;
        padding: 40px 6px;
    }
    .pp-about h2 {
        font-size: 1.5rem;
    }
    .pp-about-text {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .pp-about {
        min-height: 60vh;
        padding: 24px 2px;
    }
    .pp-about h2 {
        font-size: 1.1rem;
    }
    .pp-about-text {
        font-size: 0.95rem;
    }
}


/* animação para “pular” suavemente */

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}


/* animação de brilho no ícone */

@keyframes pulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 0.6;
        transform: scale(1);
    }
}


/* Animação para rolar horizontalmente */

@keyframes scroll-horizontal {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* ===== SEÇÕES CENTRALIZADAS ===== */
.pp-section-centered {
  padding: 80px 0;
  background: transparent;
  position: relative;
}

.pp-section-centered.alt {
  background: rgba(255, 255, 255, 0.02);
}

.centered-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.centered-content h2 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 40px;
  color: #ffffff;
  text-shadow: 0 4px 8px rgba(255, 255, 255, 0.3);
  letter-spacing: -0.02em;
}

.centered-content .highlight {
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.2);
}

/* ===== Secção Conectar (Discord + email) – estilo texto ===== */
.pp-section-connect {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem 4rem;
  position: relative;
  box-sizing: border-box;
}

.pp-connect-wrap {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.pp-connect-title {
  font-size: clamp(1.625rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.pp-connect-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 1.5rem;
}

.pp-connect-cta-wrap {
  margin: 0 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.pp-discord-bot-cta,
.pp-discord-community-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pp-discord-bot-cta {
  background: #5865F2;
  box-shadow: 0 2px 10px rgba(88, 101, 242, 0.35);
}

.pp-discord-bot-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(88, 101, 242, 0.45);
  background: #6d7af5;
  color: #fff;
}

.pp-discord-bot-cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

.pp-discord-community-cta {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.pp-discord-community-cta:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
}

.pp-discord-community-cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

.pp-discord-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: block;
}

.pp-connect-slogan {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .pp-section-connect {
    padding: 4rem 1.5rem 5rem;
  }
  .pp-connect-title {
    margin-bottom: 1.25rem;
  }
  .pp-connect-desc {
    font-size: 1.0625rem;
    margin-bottom: 1.75rem;
  }
  .pp-connect-cta-wrap {
    margin-bottom: 1.75rem;
  }
  .pp-connect-slogan {
    font-size: 1.0625rem;
  }
}

.text-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

/* Lead text removed - using normal paragraphs now */

.text-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 400;
}

/* Texto justificado para melhor aparência */
.text-content.justified p {
  text-align: justify;
  text-align-last: center;
  hyphens: auto;
  word-spacing: 0.1em;
  letter-spacing: 0.02em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Parágrafos principais esticados */
.text-content.justified p:not(:last-child) {
  max-width: 1000px;
  padding: 0 20px;
}

/* Slogan final destacado */
.text-content.justified p:last-child {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  margin-top: 40px;
  letter-spacing: 0.05em;
  max-width: 700px;
}

/* Removed specific text containers - using normal paragraphs now */

/* ===== RESPONSIVIDADE GLASSMORPHISM ===== */
@media (max-width: 768px) {
  .centered-content h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
  
  .text-content p {
    font-size: 1rem;
  }
  
  .text-content.justified p {
    max-width: 800px;
    word-spacing: 0.05em;
    letter-spacing: 0.01em;
  }
  
  .text-content.justified p:not(:last-child) {
    max-width: 900px;
    padding: 0 15px;
  }
  
  .text-content.justified p:last-child {
    font-size: 1.2rem;
    margin-top: 35px;
    max-width: 500px;
  }
}

@media (max-width: 480px) {
  .centered-content h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  
  .text-content p {
    font-size: 0.95rem;
  }
  
  .text-content.justified p {
    max-width: 600px;
    word-spacing: 0.03em;
    letter-spacing: 0.005em;
    text-align: left;
    text-align-last: left;
  }
  
  .text-content.justified p:not(:last-child) {
    max-width: 700px;
    padding: 0 10px;
  }
  
  .text-content.justified p:last-child {
    font-size: 1.1rem;
    margin-top: 30px;
    text-align: center;
    max-width: 400px;
  }
}

.pp-section {
    padding: 0;
    background: transparent;
    position: relative;
    z-index: 1;
}

.pp-section-split {
    display: flex;
    flex-direction: row;
    gap: 0;
    background: transparent;
    position: relative;
    z-index: 1;
    padding: 80px 20px;
}

.pp-section-split.alt {
    background: transparent;
    position: relative;
    z-index: 1;
    padding: 80px 20px;
}

.pp-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    background: transparent;
}

.pp-split-left,
.pp-split-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: var(--promoping-cream-transparent);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    margin: 24px;
    padding: 40px 32px;
    box-sizing: border-box;
    min-height: 320px;
    box-shadow: 0 8px 32px var(--promoping-dark-transparent);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.pp-split-left:hover,
.pp-split-right:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--promoping-dark-transparent);
}

.pp-split-left::before,
.pp-split-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--promoping-orange-gradient);
    border-radius: 20px 20px 0 0;
}

.pp-split-left {
    align-items: flex-start;
    gap: 18px;
    justify-content: flex-start;
    
}

.pp-split-right {
    align-items: flex-end;
    justify-content: flex-start;
    padding: 32px 28px 32px 28px;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}


/* Títulos das seções iguais */

.pp-split-left h2,
.pp-split-right h2 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-bottom: 18px;
    margin-top: 0;
    line-height: 1.1;
    text-shadow: 0 2px 4px var(--promoping-dark-transparent);
}

.pp-split-left p,
.pp-split-right p {
    font-size: 1.08rem;
    color: var(--text-primary);
    opacity: 1;
    margin: 0;
    max-width: 420px;
    line-height: 1.6;
    font-weight: 400;
}

.pp-split-left p {
    color: var(--text-primary);
}

.pp-split-right p {
    color: var(--text-primary);
}

.pp-section.alt {
    background: transparent;
}


/* Imagens dentro das seções */

.pp-split-img {
    width: 100%;
    max-width: 320px;
    border-radius: 20px;
    box-shadow: 0 8px 32px var(--promoping-dark-transparent);
    object-fit: cover;
    margin-top: 15px;
    margin-bottom: 0;
    align-self: flex-end;
    transition: all 0.3s ease;
}

.pp-split-img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px var(--promoping-dark-transparent);
}


/* Ajuste específico para a imagem debaixo do "Mantenha contato" */

.pp-split-right .pp-split-img {
    margin-right: 0;
    margin-left: auto;
    align-self: flex-end;
    /* empurra ainda mais para a direita */
    transform: translateX(-110px);
    /*nao mexe */
}

@media (max-width: 500px) {
    .pp-split-right .pp-split-img {
        transform: none;
        margin-left: auto;
        margin-right: auto;
        align-self: center;
    }
}


/* Responsividade para telas menores */

@media (max-width: 900px) {
    .pp-section-split,
    .pp-split-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
    }
    .pp-split-left,
    .pp-split-right {
        margin: 16px 0;
        padding: 24px 12px;
        min-height: unset;
        align-items: center;
        text-align: center;
    }
    .pp-split-left h2,
    .pp-split-right h2 {
        font-size: 1.3rem;
    }
    .pp-split-img {
        max-width: 220px;
        margin: 12px auto 0 auto;
        align-self: center;
    }
}


/* Ajuste para dispositivos muito pequenos */

@media (max-width: 600px) {
    .pp-split-left,
    .pp-split-right {
        margin: 8px 0;
        padding: 16px 4px;
    }
    .pp-split-left h2,
    .pp-split-right h2 {
        font-size: 1.1rem;
    }
    .pp-split-img {
        max-width: 140px;
    }
}


/* Responsivo para telas menores */

@media (max-width: 900px) {
    .pp-split-grid {
        flex-direction: column;
        gap: 32px;
        padding: 0 8px;
    }
    .pp-split-left,
    .pp-split-right {
        align-items: center;
        text-align: center;
    }
    .pp-split-left h2 {
        font-size: 1.3rem;
    }
    .pp-split-img {
        max-width: 220px;
    }
}


/* ===== Footer ===== */

.new-footer {
    background: var(--promoping-orange-gradient);
    padding: 60px 20px;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

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

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-brand-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-light);
}

.footer-contact h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin: 0 0 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.footer-contact p {
    color: var(--text-light);
    margin: 0 0 12px;
    font-size: 16px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    transition: transform 0.2s ease, color 0.2s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    color: #ffe6e6;
}


/* ===== Responsividade ===== */

@media (max-width: 860px) {
    .pp-hero-grid,
    .pp-split-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 10px;
    }
    .pp-hero-left h1 {
        font-size: 2rem;
        max-width: 16ch;
    }
    .pp-about h2 {
        font-size: 1.5rem;
    }
    .pp-hero-logo,
    .pp-split-img {
        max-width: 320px;
    }
    .pp-split-left.order-2 h2,
    .pp-split-left.order-2 .titulo-grande,
    .pp-split-left.order-2 .pp-section-title {
        font-size: 1.7rem;
    }
    .footer-contact h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 600px) {
    .header-inner {
        padding: 20px;
    }
    .header-actions {
        gap: 8px;
    }
    .pp-btn {
        padding: 8px 12px;
    }
    .pp-hero-left h1 {
        font-size: 1.3rem;
        max-width: 18ch;
    }
    .pp-about h2 {
        font-size: 1.1rem;
    }
    .pp-hero-logo,
    .pp-split-img {
        max-width: 200px;
    }
    .pp-split-left.order-2 h2,
    .pp-split-left.order-2 .titulo-grande,
    .pp-split-left.order-2 .pp-section-title {
        font-size: 1.1rem;
    }
    .footer-contact h3 {
        font-size: 1rem;
    }
}


.blur-text {
    font-size: 72px;
    color: white;
    opacity: 0;
    filter: blur(10px);
    transform: translateY(-50px);
    animation: reveal 1s ease forwards;
    display: inline-block;
}

@keyframes reveal {
    to {
        opacity: 1;
        filter: blur(0px);
        transform: translateY(0);
    }
}
/* index icones la em baixo*/
.social-icons-imgs {
    display: flex;
    gap: 14px;
    margin-top: 2px;
    margin-bottom: 0;
    align-items: center;
}

.social-icons-imgs img {
    width: 32px;
    height: 32px;
    opacity: 0.18;
    transition: opacity 0.2s;
    object-fit: contain;
    border-radius: 8px;
    background: transparent;
    box-shadow: none;
    display: block;
}

.social-icons-imgs a:hover img {
    opacity: 0.32;
    cursor: pointer;
}

/* ===== RESPONSIVIDADE FOOTER ===== */
@media (max-width: 768px) {
    .new-footer {
        padding: 40px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-contact h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .new-footer {
        padding: 30px 15px;
    }
    
    .footer-brand-name {
        font-size: 24px;
    }
    
    .footer-contact h3 {
        font-size: 1.1rem;
    }
    
    .footer-contact p {
        font-size: 14px;
    }
}

/* ===== GRADIENTE GERAL DA PÁGINA ===== */
body.theme-promoping {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

body.theme-promoping::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.2;
  z-index: -1;
  pointer-events: none;
}

/* ===== COMO FUNCIONA ===== */
.how-section {
  padding: 100px 20px;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.how-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  opacity: 0;
}

.how-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.how-header {
  text-align: center;
  margin-bottom: 80px;
}

.how-header h2 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
  background: linear-gradient(45deg, #ffffff, #f0f8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.how-header p {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  font-weight: 300;
  letter-spacing: 0.5px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  z-index: 1;
}

.how-step {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 24px;
  padding: 50px 30px;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  z-index: 2;
}

.how-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.how-step:hover::before {
  opacity: 1;
}

.how-step:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
  border-color: rgba(255,255,255,0.4);
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.step-icon svg {
  width: 40px;
  height: 40px;
  color: #ff6b35;
  transition: all 0.3s ease;
}

.how-step:hover .step-icon {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 15px 35px rgba(255,107,53,0.3);
}

.how-step:hover .step-icon svg {
  transform: scale(1.1);
  color: #e55a2b;
}

.step-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.step-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.9rem;
  font-weight: 800;
  color: rgba(255,255,255,0.3);
  letter-spacing: 2px;
}

/* ===== SEÇÃO DE PARCEIROS/LOJAS ===== */
.pp-partners {
  padding: 80px 20px;
  padding-top: 5rem;
  margin-top: 4rem;
  background: transparent;
  position: relative;
  overflow: hidden;
}


.partners-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Menos espaço entre o título e o carrossel de marcas */
.pp-partners .max-w-6xl h2,
#parceiros h2 {
  margin-bottom: 0.75rem !important;
}

.partners-text {
  font-size: 1.1rem;
  color: #5a5a5a;
  margin-bottom: 50px;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.partners-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.partners-logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
  width: 100%;
}

.partners-logos-row.single-item {
  justify-content: center;
}

.partner-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

/* Layout automático para parceiros */
.partner-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 3rem;
  padding: 0;
}

.partner-item {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 20;
  flex-shrink: 0;
}

/* Carrossel de parceiros */
.partner-carousel-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  min-height: 56px;
  max-height: 64px;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.partner-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.partner-carousel-canvas {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 48px;
  vertical-align: middle;
}

/* Acessibilidade: conteúdo só para leitores de ecrã */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Legado: mantido para compatibilidade se houver referências */
.partner-carousel-track {
  display: flex;
  align-items: center;
  gap: 3rem 5rem;
  will-change: transform;
}

.partner-carousel-track .partner-item {
  flex-shrink: 0;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .partner-grid {
    gap: 2.5rem 4rem;
  }
  .partner-carousel-track {
    gap: 2.5rem 4rem;
  }
}

@media (min-width: 1024px) {
  .partner-grid {
    gap: 3rem 5rem;
  }
  .partner-carousel-track {
    gap: 3rem 5rem;
  }
}

@media (max-width: 640px) {
  .partner-grid {
    gap: 1.5rem 2rem;
  }
  .partner-carousel-track {
    gap: 1.5rem 2rem;
  }
}

/* Responsividade para logos de parceiros */
@media (max-width: 1024px) {
  .partners-logos {
    gap: 25px;
  }
  
  .partners-logos-row {
    gap: 40px;
  }
  
  .partner-name {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .pp-partners {
    padding: 60px 20px;
  }
  
  .partners-text {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .partners-logos {
    gap: 25px;
  }
  
  .partners-logos-row {
    gap: 30px;
  }
  
  .partner-name {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .pp-partners {
    padding: 50px 15px;
  }
  
  .partners-text {
    font-size: 0.95rem;
    margin-bottom: 35px;
  }
  
  .partners-logos {
    gap: 20px;
  }
  
  .partners-logos-row {
    gap: 20px;
  }
  
  .partner-name {
    font-size: 1.2rem;
  }
}

/* ===== RESPONSIVIDADE COMO FUNCIONA ===== */
@media (max-width: 1024px) {
  .how-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .how-steps::before {
    display: none;
  }
  
  .how-header h2 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .how-section {
    padding: 80px 20px;
  }
  
  .how-header {
    margin-bottom: 60px;
  }
  
  .how-header h2 {
    font-size: 2.5rem;
  }
  
  .how-header p {
    font-size: 1.1rem;
  }
  
  .how-step {
    padding: 40px 25px;
  }
  
  .step-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
  }
  
  .step-icon svg {
    width: 35px;
    height: 35px;
  }
  
  .step-content h3 {
    font-size: 1.3rem;
  }
  
  .step-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .how-section {
    padding: 60px 15px;
  }
  
  .how-header h2 {
    font-size: 2rem;
  }
  
  .how-header p {
    font-size: 1rem;
  }
  
  .how-step {
    padding: 30px 20px;
  }
  
  .step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  .step-icon svg {
    width: 30px;
    height: 30px;
  }
  
  .step-content h3 {
    font-size: 1.2rem;
  }
}


/* ===== PLANOS ===== */
.pp-pricing {
  padding: 100px 20px;
  background: transparent;
  position: relative;
  z-index: 1;
}

.pricing-container {
  max-width: 1400px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 80px;
}

.pricing-header h2 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
  background: linear-gradient(45deg, #ffffff, #f0f8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-header p {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  font-weight: 300;
  letter-spacing: 0.5px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-card {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 16px;
  padding: 0;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.8);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.pricing-card.popular {
  border: 2px solid #ff6b35;
  box-shadow: 0 8px 30px rgba(255,107,53,0.2);
  transform: scale(1.02);
}

.pricing-card.popular:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 45px rgba(255,107,53,0.3);
}

.popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  padding: 6px 20px;
  border-radius: 0 0 10px 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 3px 12px rgba(255,107,53,0.3);
}

.card-header {
  padding: 25px 20px 15px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255,107,53,0.05), rgba(247,147,30,0.05));
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.card-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #2c3e50;
  letter-spacing: 0.3px;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.price .currency {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ff6b35;
}

.price .amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: #2c3e50;
  line-height: 1;
}

.price .period {
  font-size: 0.9rem;
  font-weight: 500;
  color: #7f8c8d;
}

.card-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.features li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  font-size: 0.9rem;
  color: #34495e;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.2s ease;
}

.features li:last-child {
  border-bottom: none;
}

.features li:hover {
  color: #2c3e50;
  padding-left: 3px;
}

.features .check {
  color: #27ae60;
  font-weight: bold;
  font-size: 1rem;
  margin-right: 8px;
  width: 16px;
  text-align: center;
  background: rgba(39,174,96,0.1);
  border-radius: 50%;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== RESPONSIVIDADE PLANOS ===== */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  
  .pricing-card.popular {
    transform: none;
  }
  
  .pricing-card.popular:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 768px) {
  .pp-pricing {
    padding: 80px 20px;
  }
  
  .pricing-header h2 {
    font-size: 2.5rem;
  }
  
  .pricing-header p {
    font-size: 1.1rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 350px;
    margin: 0 auto;
  }
  
  .card-header {
    padding: 20px 15px 12px;
  }
  
  .card-header h3 {
    font-size: 1.1rem;
  }
  
  .price .amount {
    font-size: 1.8rem;
  }
  
  .card-body {
    padding: 15px;
  }
  
  .features li {
    font-size: 0.85rem;
    padding: 6px 0;
  }
}

@media (max-width: 480px) {
  .pp-pricing {
    padding: 60px 15px;
  }
  
  .pricing-header h2 {
    font-size: 2rem;
  }
  
  .pricing-header p {
    font-size: 1rem;
  }
  
  .card-header {
    padding: 18px 12px 10px;
  }
  
  .card-body {
    padding: 12px;
  }
  
  .features li {
    font-size: 0.8rem;
    padding: 5px 0;
  }
}

.pp-btn-outline {
  border: 2px solid var(--promoping-orange-light);
  color: var(--promoping-orange-light);
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-block;
  font-weight: 600;
  transition: all .3s;
}

.pp-btn-outline:hover {
  background: var(--promoping-orange-light);
  color: var(--text-light);
}

.pp-btn-primary {
  background: var(--promoping-orange-gradient);
  color: var(--text-light);
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-block;
  font-weight: 600;
  transition: all .3s;
}

.pp-btn-primary:hover {
  opacity: 0.9;
}

/* ===== DEPOIMENTOS ===== */
.pp-testimonials {
  padding: 50px 20px;
  background: linear-gradient(135deg, #0e0f1900 0%, #1a1b2e00 100%);
  position: relative;
  z-index: 1;
}

.testimonials-container {
  max-width: 1300px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 16px;
}

.testimonials-badge {
  display: inline-block;
  background: rgba(255, 167, 66, 0.616);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 165, 75, 0.3);
}

.testimonials-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.testimonials-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Carrossel de depoimentos (canvas) – cards lado a lado com espaçamento */
.testimonials-columns-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  overflow: hidden;
  position: relative;
  min-height: 220px;
  max-height: 240px;
  box-sizing: border-box;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
}

/* Canvas dos depoimentos – desenho controla espaçamento entre cards (CONFIG.gap) */
.testimonials-canvas {
  display: block;
  width: 100%;
  min-height: 220px;
  vertical-align: middle;
  box-sizing: border-box;
}

.testimonials-canvas-message {
  display: none;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 20px;
  font-size: 1rem;
}

/* Legado: mantido se houver referências */
.testimonials-column {
  display: flex !important;
  flex-direction: row !important;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  backdrop-filter: blur(10px);
  width: 380px;
  min-width: 380px;
  flex-shrink: 0;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0);
}

.testimonial-stars {
  margin-bottom: 20px;
  display: flex;
  gap: 4px;
}

.testimonial-stars .star {
  font-size: 1.25rem;
  line-height: 1;
}

.testimonial-stars .star.filled {
  color: #fa5c00;
}

.testimonial-stars .star.empty {
  color: rgba(255, 255, 255, 0.2);
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

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

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FFA54B 0%, #dc7c35 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.testimonial-role {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.4;
}

.testimonial-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-placeholder {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

.testimonial-content {
  flex: 1;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsividade */
@media (max-width: 768px) {
  .pp-testimonials {
    padding: 60px 20px;
  }

  .testimonials-title {
    font-size: 2rem;
  }

  .testimonials-subtitle {
    font-size: 1.1rem;
  }

  .testimonials-columns-wrapper {
    padding: 0 20px;
  }

  .testimonial-card {
    width: 300px;
    min-width: 300px;
  }

  .testimonial-card {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .testimonial-card {
    width: 280px;
    min-width: 280px;
  }
}

/* ===== CTA FINAL ===== */
.pp-cta {
  padding: 80px 20px;
  position: relative;
  z-index: 1;
}

.pp-cta .cta-box {
  background: var(--promoping-orange-gradient);
  border-radius: 20px;
  padding: 48px 20px;
  color: var(--text-light);
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 8px 20px var(--promoping-dark-transparent);
}

.pp-cta h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.pp-cta p {
  font-size: 1.1rem;
  margin-bottom: 28px;
  opacity: 0.95;
}

.pp-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--text-light);
  color: var(--promoping-orange-dark);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all .3s;
  box-shadow: 0 4px 10px var(--promoping-dark-transparent);
}

.pp-cta a:hover {
  background: var(--promoping-cream);
  transform: translateY(-2px);
}

/* ===== SHOWCASE SECTION ===== */
.pp-showcase {
  background: var(--promoping-orange-gradient);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
}

.pp-showcase .pp-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.pp-showcase h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

.pp-showcase p {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 40px;
  opacity: 0.9;
}

.video-container {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.video-wrapper {
  width: 100%;
  max-width: 800px;
  position: relative;
}

.video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: #1a1a1a;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.video-content {
  width: 100%;
  height: 100%;
  position: relative;
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.play-button {
  margin-bottom: 20px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
}

.video-fallback {
  margin-top: 20px;
  color: #ffffff;
  opacity: 0.8;
  font-size: 0.9rem;
}

.video-fallback a {
  color: #ffffff;
  text-decoration: underline;
}

/* ===== SISTEMA DE NOTIFICAÇÕES PROFISSIONAL ===== */
.notification-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  pointer-events: none;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background 0.3s ease;
}

/* Overlay só quando não for toast (ex.: loading com logo) */
.notification-container.active {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: auto;
}

/* Toast no canto: sem overlay, só o card no canto superior direito */
.notification-container.active.toast-mode {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  pointer-events: none;
}

.notification-container.active.toast-mode .notification {
  pointer-events: auto;
}

/* Quando é apenas logo (loading), manter centralizado e sem overlay */
.notification-container.logo-only-mode,
.notification-container.active.logo-only-mode,
.notification-container.logo-only-mode.active,
body .notification-container.logo-only-mode.active {
  align-items: center;
  justify-content: center;
  padding: 0;
  background: rgba(0, 0, 0, 0) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  filter: none !important;
}

.notification {
  background: transparent !important;
  border-radius: 0;
  padding: 0;
  box-shadow: none !important;
  border: none !important;
  min-width: auto;
  max-width: none;
  width: auto;
  pointer-events: auto;
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.35s ease;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

.notification.show {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.notification.hide {
  transform: scale(0.9) translateY(20px);
  opacity: 0;
}

/* Toast no canto: entrada pela direita + fade */
.notification-container.toast-mode .notification {
  transform: translateX(100%) scale(0.92);
  opacity: 0;
}

.notification-container.toast-mode .notification.show {
  transform: translateX(0) scale(1);
  opacity: 1;
}

.notification-container.toast-mode .notification.hide {
  transform: translateX(100%) scale(0.95);
  opacity: 0;
}

.notification.success,
.notification.error,
.notification.warning,
.notification.info {
  background: transparent !important;
  border: none !important;
  border-left: none !important;
  box-shadow: none !important;
}

/* Remover qualquer pseudo-elemento verde */
.notification.success::before,
.notification.success::after {
  display: none !important;
  content: none !important;
}

.notification-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 14px 18px 12px;
  max-width: 300px;
  width: calc(100vw - 40px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
}

.notification.success .notification-card,
.notification.error .notification-card,
.notification.warning .notification-card,
.notification.info .notification-card {
  border-top: none;
}

.notification-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}

.notification-card .notification-header {
  justify-content: flex-start;
}

.notification-logo {
  max-width: 200px;
  width: 100%;
  height: auto;
  animation: pulse 2s ease-in-out infinite;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.notification-logo-sm {
  max-width: 40px;
  height: auto;
  animation: none;
}

/* Quando é apenas logo (sem título/mensagem), centralizar melhor */
.notification.logo-only {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 200px;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

.notification-card .notification-title {
  font-weight: 700;
  font-size: 0.9375rem;
  color: #111827;
  margin: 0;
  letter-spacing: -0.01em;
  text-align: left;
}

.notification-card .notification-message {
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.4;
  margin: 0;
  text-align: left;
}

.notification-title {
  font-weight: 600;
  font-size: 16px;
  color: #1f2937;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.notification-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.notification-card .notification-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  color: #9ca3af;
  transition: background 0.2s ease, color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.notification-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  color: #6b7280;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.notification-card .notification-close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #111827;
}

.notification-close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #374151;
}

.notification-message {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

@keyframes fadeInOut {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.notification-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--promoping-orange-medium), var(--promoping-orange-dark));
  border-radius: 0 0 8px 8px;
  transition: width linear;
}

/* Responsividade */
@media (max-width: 768px) {
  .notification-logo {
    max-width: 150px;
  }
}

.video-fallback a:hover {
  opacity: 0.8;
}

/* ===== RESPONSIVIDADE SHOWCASE ===== */
@media (max-width: 768px) {
  .pp-showcase h2 {
    font-size: 2rem;
  }

  .pp-showcase p {
    font-size: 1rem;
  }
}

/* ===== MOBILE FOUNDATION ===== */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
}

@media (max-width: 1024px) {
  body {
    background-attachment: scroll;
  }

  .pp-container {
    padding: 0 20px;
  }

  .pp-hero {
    min-height: auto;
    padding: 48px 0 32px;
  }

  .pp-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .pp-hero-left,
  .pp-hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .pp-hero-left h1 {
    font-size: clamp(2.4rem, 8vw, 4rem);
    margin-bottom: 24px;
  }

  .pp-hero-eyebrow {
    margin-bottom: 14px;
  }

  .pp-hero-purpose {
    margin: 0 0 24px;
    text-align: left;
  }

  .pp-hero-logo {
    max-width: min(100%, 420px);
  }

  .pp-about {
    min-height: auto;
    padding: 56px 0 40px;
  }

  .pp-about h2 {
    font-size: clamp(1.8rem, 5vw, 2.6rem);
  }

  .pp-about-text {
    font-size: 1.05rem;
    line-height: 1.65;
  }
}

@media (max-width: 640px) {
  .pp-container {
    padding: 0 16px;
  }

  .pp-hero {
    padding: 36px 0 24px;
  }

  .pp-hero-grid {
    gap: 24px;
  }

  .pp-hero-left h1 {
    font-size: clamp(2rem, 11vw, 2.9rem);
    line-height: 1.08;
  }

  .pp-hero-eyebrow {
    padding: 7px 12px;
    font-size: 0.72rem;
  }

  .pp-hero-subtitle {
    font-size: 1rem;
  }

  .pp-hero-purpose {
    padding: 16px;
    border-radius: 16px;
  }

  .pp-hero-purpose-title,
  .pp-hero-purpose-list li {
    font-size: 0.92rem;
  }

  .pp-btn-cta,
  .pp-btn-ghost {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .pp-about {
    padding: 40px 0 28px;
  }

  .pp-about h2 {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .pp-about-text {
    font-size: 0.98rem;
  }

  .notification-card {
    width: calc(100vw - 24px);
    max-width: none;
  }
}

/* ===== HOME MOBILE CORRECTIONS ===== */
@media (max-width: 768px) {
  .pp-hero {
    display: block;
    min-height: auto;
    padding: 28px 0 12px;
  }

  .pp-hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    gap: 18px;
  }

  .pp-hero-left,
  .pp-hero-right {
    width: 100%;
  }

  .pp-hero-left {
    gap: 14px;
  }

  .pp-hero-left h1 {
    margin: 0;
    max-width: 18ch;
    text-align: center;
  }

  .pp-hero-purpose {
    width: 100%;
    text-align: left;
  }

  .pp-hero-right {
    justify-content: center;
  }

  .pp-hero-logo {
    max-width: min(64vw, 260px);
  }

  .pp-section-connect {
    min-height: auto;
    padding: 42px 18px 28px;
  }

  .pp-connect-wrap {
    max-width: 40rem;
  }

  .pp-connect-title {
    margin: 0 auto 1rem;
    max-width: 13ch;
    text-align: center;
    text-wrap: balance;
  }

  .pp-connect-desc {
    max-width: 34rem;
    margin: 0 auto 1.1rem;
    text-align: left;
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .pp-connect-cta-wrap {
    margin: 0 0 1.25rem;
  }

  .pp-discord-bot-cta,
  .pp-discord-community-cta {
    width: min(100%, 320px);
  }

  .pp-connect-slogan {
    text-align: center;
  }

  .pp-partners {
    margin-top: 0;
    padding: 36px 16px;
  }

  .partner-carousel-wrapper {
    min-height: 38px;
    max-height: none;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .partner-carousel-canvas {
    min-height: 38px;
  }

  .how-section {
    padding: 48px 16px;
  }

  .how-header {
    margin-bottom: 34px;
  }

  .how-header h2 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .how-header p {
    font-size: 1rem;
  }

  .how-steps {
    gap: 20px;
  }

  .how-step {
    padding: 28px 18px;
    border-radius: 20px;
  }

  .step-content h3 {
    font-size: 1.15rem;
  }

  .step-content p {
    font-size: 0.92rem;
  }

  .pp-pricing {
    padding: 48px 16px;
  }

  .pricing-header {
    margin-bottom: 34px;
  }

  .pricing-header h2 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .pricing-header p {
    font-size: 1rem;
  }

  .pricing-grid {
    max-width: none;
    gap: 16px;
  }

  .pricing-card {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .pp-testimonials {
    padding: 48px 16px 24px;
  }

  .testimonials-header {
    margin-bottom: 20px;
  }

  .testimonials-title {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .testimonials-subtitle {
    font-size: 1rem;
  }

  .testimonials-columns-wrapper {
    min-height: 205px;
    max-height: 205px;
    padding: 0;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .testimonials-canvas {
    min-height: 205px;
  }
}

@media (max-width: 480px) {
  .pp-hero {
    padding-top: 20px;
  }

  .pp-hero-logo {
    max-width: min(58vw, 220px);
  }

  .pp-connect-title,
  .pricing-header h2,
  .how-header h2,
  .testimonials-title {
    line-height: 1.08;
  }

  .pp-connect-desc {
    font-size: 0.94rem;
    line-height: 1.68;
  }

  .pricing-card {
    max-width: 100%;
  }

  .testimonials-columns-wrapper {
    min-height: 198px;
    max-height: 198px;
  }

  .testimonials-canvas {
    min-height: 198px;
  }
}

/* ==========================================================================
   Stores marquee (replaces canvas partner carousel)
   ========================================================================== */

.pp-partners {
  position: relative;
  padding: 88px 0 96px;
  margin-top: 0;
  overflow: hidden;
  background: transparent;
}

.pp-partners::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 60% at 50% 50%, rgba(15, 8, 0, 0.22) 0%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.pp-partners-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.pp-partners-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFA54B;
  margin: 0 0 14px;
  padding: 5px 12px;
  background: rgba(255, 165, 75, 0.12);
  border: 1px solid rgba(255, 165, 75, 0.32);
  border-radius: 999px;
}

.pp-partners-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 36px;
  line-height: 1.1;
  text-shadow: none;
}

.pp-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 9%,
    #000 91%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 9%,
    #000 91%,
    transparent 100%
  );
}

.pp-marquee-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  animation: pp-marquee-scroll 44s linear infinite;
  will-change: transform;
}

.pp-marquee:hover .pp-marquee-track {
  animation-play-state: paused;
}

.pp-marquee-pill {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #fafafa;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  white-space: nowrap;
  user-select: none;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.pp-marquee-pill:hover {
  background: rgba(255, 165, 75, 0.16);
  border-color: rgba(255, 165, 75, 0.55);
  color: #ffffff;
  transform: translateY(-1px);
}

@keyframes pp-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .pp-marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .pp-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

@media (max-width: 768px) {
  .pp-partners {
    padding: 64px 0 72px;
  }
  .pp-partners-title {
    margin-bottom: 28px;
  }
  .pp-marquee-track {
    gap: 10px;
    animation-duration: 34s;
  }
  .pp-marquee-pill {
    padding: 10px 16px;
    font-size: 13.5px;
  }
}

@media (max-width: 480px) {
  .pp-partners {
    padding: 56px 0 64px;
  }
  .pp-marquee-pill {
    padding: 9px 14px;
    font-size: 13px;
  }
}
