/* Estilos modernos para a landing page do Capitão Animais - Estilo Cinematográfico */
/* Deploy forçado - 2025-01-27 */

/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Paleta do tema: fundo verde, detalhes/vermelho */
:root {
    --primary-color: #4caf50; /* Verde */
    --secondary-color: #e53935; /* Vermelho */
    --accent-color: #e53935; /* Vermelho para animações e destaques */
    --text-color: #ffffff; /* Branco */
    --dark-bg: #0e2d18; /* Verde bem escuro (fundo) */
    --dark-bg-lighter: #154a2a; /* Verde escuro um pouco mais claro */
    --transition-speed: 0.3s;
}

/* Deixar rolagem suave para âncoras (#links) */
html {
    scroll-behavior: smooth;
}

/* Corpo mantém só bloqueio horizontal, fundo vem das variáveis acima */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto; /* garante rolagem vertical */
}

body.no-scroll {
    overflow: hidden;
}

/* Header e navegação */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-speed) ease;
    background-color: #ffffff; /* FUNDO BRANCO */
    color: var(--dark-bg);      /* TEXTO ESCURO */
}

header.scrolled {
    background-color: #ffffff; /* manter branco ao rolar */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

/* Deixar links escuros sobre o fundo branco do header */
header .nav-links a {
    color: var(--dark-bg);
}

/* Deixar o ícone do menu (três risquinhos) escuro sobre o branco */
header .hamburger div {
    background-color: var(--dark-bg);
}

/* Logo larga (banner) */
.logo-banner {
    height: 48px;
    width: auto;
    display: block;
    background: transparent !important;
    transition: transform var(--transition-speed) ease;
}

header.scrolled .logo-banner {
    height: 42px;
}

.logo:hover .logo-banner {
    transform: scale(1.03);
}

.logo-img {
    width: 50px;
    height: 50px;
    transition: transform var(--transition-speed) ease;
}

.logo:hover .logo-img {
    transform: rotate(10deg);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.nav-links a:hover:after {
    width: 100%;
}

.cta-button {
    margin-left: 20px;
}

/* Hamburger menu para mobile */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 72vh; /* menor que 100vh para que o restante apareça imediatamente */
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(10, 25, 41, 0.7), rgba(10, 25, 41, 0.9)), url('images/Capa do livro.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* evita travas de rolagem em mobile */
    position: relative;
    overflow: visible; /* não corta conteúdo subsequente */
    padding-top: 100px; /* compensa header fixo */
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, var(--dark-bg) 150%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

/* Sobre Mim Section */
.about {
    background-color: var(--dark-bg-lighter);
    position: relative;
    overflow: hidden;
}

.about:before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-speed) ease;
}

.about-image:before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--accent-color);
    border-radius: 20px;
    z-index: -1;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: var(--primary-color);
}

/* Livros/Histórias Section */
.books {
    position: relative;
    overflow: hidden;
}

.books:after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 0;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.book-card {
    background-color: var(--dark-bg-lighter);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-speed) ease;
    position: relative;
    top: 0;
}

.book-card:hover {
    top: -10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.book-image {
    height: 300px;
    overflow: hidden;
}

.book-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-speed) ease;
}

.book-card:hover .book-image img {
    transform: scale(1.05);
}

.book-info {
    padding: 25px;
}

.book-genre {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.book-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.book-description {
    margin-bottom: 20px;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Depoimentos Section */
.testimonials {
    background-color: var(--dark-bg-lighter);
    position: relative;
}

.testimonials-slider {
    position: relative;
    z-index: 1;
}

.testimonial-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin: 20px;
    position: relative;
    border-left: 4px solid var(--primary-color);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text:before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: -40px;
    left: -20px;
    color: var(--accent-color);
    opacity: 0.2;
}

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

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
}

/* Contato Section */
.contact {
    position: relative;
    overflow: hidden;
}

.contact-content {
    display: flex;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    color: var(--secondary-color);
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--dark-bg-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.5rem;
}

.contact-text h4 {
    margin-bottom: 5px;
}

.contact-text p {
    margin: 0;
    opacity: 0.8;
}

.contact-form {
    flex: 1;
    background-color: var(--dark-bg-lighter);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    transition: all var(--transition-speed) ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--dark-bg-lighter);
    padding: clamp(32px, 6vw, 48px) 0 clamp(16px, 4vw, 24px);
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(24px, 4vw, 40px);
    margin-bottom: clamp(20px, 4vw, 32px);
    position: relative;
    z-index: 1;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    width: 120px;
    margin-bottom: 14px;
}

.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-links h3 {
    color: var(--primary-color);
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed) ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

/* Animações e efeitos */
.reveal-section,
.reveal {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal-section.active,
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Estilos para os cards de heróis */

/* Lightbox das imagens dos heróis */
.hero-lightbox { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; z-index: 9999; }
.hero-lightbox.open { display: flex; }
.hero-lightbox .hero-lightbox-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.8); backdrop-filter: blur(2px); }
.hero-lightbox .hero-lightbox-image { position: relative; max-width: 92vw; max-height: 90vh; border-radius: 10px; box-shadow: 0 24px 64px rgba(0,0,0,.5); z-index: 1; }
.hero-lightbox .hero-lightbox-close { position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,.92); color: var(--primary-color); border: 0; border-radius: 999px; width: 40px; height: 40px; font-size: 22px; line-height: 40px; cursor: pointer; z-index: 2; box-shadow: 0 6px 18px rgba(0,0,0,.25); }

/* Indicar clicável nos cards de heróis */
.lp-values .hero-card .hero-image-container { cursor: zoom-in; }
.hero-card {
  text-align: center;
}

.hero-image-container {
  width: 100%;
  height: 200px;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background-color: #f0f0f0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain; /* evita cortes */
  object-position: center; /* centraliza horizontal e vertical */
  transition: transform .3s ease;
  display: block;
}

.hero-image:hover {
  transform: scale(1.05);
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #e9ecef;
  color: #6c757d;
  border: 2px dashed #dee2e6;
}

.image-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.image-placeholder p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Responsivo base */
@media (max-width: 1200px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
    .container { padding: 0 40px; }
}

@media (max-width: 992px) {
    .about-content,
    .contact-content { flex-direction: column; }

    .about-image:before { display: none; }
    .about-image { margin-bottom: 40px; }
    .about-image img { max-width: 100%; }

    /* === Overrides finais do cabeçalho (desktop e mobile) === */
    .lp-header { position: sticky; top: 0; z-index: 1000; background: #fff; border-bottom: 1px solid rgba(0,0,0,.06); }
    .lp-header .lp-container { display: flex; align-items: center; justify-content: center; gap: 24px; min-height: 72px; }
    .lp-header nav { display: flex; align-items: center; }
    .lp-header .lp-brand { display: flex; align-items: center; }
    .lp-header .lp-logo { height: 46px; width: auto; display: block; }
    .lp-header .nav-links { display: flex; align-items: center; gap: 20px; margin: 0; padding: 0; list-style: none; }
    .lp-header .nav-links li { list-style: none; margin: 0; padding: 0; }
    .lp-header .nav-links a { text-decoration: none; color: #223; font-weight: 600; font-size: 0.95rem; }
    
    /* Hamburger menu escondido por padrão */
    .hamburger { display: none; }
    
    /* Menu mobile apenas em telas pequenas */
    @media (max-width: 992px) {
      .hamburger { display: block; z-index: 1001; }
      .nav-links { position: fixed; top: 0; right: -100%; height: 100vh; width: 300px; background-color: var(--dark-bg); flex-direction: column; justify-content: center; padding: 50px; transition: all 0.5s ease; z-index: 999; list-style: none; margin: 0; }
      .nav-links li { list-style: none; }
      .nav-links a { color: var(--text-color); font-size: 1rem; }
      .nav-links.active { right: 0; }
    }
    /* ===== end Header Fix ===== */

    .hamburger.active div:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
    .hamburger.active div:nth-child(2) { opacity: 0; }
    .hamburger.active div:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }
}

@media (max-width: 768px) {
    section { padding: 80px 0; }
    h1 { font-size: 3rem; }
    h2 { font-size: 2rem; }

    .hero-buttons { flex-direction: column; gap: 15px; }
    .hero-buttons .btn { width: 100%; text-align: center; }

    .books-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
    .footer-content { flex-direction: column; gap: 40px; }
}

@media (max-width: 576px) {
    h1 { font-size: 2.5rem; }
    .container { padding: 0 20px; }
    .hero-subtitle { font-size: 1.2rem; }
    .nav-links { width: 100%; }
}

/* Compensação de âncoras para cabeçalho fixo */
.lp-section { scroll-margin-top: 84px; }
@media (max-width: 768px) {
  .lp-section { scroll-margin-top: 100px; }
}
@media (max-width: 1200px) {
  .lp-header .nav-links .btn.btn-primary { padding: 0.6rem 1.05rem; }
}

/* Hero */
.lp-hero { padding: 72px 0 48px; background: linear-gradient(180deg,#fff 0%,#f4faf5 100%); position: relative; overflow: hidden; }
/* Layout desktop: título, subtítulo, imagem, botões em coluna única */
.lp-hero-grid { display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; max-width: 800px; margin: 0 auto; }
.lp-hero h1 { font-size: clamp(2rem,2.6rem + 1.5vw,3.2rem); color: #0e2d18; margin-bottom: 10px; }
.lp-hero .lp-sub { color: #456; max-width: 100%; width: 100%; margin-bottom: 18px; }
.lp-hero .lp-hero-visual { position: relative; order: 2; }
/* imagem maior para ocupar melhor a área em desktops */
.lp-hero .lp-hero-image { width: 100%; max-width: 320px; border-radius: 14px; box-shadow: 0 20px 60px rgba(0,0,0,.18); position: relative; z-index: 2; display: block; }
.lp-hero .lp-hero-copy { margin-left: 0; width: 100%; max-width: none; text-align: center; order: 1; }
.lp-hero .lp-cta { order: 3; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
/* Centraliza o título do herói acima do subtítulo */
.lp-hero .lp-hero-copy h1 { text-align: center; line-height: 0.88; }
.lp-hero .lp-hero-copy h1 span { white-space: nowrap; display: inline-block; word-break: normal; hyphens: manual; }
@media (max-width: 768px){ 
  /* Reduzir espaçamento superior no mobile para aproximar cabeçalho do título */
  .lp-hero { 
    padding: 32px 0 48px; /* reduzido de 72px para 32px no topo */
  }
  
  .lp-hero .lp-hero-copy { margin-left: 0; width: auto; max-width: 100%; } 
  /* Reorganizar layout mobile: título, subtítulo, imagem, botões */
  .lp-hero-grid { 
    grid-template-columns: 1fr; 
    gap: 24px; 
    text-align: center; 
    display: flex;
    flex-direction: column;
  }
  .lp-hero .lp-hero-copy { 
    order: 1; 
  }
  .lp-hero .lp-hero-visual { 
    order: 2; 
    justify-self: center; 
  }
  .lp-hero .lp-cta { 
    order: 3; 
    margin-top: 24px; 
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  /* Ajustes específicos para o texto no mobile */
  .lp-hero .lp-hero-copy h1 { 
    font-size: clamp(1.8rem, 4vw, 2.4rem); 
    line-height: 1.1; 
  }
  .lp-hero .lp-hero-copy h1 span { 
    white-space: normal; 
    display: inline; 
    word-break: break-word; 
  }
  .lp-hero .lp-sub { 
    font-size: clamp(1rem, 3vw, 1.2rem); 
    line-height: 1.4; 
    margin-bottom: 24px; 
  }
}
.lp-blob { position: absolute; inset: -40px -80px auto auto; width: 300px; height: 300px; background: radial-gradient(circle at 30% 30%,rgba(76,175,80,.35),rgba(14,45,24,.6) 70%); border-radius: 50%; filter: blur(6px); z-index: 1; }
.lp-blob.small { width: 220px; height: 220px; inset: auto auto -40px -40px; background: radial-gradient(circle at 40% 40%,rgba(76,175,80,.3),rgba(14,45,24,.5) 70%); }

/* ======================= */
/* Correção: vídeos e imagens sem esticar */
/* Mantém a proporção 16:9 dos players e evita esticamento lateral */
.video-container,
.lp-video-container {
  position: relative;
  width: 100%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9; /* navegadores modernos */
}

/* Fallback para manter 16:9 onde aspect-ratio não é suportado */
.video-container::before,
.lp-video-container::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 9/16 = 0.5625 */
}

@supports (aspect-ratio: 16 / 9) {
  .video-container::before,
  .lp-video-container::before { display: none; padding: 0; content: none; }
}

.video-container iframe,
.lp-video-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Garante que imagens relevantes nunca deformem: ocupam largura máxima e altura proporcional */
.hero-card img,
#product.lp-product .lp-product-visual img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Espaçamento superior da seção e variáveis utilitárias (podem ser reaproveitadas) */
#product.lp-product {
  color: #223;
  margin-top: clamp(44px, 5.2vw, 72px);
  --sobre-h2-size: clamp(28px, 2.6vw, 36px);
  --sobre-h2-gap: clamp(12px, 1.6vw, 20px);
  --sobre-h2-lh: 1.25;
}

/* Novo layout: imagem acima do título e centralizada */
#product.lp-product .lp-two-col {
  display: grid; /* garante grid ativo mesmo se herdado de outro lugar */
  grid-template-columns: 1fr; /* coluna única para esta seção */
  row-gap: clamp(10px, 1.6vw, 18px);
  justify-items: center; /* centraliza filhos no eixo X */
}
#product.lp-product .lp-product-visual {
  grid-row: 1;
  grid-column: 1;
  display: flex;
  justify-content: center; /* centraliza a imagem */
}
#product.lp-product .lp-product-visual img {
  max-width: clamp(190px, 24vw, 260px); /* diminui mais um pouco no desktop */
  margin-top: 0 !important; /* remove qualquer alinhamento anterior pelo topo do parágrafo */
}
#product.lp-product .lp-product-copy {
  grid-row: 2;
  grid-column: 1;
  max-width: 820px; /* limita largura da leitura */
  margin: 0 auto;
}
#product.lp-product h2 {
  color: #0e2d18;
  text-align: center; /* centraliza o título */
  font-size: var(--sobre-h2-size);
  line-height: var(--sobre-h2-lh);
  margin: 8px 0 var(--sobre-h2-gap); /* pequeno espaço acima e abaixo */
}
#product.lp-product .lp-product-copy p { text-align: justify; color: #223; }

/* Responsivo (já está em coluna única, apenas garante tamanhos amistosos) */
@media (max-width: 768px) {
  #product.lp-product .lp-product-visual img { max-width: clamp(150px, 48vw, 200px); } /* pequena redução extra no mobile */
  
  /* Ajustes específicos para texto da seção "Sobre o Autor" no mobile */
  #product.lp-product .lp-product-copy {
    padding: 0 16px; /* adiciona padding lateral para melhor leitura */
  }
  
  #product.lp-product .lp-product-copy p {
    text-align: justify; /* mantém justificação total */
    text-justify: inter-word; /* melhora a distribuição das palavras */
    line-height: 1.6; /* aumenta espaçamento entre linhas para melhor leitura */
    margin-bottom: 16px; /* espaçamento consistente entre parágrafos */
    font-size: clamp(14px, 3.5vw, 16px); /* tamanho responsivo da fonte */
    hyphens: auto; /* permite hifenização automática */
    word-wrap: break-word; /* quebra palavras muito longas */
  }
  
  #product.lp-product h2 {
    font-size: clamp(24px, 5vw, 32px); /* título responsivo */
    margin-bottom: clamp(16px, 4vw, 24px); /* espaçamento responsivo */
  }
}

/* Grade de 3 colunas para Vídeos (pequenos, em uma única linha no desktop) */
/* Ajuste: vídeos pequenos, alinhados em uma única linha no desktop */
.lp-video-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 300px); /* aumentado de 260px para 300px */
  justify-content: center; /* centraliza o conjunto */
  gap: 16px 24px; /* linha x coluna */
  align-items: start;
  margin-top: 18px;
}

.video-card { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.video-card .video-container { width: 100%; max-width: none; }
.video-card h4 { margin: 6px 0 0; text-align: center; font-weight: 600; }

/* Vídeo principal mais contido e centralizado */
.lp-video .lp-video-container { max-width: 560px; margin: 0 auto; }

/* Imagens lado a lado (3 por linha) */
.lp-cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 300px); /* aumentado o tamanho dos cards */
  justify-content: center; /* centraliza o grid dentro do container */
  gap: 20px 28px; /* um pouco mais de respiro */
}

/* Ajustes visuais dos cards menores - formato quadrado */
.hero-card { width: 100%; }
.hero-card .hero-image-container { height: 240px; } /* altura ajustada para formato mais próximo do quadrado considerando padding total */
.hero-card h3 { margin-top: 8px; }

/* Responsivo: 2 colunas entre 768–900px e 1 coluna abaixo de 768px */
@media (max-width: 900px) and (min-width: 769px) {
  .lp-video-testimonials { grid-template-columns: repeat(2, 1fr); }
  .lp-cards-3 { grid-template-columns: repeat(2, 300px); }
}
@media (max-width: 768px) {
  .lp-video-testimonials { 
    display: grid !important;
    grid-template-columns: 1fr !important; 
    gap: 24px; /* mais espaço entre vídeos em mobile */
    padding: 0 16px; /* padding lateral para não colar nas bordas */
  }
  .lp-cards-3 { grid-template-columns: 1fr; }
  
  /* Ajustes específicos para vídeos em mobile */
  .video-card {
    display: block !important;
    max-width: 100%;
    margin: 0 auto;
    width: 100% !important;
  }
  
  .video-card .video-container {
    display: block !important;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    width: 100% !important;
    height: 0;
    padding-bottom: 56.25% !important; /* 16:9 aspect ratio */
  }
  
  .video-card .video-container iframe {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
  }
  
  .video-card h4 {
    display: block !important;
    font-size: 1rem;
    margin-top: 12px;
    text-align: center;
  }
  
  /* Vídeo principal da seção 'Como criei o Capitão Animais' em mobile */
   .lp-video .lp-video-container {
     max-width: calc(100% - 32px);
     margin: 0 auto;
     padding: 0 16px;
   }
   
   /* Ajuste específico para o container da seção de vídeo */
   #capitao-animais.lp-video .lp-container {
     padding: 0 16px;
   }
}
/* Redução drástica do espaçamento entre "Sobre o Autor" e "Super Heróis" */
#product.lp-product {
  padding-bottom: 10px !important; /* reduz drasticamente o espaço inferior */
}

#value.lp-values {
  margin-top: clamp(5px, 0.5vw, 8px);
  padding-top: 10px !important; /* reduz drasticamente o espaço superior */
}

/* Título estilizado da seção de Heróis */
#value.lp-values .lp-container > h2 {
  color: #0e2d18;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.4px;
  margin-bottom: 2.2rem !important; /* deixa um pouco mais elegante que o inline */
  position: relative;
}
#value.lp-values .lp-container > h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #38d07a, #28a745);
}

/* Redesign moderno dos cards dos Heróis com animações de fundo */
.lp-values .lp-cards-3 { gap: 24px 32px; }
.lp-values .hero-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafb 100%);
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 20px;
  padding: 15px 20px 25px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.04);
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Animação de fundo com ondas */
.lp-values .hero-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 70%, rgba(56, 208, 122, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(40, 167, 69, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(32, 201, 151, 0.06) 0%, transparent 50%);
  animation: floatingBubbles 8s ease-in-out infinite;
  opacity: 0;
  transition: opacity .5s ease;
}

/* Borda superior animada */
.lp-values .hero-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #38d07a, #28a745, #20c997, transparent);
  animation: slideIn 2s ease-in-out infinite;
  opacity: 0;
}

@keyframes floatingBubbles {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-10px, -15px) rotate(90deg); }
  50% { transform: translate(15px, -10px) rotate(180deg); }
  75% { transform: translate(-5px, 10px) rotate(270deg); }
}

@keyframes slideIn {
  0% { left: -100%; opacity: 0; }
  50% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.lp-values .hero-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,.12), 0 8px 20px rgba(56, 208, 122, .15);
  border-color: rgba(56, 208, 122, .3);
}

.lp-values .hero-card:hover::before {
  opacity: 1;
  animation-duration: 4s;
}

.lp-values .hero-card:hover::after {
  opacity: 1;
  animation-duration: 1.5s;
}
.lp-values .hero-card .hero-image-container {
  background: linear-gradient(135deg, #f8fafb 0%, #e9ecef 100%);
  border: 2px solid #e9ecef;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
  flex: 1;
  min-height: 0;
}

/* Efeito de partículas flutuantes no fundo da imagem */
.lp-values .hero-card .hero-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(56, 208, 122, 0.15) 0%, transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(40, 167, 69, 0.12) 0%, transparent 30%),
    radial-gradient(circle at 40% 40%, rgba(32, 201, 151, 0.1) 0%, transparent 30%);
  animation: particleFloat 6s ease-in-out infinite;
  opacity: 0;
  transition: opacity .4s ease;
}

.lp-values .hero-card .hero-image-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, 
    rgba(56, 208, 122, .08) 0%, 
    transparent 25%, 
    rgba(40, 167, 69, .06) 50%, 
    transparent 75%, 
    rgba(32, 201, 151, .08) 100%);
  background-size: 200% 200%;
  animation: gradientShift 4s ease-in-out infinite;
  opacity: 0;
  transition: opacity .3s ease;
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.1); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.lp-values .hero-card:hover .hero-image-container {
  border-color: rgba(56, 208, 122, .4);
  box-shadow: inset 0 0 20px rgba(56, 208, 122, .1);
}

.lp-values .hero-card:hover .hero-image-container::before {
  opacity: 1;
  animation-duration: 3s;
}

.lp-values .hero-card:hover .hero-image-container::after { 
  opacity: 1;
  animation-duration: 2s;
}
.lp-values .hero-card .hero-image {
  width: auto;            /* deixa o browser calcular mantendo proporção */
  height: auto;           
  max-width: 100%;        /* não ultrapassa o container */
  max-height: 100%;       /* ocupa a maior área possível sem cortar */
  object-fit: contain;    /* garante sem cortes */
  object-position: center;/* centraliza */
  transition: transform .3s ease;
  display: block;
}
.lp-values .hero-card:hover .hero-image { transform: none; }
.lp-values .hero-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a202c;
  margin: 16px 0 8px;
  text-align: center;
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all .3s ease;
}
.lp-values .hero-card:hover h3 {
  background: linear-gradient(135deg, #38d07a 0%, #28a745 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateY(-2px);
}
.lp-values .hero-card p {
  font-size: 0.95rem;
  color: #4a5568;
  text-align: center;
  line-height: 1.5;
  margin: 0;
  transition: color .3s ease;
}
.lp-values .hero-card:hover p {
  color: #2d3748;
}

@media (max-width: 768px) {
  #value.lp-values { margin-top: clamp(36px, 7vw, 72px); }
  #value.lp-values .lp-container > h2 { margin-bottom: 1.6rem !important; }
  .lp-values .hero-card .hero-image-container { height: 160px; }
}

/* Media queries específicas para vídeos em diferentes tamanhos de mobile */
@media (max-width: 480px) {
  /* Telas muito pequenas - ajustes extras para vídeos */
  .lp-video-testimonials {
    padding: 0 12px;
    gap: 20px;
  }
  
  .video-card h4 {
    font-size: 0.9rem;
    margin-top: 10px;
  }
  
  .lp-video .lp-video-container {
     max-width: calc(100% - 24px);
     margin: 0 auto;
     padding: 0 12px;
   }
   
   #capitao-animais.lp-video .lp-container {
     padding: 0 12px;
   }
  
  /* Ajuste do título da seção de vídeos em telas pequenas */
  #trust.lp-trust .lp-container > h2,
  #capitao-animais.lp-video .lp-container > h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 1.2rem;
  }
}

@media (max-width: 360px) {
  /* Telas extra pequenas - ajustes mínimos */
  .lp-video-testimonials {
    padding: 0 8px;
    gap: 16px;
  }
  
  .lp-video .lp-video-container {
     max-width: calc(100% - 16px);
     margin: 0 auto;
     padding: 0 8px;
   }
   
   #capitao-animais.lp-video .lp-container {
     padding: 0 8px;
   }
}

/* Oculta o footer em dispositivos móveis para melhor UX */
@media (max-width: 768px) {
  .lp-footer {
    display: none !important; /* remove o footer completamente em mobile */
  }
}

/* ===== Depoimentos: tema verde escuro, título contrastante e espaçamento ===== */
#trust.lp-trust {
  margin-top: clamp(44px, 6.4vw, 96px);
  background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-lighter) 100%);
  color: #ecf7f1;
  padding: clamp(48px, 6vw, 104px) 0 clamp(80px, 8vw, 160px); /* antes: bottom clamp(64px, 7vw, 136px) */
}
#trust.lp-trust .lp-container > h2 {
  color: #ffffff;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.4px;
  margin-bottom: 2.8rem;
  position: relative;
}
#trust.lp-trust .lp-container > h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #c8f6dc, #8be7b8);
}
/* Textos internos com branco suave para boa leitura */
#trust.lp-trust p,
#trust.lp-trust .lp-sub,
#trust.lp-trust .testimonial-text,
#trust.lp-trust .author-info h4,
#trust.lp-trust .author-info p,
#trust.lp-trust .video-card h4 {
  color: #f3fff8;
}
/* Blocos de depoimento com leve transparência e borda verde clara */
#trust.lp-trust .testimonial-item {
  background-color: rgba(255, 255, 255, 0.06);
  border-left-color: #8be7b8;
}

@media (max-width: 768px) {
  #trust.lp-trust { margin-top: clamp(36px, 7vw, 80px); padding: clamp(36px, 7vw, 64px) 0 clamp(64px, 9vw, 112px); } /* antes: bottom clamp(48px, 8vw, 88px) */
  #trust.lp-trust .lp-container > h2 { margin-bottom: 2rem; }
}

/* ===== Header: overrides globais finais (fora de @media) ===== */
.lp-header { position: sticky; top: 0; z-index: 1000; background: #fff; border-bottom: 1px solid rgba(0,0,0,.06); }
.lp-header .lp-container { display: flex; align-items: center; justify-content: center; gap: 24px; min-height: 72px; }
.lp-header nav { display: flex; align-items: center; }
.lp-header .lp-brand { display: flex; align-items: center; }
.lp-header .lp-logo { height: 46px; width: auto; display: block; }
#capitao-animais.lp-video .lp-container > h2 { 
  color: #0e2d18; 
  text-align: center; 
  font-weight: 800; 
  margin-bottom: 1.6rem; 
}
#capitao-animais.lp-video .lp-container > h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #38d07a, #28a745);
}

/* ===== Header: overrides globais finais (fora de @media) ===== */
.lp-header { position: sticky; top: 0; z-index: 1000; background: #fff; border-bottom: 1px solid rgba(0,0,0,.06); }
.lp-header .lp-container { display: flex; align-items: center; justify-content: center; gap: 24px; min-height: 72px; }
.lp-header nav { display: flex; align-items: center; }
.lp-header .lp-brand { display: flex; align-items: center; }
.lp-header .lp-logo { height: 46px; width: auto; display: block; }
/* Espaçamento extra entre Depoimentos e a seção seguinte (Origem / vídeo principal) */
#capitao-animais.lp-video { 
  margin-top: clamp(28px, 5vw, 64px); /* já existente para respiro externo entre seções */
  padding-top: clamp(16px, 3.2vw, 40px); /* novo: desce um pouco o título e o vídeo dentro da seção */
}
.lp-header .lp-container {
  padding-top: 12px; /* empurra conteúdo interno para baixo sem sair do header */
}

@media (max-width: 992px) {
  .lp-header .lp-container {
    padding-top: 10px; /* leve ajuste em telas menores */
  }
}

.lp-header .lp-container { display: flex; align-items: center; }
.lp-header .lp-brand { display: flex; align-items: center; }
.lp-header .lp-logo { height: 46px; width: auto; display: block; }
.lp-header .nav-links { display: flex; align-items: center; gap: 20px; margin: 0; padding: 0; list-style: none; }
.lp-header .nav-links li { list-style: none; margin: 0; padding: 0; }
.lp-header .nav-links a { text-decoration: none; color: #223; font-weight: 600; font-size: 0.95rem; }
/* Garantia extra para qualquer UL do menu */
.nav-links, .nav-links li { list-style: none; margin: 0; padding: 0; }

/* Esconder menu inferior mobile em desktop */
.mobile-bottom-nav {
  display: none;
}

/* Esconder padding bottom do body em desktop */
body {
  padding-bottom: 0;
}

/* Mobile: menu inferior fixo moderno - APENAS para telas muito pequenas */
@media (max-width: 768px) {
  /* Esconder hamburger menu */
  .hamburger { display: none !important; }
  
  /* Esconder menu do header em mobile */
  .lp-header .nav-links { display: none !important; }
  
  /* Criar menu inferior fixo */
  .mobile-bottom-nav {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 0 max(12px, env(safe-area-inset-bottom));
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  }
  
  .mobile-nav-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    gap: 15px;
  }
  
  .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease;
    padding: 10px 8px;
    border-radius: 12px;
    min-width: 50px;
    flex: 1;
    max-width: 60px;
  }
  
  .mobile-nav-item:hover,
  .mobile-nav-item.active {
    color: var(--primary-color);
    background: rgba(76, 175, 80, 0.1);
  }
  
  .mobile-nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
  }
  
  .mobile-nav-item span {
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    line-height: 1;
  }
  
  /* Adicionar padding bottom ao body para compensar menu fixo */
  body {
    padding-bottom: 80px;
  }
}
/* ===== fim ===== */

/* ===== Navegação moderna: estilo e interações ===== */
/* Links do menu com sublinhado animado e estado ativo (scroll spy) */
.lp-header .nav-links { gap: 22px; margin-right: 24px; }
.lp-header .nav-links a { position: relative; padding: 10px 2px; color: #334; opacity: .92; transition: color .2s ease, opacity .2s ease; }
.lp-header .nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px; border-radius: 2px; background: linear-gradient(90deg, #38d07a, #28a745); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.lp-header .nav-links a:hover { color: #0e2d18; opacity: 1; }
.lp-header .nav-links a:hover::after { transform: scaleX(1); }
.lp-header .nav-links a.is-active { color: #0e2d18; opacity: 1; }
.lp-header .nav-links a.is-active::after { transform: scaleX(1); }

/* CTA WhatsApp como pill moderno com ícone */
.lp-header .nav-links .btn.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 0.55rem 0.95rem; line-height: 1; border-radius: 999px; border: none; background: linear-gradient(90deg, #25D366, #1ebe57); color: #fff !important; box-shadow: 0 6px 16px rgba(37, 211, 102, .28); text-decoration: none; }
.lp-header .nav-links .btn.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(37, 211, 102, .35); }
.lp-header .nav-links .btn.btn-primary::before { content: "\f232"; font-family: "Font Awesome 6 Brands"; font-weight: 400; font-size: 1rem; }

/* Mobile: lista vertical com espaçamento amigável e botões legíveis */
@media (max-width: 992px) {
  .lp-header .nav-links { gap: 18px; margin-right: 0; }
  .lp-header .nav-links a { color: #e8fff2; font-size: 1.05rem; }
  .lp-header .nav-links a::after { bottom: -4px; }
  .lp-header .nav-links .btn.btn-primary { width: 100%; justify-content: center; }
}
/* ===== fim navegação moderna ===== */

/* Ajuste fino: deslocar logo e menu um pouco mais para baixo dentro do cabeçalho (incremento) */
.lp-header .lp-container {
  padding-top: 16px; /* antes: 12px */
}

@media (max-width: 992px) {
  .lp-header .lp-container {
    padding-top: 12px; /* antes: 10px */
  }
}

/* Incremento 2: baixar ainda mais logo e menu dentro do cabeçalho */
.lp-header .lp-container {
  padding-top: 24px; /* antes: 16px */
}

@media (max-width: 992px) {
  .lp-header .lp-container {
    padding-top: 16px; /* antes: 12px */
  }
}

/* ===== Botões globais: transformar links com classe .btn em botões visuais ===== */
.btn { 
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0.72rem 1.15rem; border-radius: 10px; 
  font-weight: 700; font-size: 1rem; line-height: 1; 
  text-decoration: none !important; cursor: pointer; user-select: none;
  border: 2px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn:active { transform: translateY(0); }
.btn:focus { outline: none; box-shadow: 0 0 0 3px rgba(40,167,69,0.25); }

/* Primário verde preenchido */
.btn.btn-primary { 
  background: linear-gradient(90deg, #25D366, #1ebe57); 
  color: #fff !important; 
  box-shadow: 0 6px 16px rgba(37, 211, 102, .28);
}
.btn.btn-primary:hover { box-shadow: 0 10px 22px rgba(37, 211, 102, .35); transform: translateY(-1px); }

/* Contorno verde (transparente) */
.btn.btn-outline { 
  background: transparent; 
  border-color: #28a745; 
  color: #0e2d18; 
}
.btn.btn-outline:hover { 
  background: linear-gradient(90deg, #25D366, #1ebe57); 
  color: #fff !important; border-color: transparent;
  box-shadow: 0 10px 22px rgba(37, 211, 102, .28); transform: translateY(-1px);
}

/* Botões maiores e com espaçamento na área do herói */
.hero-buttons .btn { margin-right: 6px; }
.hero-buttons .btn:last-child { margin-right: 0; }
@media (max-width: 768px) { .hero-buttons .btn { width: 100%; } }

}
/* ====== PRICING / PREÇO ====== */
#preco.lp-pricing, #pricing.lp-pricing {
  background: #f8faf9;
  color: #0e2d18;
  margin-top: clamp(64px, 9vw, 160px);
  padding-top: clamp(28px, 5vw, 64px);
  padding-bottom: clamp(112px, 12vw, 192px);
}

/* Desktop: reforço de respiro para ficar bem visível */
@media (min-width: 992px) {
  #preco.lp-pricing, #pricing.lp-pricing {
    margin-top: 120px !important;
    padding-top: 48px !important;
    padding-bottom: 240px !important;
  }
}

#preco.lp-pricing .lp-container > h2 {
  color: #0e2d18 !important;
  text-align: center;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

#preco.lp-pricing .lp-container > p {
  color: #2c3e50 !important;
  opacity: 0.9;
  text-align: center;
  margin-bottom: clamp(8px, 1.2vw, 16px);
}

#preco.lp-pricing .lp-cards-2-centered, #pricing.lp-pricing .lp-cards-2-centered {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 340px));
  gap: clamp(16px, 2.5vw, 28px);
  align-items: stretch;
  justify-content: center;
  justify-items: center; /* centraliza os cards dentro das colunas */
}

@media (max-width: 768px) {
  #preco.lp-pricing .lp-cards-2-centered, #pricing.lp-pricing .lp-cards-2-centered { grid-template-columns: 1fr; }
  #preco.lp-pricing .lp-price-card, #pricing.lp-pricing .lp-price-card { max-width: 520px; }
}

#preco.lp-pricing .lp-price-card, #pricing.lp-pricing .lp-price-card {
  background: #ffffff;
  color: #0e2d18;
  border: 1px solid rgba(14, 45, 24, 0.12);
  border-radius: 14px;
  padding: clamp(10px, 1.8vw, 18px);
  box-shadow: 0 6px 18px rgba(14, 45, 24, 0.06);
  text-align: center;
  position: relative; /* para permitir ribbon */
  overflow: hidden;   /* evita overflow do ribbon */
  max-width: 340px; /* limita a largura do card */
  width: 100%;
}

#preco.lp-pricing .lp-price-card h3, #pricing.lp-pricing .lp-price-card h3 {
  font-size: clamp(15px, 1.8vw, 18px);
  margin: 0 0 8px;
  color: #0e2d18;
  font-weight: 800;
}

#preco.lp-pricing .lp-price-card .lp-price {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 6px;
}

#preco.lp-pricing .lp-price-card ul, #pricing.lp-pricing .lp-price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  color: #2c3e50;
}

#preco.lp-pricing .lp-payments, #pricing.lp-pricing .lp-payments {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  color: #0e2d18;
  margin-bottom: 10px;
}

/* Ícones do pagamento com tamanho e cores sutis */
#preco.lp-pricing .lp-payments i, #pricing.lp-pricing .lp-payments i {
  font-size: 0.9rem;
  opacity: 0.95;
}
#preco.lp-pricing .lp-payments .fa-credit-card, #pricing.lp-pricing .lp-payments .fa-credit-card { color: #25D366; }
#preco.lp-pricing .lp-payments .fa-barcode, #pricing.lp-pricing .lp-payments .fa-barcode { color: #6b7280; }
#preco.lp-pricing .lp-payments .fa-money-bill-wave, #pricing.lp-pricing .lp-payments .fa-money-bill-wave { color: #1ebe57; }

/* Botão ocupa largura total dentro do card para melhor toque em mobile */
#preco.lp-pricing .lp-price-card .btn, #pricing.lp-pricing .lp-price-card .btn {
  width: 100%;
  margin-top: 6px;
  font-size: 0.9rem;
  padding: 10px 12px;
}

/* Card em destaque (featured) com borda/elevação e ribbon */
#preco.lp-pricing .lp-price-card.lp-featured, #pricing.lp-pricing .lp-price-card.lp-featured {
  border: 2px solid #25D366;
  box-shadow: 0 12px 28px rgba(14, 45, 24, 0.12);
  transform: translateY(-2px);
}
#preco.lp-pricing .lp-price-card.lp-featured::before, #pricing.lp-pricing .lp-price-card.lp-featured::before {
  content: none; /* remove o texto e o pseudo-elemento */
}

#preco.lp-pricing .lp-price-card .btn.btn-primary, #pricing.lp-pricing .lp-price-card .btn.btn-primary {
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
=======
/* Estilos modernos para a landing page do Capitão Animais - Estilo Cinematográfico */

/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Paleta do tema: fundo verde, detalhes/vermelho */
:root {
    --primary-color: #4caf50; /* Verde */
    --secondary-color: #e53935; /* Vermelho */
    --accent-color: #e53935; /* Vermelho para animações e destaques */
    --text-color: #ffffff; /* Branco */
    --dark-bg: #0e2d18; /* Verde bem escuro (fundo) */
    --dark-bg-lighter: #154a2a; /* Verde escuro um pouco mais claro */
    --transition-speed: 0.3s;
}

/* Deixar rolagem suave para âncoras (#links) */
html {
    scroll-behavior: smooth;
}

/* Corpo mantém só bloqueio horizontal, fundo vem das variáveis acima */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto; /* garante rolagem vertical */
}

body.no-scroll {
    overflow: hidden;
}

/* Header e navegação */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-speed) ease;
    background-color: #ffffff; /* FUNDO BRANCO */
    color: var(--dark-bg);      /* TEXTO ESCURO */
}

header.scrolled {
    background-color: #ffffff; /* manter branco ao rolar */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

/* Deixar links escuros sobre o fundo branco do header */
header .nav-links a {
    color: var(--dark-bg);
}

/* Deixar o ícone do menu (três risquinhos) escuro sobre o branco */
header .hamburger div {
    background-color: var(--dark-bg);
}

/* Logo larga (banner) */
.logo-banner {
    height: 48px;
    width: auto;
    display: block;
    background: transparent !important;
    transition: transform var(--transition-speed) ease;
}

header.scrolled .logo-banner {
    height: 42px;
}

.logo:hover .logo-banner {
    transform: scale(1.03);
}

.logo-img {
    width: 50px;
    height: 50px;
    transition: transform var(--transition-speed) ease;
}

.logo:hover .logo-img {
    transform: rotate(10deg);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.nav-links a:hover:after {
    width: 100%;
}

.cta-button {
    margin-left: 20px;
}

/* Hamburger menu para mobile */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 72vh; /* menor que 100vh para que o restante apareça imediatamente */
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(10, 25, 41, 0.7), rgba(10, 25, 41, 0.9)), url('images/Capa do livro.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* evita travas de rolagem em mobile */
    position: relative;
    overflow: visible; /* não corta conteúdo subsequente */
    padding-top: 100px; /* compensa header fixo */
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, var(--dark-bg) 150%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

/* Sobre Mim Section */
.about {
    background-color: var(--dark-bg-lighter);
    position: relative;
    overflow: hidden;
}

.about:before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-speed) ease;
}

.about-image:before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--accent-color);
    border-radius: 20px;
    z-index: -1;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: var(--primary-color);
}

/* Livros/Histórias Section */
.books {
    position: relative;
    overflow: hidden;
}

.books:after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 0;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.book-card {
    background-color: var(--dark-bg-lighter);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-speed) ease;
    position: relative;
    top: 0;
}

.book-card:hover {
    top: -10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.book-image {
    height: 300px;
    overflow: hidden;
}

.book-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-speed) ease;
}

.book-card:hover .book-image img {
    transform: scale(1.05);
}

.book-info {
    padding: 25px;
}

.book-genre {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.book-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.book-description {
    margin-bottom: 20px;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Depoimentos Section */
.testimonials {
    background-color: var(--dark-bg-lighter);
    position: relative;
}

.testimonials-slider {
    position: relative;
    z-index: 1;
}

.testimonial-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin: 20px;
    position: relative;
    border-left: 4px solid var(--primary-color);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text:before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: -40px;
    left: -20px;
    color: var(--accent-color);
    opacity: 0.2;
}

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

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
}

/* Contato Section */
.contact {
    position: relative;
    overflow: hidden;
}

.contact-content {
    display: flex;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    color: var(--secondary-color);
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--dark-bg-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.5rem;
}

.contact-text h4 {
    margin-bottom: 5px;
}

.contact-text p {
    margin: 0;
    opacity: 0.8;
}

.contact-form {
    flex: 1;
    background-color: var(--dark-bg-lighter);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    transition: all var(--transition-speed) ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--dark-bg-lighter);
    padding: clamp(32px, 6vw, 48px) 0 clamp(16px, 4vw, 24px);
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(24px, 4vw, 40px);
    margin-bottom: clamp(20px, 4vw, 32px);
    position: relative;
    z-index: 1;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    width: 120px;
    margin-bottom: 14px;
}

.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-links h3 {
    color: var(--primary-color);
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed) ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

/* Animações e efeitos */
.reveal-section,
.reveal {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal-section.active,
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Estilos para os cards de heróis */

/* Lightbox das imagens dos heróis */
.hero-lightbox { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; z-index: 9999; }
.hero-lightbox.open { display: flex; }
.hero-lightbox .hero-lightbox-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.8); backdrop-filter: blur(2px); }
.hero-lightbox .hero-lightbox-image { position: relative; max-width: 92vw; max-height: 90vh; border-radius: 10px; box-shadow: 0 24px 64px rgba(0,0,0,.5); z-index: 1; }
.hero-lightbox .hero-lightbox-close { position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,.92); color: var(--primary-color); border: 0; border-radius: 999px; width: 40px; height: 40px; font-size: 22px; line-height: 40px; cursor: pointer; z-index: 2; box-shadow: 0 6px 18px rgba(0,0,0,.25); }

/* Indicar clicável nos cards de heróis */
.lp-values .hero-card .hero-image-container { cursor: zoom-in; }
.hero-card {
  text-align: center;
}

.hero-image-container {
  width: 100%;
  height: 200px;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background-color: #f0f0f0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain; /* evita cortes */
  object-position: center; /* centraliza horizontal e vertical */
  transition: transform .3s ease;
  display: block;
}

.hero-image:hover {
  transform: scale(1.05);
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #e9ecef;
  color: #6c757d;
  border: 2px dashed #dee2e6;
}

.image-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.image-placeholder p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Responsivo base */
@media (max-width: 1200px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
    .container { padding: 0 40px; }
}

@media (max-width: 992px) {
    .about-content,
    .contact-content { flex-direction: column; }

    .about-image:before { display: none; }
    .about-image { margin-bottom: 40px; }
    .about-image img { max-width: 100%; }

    /* === Overrides finais do cabeçalho (desktop e mobile) === */
    .lp-header { position: sticky; top: 0; z-index: 1000; background: #fff; border-bottom: 1px solid rgba(0,0,0,.06); }
    .lp-header .lp-container { display: flex; align-items: center; justify-content: center; gap: 24px; min-height: 72px; }
    .lp-header nav { display: flex; align-items: center; }
    .lp-header .lp-brand { display: flex; align-items: center; }
    .lp-header .lp-logo { height: 46px; width: auto; display: block; }
    .lp-header .nav-links { display: flex; align-items: center; gap: 20px; margin: 0; padding: 0; list-style: none; }
    .lp-header .nav-links li { list-style: none; margin: 0; padding: 0; }
    .lp-header .nav-links a { text-decoration: none; color: #223; font-weight: 600; font-size: 0.95rem; }
    
    /* Painel mobile */
    /* Regras duplicadas removidas - já definidas anteriormente */

    .hamburger.active div:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
    .hamburger.active div:nth-child(2) { opacity: 0; }
    .hamburger.active div:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }
}

@media (max-width: 768px) {
    section { padding: 80px 0; }
    h1 { font-size: 3rem; }
    h2 { font-size: 2rem; }

    .hero-buttons { flex-direction: column; gap: 15px; }
    .hero-buttons .btn { width: 100%; text-align: center; }

    .books-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
    .footer-content { flex-direction: column; gap: 40px; }
}

@media (max-width: 576px) {
    h1 { font-size: 2.5rem; }
    .container { padding: 0 20px; }
    .hero-subtitle { font-size: 1.2rem; }
    .nav-links { width: 100%; }
}

/* Compensação de âncoras para cabeçalho fixo */
.lp-section { scroll-margin-top: 84px; }
@media (max-width: 768px) {
  .lp-section { scroll-margin-top: 100px; }
}
@media (max-width: 1200px) {
  .lp-header .nav-links .btn.btn-primary { padding: 0.6rem 1.05rem; }
}

/* Hero */
.lp-hero { padding: 72px 0 48px; background: linear-gradient(180deg,#fff 0%,#f4faf5 100%); position: relative; overflow: hidden; }
/* Layout desktop: título, subtítulo, imagem, botões em coluna única */
.lp-hero-grid { display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; max-width: 800px; margin: 0 auto; }
.lp-hero h1 { font-size: clamp(2rem,2.6rem + 1.5vw,3.2rem); color: #0e2d18; margin-bottom: 10px; }
.lp-hero .lp-sub { color: #456; max-width: 100%; width: 100%; margin-bottom: 18px; }
.lp-hero .lp-hero-visual { position: relative; order: 2; }
/* imagem maior para ocupar melhor a área em desktops */
.lp-hero .lp-hero-image { width: 100%; max-width: 320px; border-radius: 14px; box-shadow: 0 20px 60px rgba(0,0,0,.18); position: relative; z-index: 2; display: block; }
.lp-hero .lp-hero-copy { margin-left: 0; width: 100%; max-width: none; text-align: center; order: 1; }
.lp-hero .lp-cta { order: 3; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
/* Centraliza o título do herói acima do subtítulo */
.lp-hero .lp-hero-copy h1 { text-align: center; line-height: 0.88; }
.lp-hero .lp-hero-copy h1 span { white-space: nowrap; display: inline-block; word-break: normal; hyphens: manual; }
@media (max-width: 768px){ 
  /* Reduzir espaçamento superior no mobile para aproximar cabeçalho do título */
  .lp-hero { 
    padding: 32px 0 48px; /* reduzido de 72px para 32px no topo */
  }
  
  .lp-hero .lp-hero-copy { margin-left: 0; width: auto; max-width: 100%; } 
  /* Reorganizar layout mobile: título, subtítulo, imagem, botões */
  .lp-hero-grid { 
    grid-template-columns: 1fr; 
    gap: 24px; 
    text-align: center; 
    display: flex;
    flex-direction: column;
  }
  .lp-hero .lp-hero-copy { 
    order: 1; 
  }
  .lp-hero .lp-hero-visual { 
    order: 2; 
    justify-self: center; 
  }
  .lp-hero .lp-cta { 
    order: 3; 
    margin-top: 24px; 
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  /* Ajustes específicos para o texto no mobile */
  .lp-hero .lp-hero-copy h1 { 
    font-size: clamp(1.8rem, 4vw, 2.4rem); 
    line-height: 1.1; 
  }
  .lp-hero .lp-hero-copy h1 span { 
    white-space: normal; 
    display: inline; 
    word-break: break-word; 
  }
  .lp-hero .lp-sub { 
    font-size: clamp(1rem, 3vw, 1.2rem); 
    line-height: 1.4; 
    margin-bottom: 24px; 
  }
}
.lp-blob { position: absolute; inset: -40px -80px auto auto; width: 300px; height: 300px; background: radial-gradient(circle at 30% 30%,rgba(76,175,80,.35),rgba(14,45,24,.6) 70%); border-radius: 50%; filter: blur(6px); z-index: 1; }
.lp-blob.small { width: 220px; height: 220px; inset: auto auto -40px -40px; background: radial-gradient(circle at 40% 40%,rgba(76,175,80,.3),rgba(14,45,24,.5) 70%); }

/* ============================== */
/* Correção: vídeos e imagens sem esticar */
/* Mantém a proporção 16:9 dos players e evita esticamento lateral */
.video-container,
.lp-video-container {
  position: relative;
  width: 100%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9; /* navegadores modernos */
}

/* Fallback para manter 16:9 onde aspect-ratio não é suportado */
.video-container::before,
.lp-video-container::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 9/16 = 0.5625 */
}

@supports (aspect-ratio: 16 / 9) {
  .video-container::before,
  .lp-video-container::before { display: none; padding: 0; content: none; }
}

.video-container iframe,
.lp-video-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Garante que imagens relevantes nunca deformem: ocupam largura máxima e altura proporcional */
.hero-card img,
#product.lp-product .lp-product-visual img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Espaçamento superior da seção e variáveis utilitárias (podem ser reaproveitadas) */
#product.lp-product {
  color: #223;
  margin-top: clamp(44px, 5.2vw, 72px);
  --sobre-h2-size: clamp(28px, 2.6vw, 36px);
  --sobre-h2-gap: clamp(12px, 1.6vw, 20px);
  --sobre-h2-lh: 1.25;
}

/* Novo layout: imagem acima do título e centralizada */
#product.lp-product .lp-two-col {
  display: grid; /* garante grid ativo mesmo se herdado de outro lugar */
  grid-template-columns: 1fr; /* coluna única para esta seção */
  row-gap: clamp(10px, 1.6vw, 18px);
  justify-items: center; /* centraliza filhos no eixo X */
}
#product.lp-product .lp-product-visual {
  grid-row: 1;
  grid-column: 1;
  display: flex;
  justify-content: center; /* centraliza a imagem */
}
#product.lp-product .lp-product-visual img {
  max-width: clamp(190px, 24vw, 260px); /* diminui mais um pouco no desktop */
  margin-top: 0 !important; /* remove qualquer alinhamento anterior pelo topo do parágrafo */
}
#product.lp-product .lp-product-copy {
  grid-row: 2;
  grid-column: 1;
  max-width: 820px; /* limita largura da leitura */
  margin: 0 auto;
}
#product.lp-product h2 {
  color: #0e2d18;
  text-align: center; /* centraliza o título */
  font-size: var(--sobre-h2-size);
  line-height: var(--sobre-h2-lh);
  margin: 8px 0 var(--sobre-h2-gap); /* pequeno espaço acima e abaixo */
}
#product.lp-product .lp-product-copy p { text-align: justify; color: #223; }

/* Responsivo (já está em coluna única, apenas garante tamanhos amistosos) */
@media (max-width: 768px) {
  #product.lp-product .lp-product-visual img { max-width: clamp(150px, 48vw, 200px); } /* pequena redução extra no mobile */
  
  /* Ajustes específicos para texto da seção "Sobre o Autor" no mobile */
  #product.lp-product .lp-product-copy {
    padding: 0 16px; /* adiciona padding lateral para melhor leitura */
  }
  
  #product.lp-product .lp-product-copy p {
    text-align: justify; /* mantém justificação total */
    text-justify: inter-word; /* melhora a distribuição das palavras */
    line-height: 1.6; /* aumenta espaçamento entre linhas para melhor leitura */
    margin-bottom: 16px; /* espaçamento consistente entre parágrafos */
    font-size: clamp(14px, 3.5vw, 16px); /* tamanho responsivo da fonte */
    hyphens: auto; /* permite hifenização automática */
    word-wrap: break-word; /* quebra palavras muito longas */
  }
  
  #product.lp-product h2 {
    font-size: clamp(24px, 5vw, 32px); /* título responsivo */
    margin-bottom: clamp(16px, 4vw, 24px); /* espaçamento responsivo */
  }
}

/* Grade de 3 colunas para Vídeos (pequenos, em uma única linha no desktop) */
/* Ajuste: vídeos pequenos, alinhados em uma única linha no desktop */
.lp-video-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 300px); /* aumentado de 260px para 300px */
  justify-content: center; /* centraliza o conjunto */
  gap: 16px 24px; /* linha x coluna */
  align-items: start;
  margin-top: 18px;
}

.video-card { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.video-card .video-container { width: 100%; max-width: none; }
.video-card h4 { margin: 6px 0 0; text-align: center; font-weight: 600; }

/* Vídeo principal mais contido e centralizado */
.lp-video .lp-video-container { max-width: 560px; margin: 0 auto; }

/* Imagens lado a lado (3 por linha) */
.lp-cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 300px); /* aumentado o tamanho dos cards */
  justify-content: center; /* centraliza o grid dentro do container */
  gap: 20px 28px; /* um pouco mais de respiro */
}

/* Ajustes visuais dos cards menores - formato quadrado */
.hero-card { width: 100%; }
.hero-card .hero-image-container { height: 240px; } /* altura ajustada para formato mais próximo do quadrado considerando padding total */
.hero-card h3 { margin-top: 8px; }

/* Responsivo: 2 colunas entre 768–900px e 1 coluna abaixo de 768px */
@media (max-width: 900px) and (min-width: 769px) {
  .lp-video-testimonials { grid-template-columns: repeat(2, 1fr); }
  .lp-cards-3 { grid-template-columns: repeat(2, 300px); }
}
@media (max-width: 768px) {
  .lp-video-testimonials { 
    display: grid !important;
    grid-template-columns: 1fr !important; 
    gap: 24px; /* mais espaço entre vídeos em mobile */
    padding: 0 16px; /* padding lateral para não colar nas bordas */
  }
  .lp-cards-3 { grid-template-columns: 1fr; }
  
  /* Ajustes específicos para vídeos em mobile */
  .video-card {
    display: block !important;
    max-width: 100%;
    margin: 0 auto;
    width: 100% !important;
  }
  
  .video-card .video-container {
    display: block !important;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    width: 100% !important;
    height: 0;
    padding-bottom: 56.25% !important; /* 16:9 aspect ratio */
  }
  
  .video-card .video-container iframe {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
  }
  
  .video-card h4 {
    display: block !important;
    font-size: 1rem;
    margin-top: 12px;
    text-align: center;
  }
  
  /* Vídeo principal da seção 'Como criei o Capitão Animais' em mobile */
   .lp-video .lp-video-container {
     max-width: calc(100% - 32px);
     margin: 0 auto;
     padding: 0 16px;
   }
   
   /* Ajuste específico para o container da seção de vídeo */
   #capitao-animais.lp-video .lp-container {
     padding: 0 16px;
   }
}
/* Redução drástica do espaçamento entre "Sobre o Autor" e "Super Heróis" */
#product.lp-product {
  padding-bottom: 10px !important; /* reduz drasticamente o espaço inferior */
}

#value.lp-values {
  margin-top: clamp(5px, 0.5vw, 8px);
  padding-top: 10px !important; /* reduz drasticamente o espaço superior */
}

/* Título estilizado da seção de Heróis */
#value.lp-values .lp-container > h2 {
  color: #0e2d18;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.4px;
  margin-bottom: 2.2rem !important; /* deixa um pouco mais elegante que o inline */
  position: relative;
}
#value.lp-values .lp-container > h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #38d07a, #28a745);
}

/* Redesign moderno dos cards dos Heróis com animações de fundo */
.lp-values .lp-cards-3 { gap: 24px 32px; }
.lp-values .hero-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafb 100%);
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 20px;
  padding: 15px 20px 25px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.04);
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Animação de fundo com ondas */
.lp-values .hero-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 70%, rgba(56, 208, 122, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(40, 167, 69, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(32, 201, 151, 0.06) 0%, transparent 50%);
  animation: floatingBubbles 8s ease-in-out infinite;
  opacity: 0;
  transition: opacity .5s ease;
}

/* Borda superior animada */
.lp-values .hero-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #38d07a, #28a745, #20c997, transparent);
  animation: slideIn 2s ease-in-out infinite;
  opacity: 0;
}

@keyframes floatingBubbles {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-10px, -15px) rotate(90deg); }
  50% { transform: translate(15px, -10px) rotate(180deg); }
  75% { transform: translate(-5px, 10px) rotate(270deg); }
}

@keyframes slideIn {
  0% { left: -100%; opacity: 0; }
  50% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.lp-values .hero-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,.12), 0 8px 20px rgba(56, 208, 122, .15);
  border-color: rgba(56, 208, 122, .3);
}

.lp-values .hero-card:hover::before {
  opacity: 1;
  animation-duration: 4s;
}

.lp-values .hero-card:hover::after {
  opacity: 1;
  animation-duration: 1.5s;
}
.lp-values .hero-card .hero-image-container {
  background: linear-gradient(135deg, #f8fafb 0%, #e9ecef 100%);
  border: 2px solid #e9ecef;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
  flex: 1;
  min-height: 0;
}

/* Efeito de partículas flutuantes no fundo da imagem */
.lp-values .hero-card .hero-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(56, 208, 122, 0.15) 0%, transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(40, 167, 69, 0.12) 0%, transparent 30%),
    radial-gradient(circle at 40% 40%, rgba(32, 201, 151, 0.1) 0%, transparent 30%);
  animation: particleFloat 6s ease-in-out infinite;
  opacity: 0;
  transition: opacity .4s ease;
}

.lp-values .hero-card .hero-image-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, 
    rgba(56, 208, 122, .08) 0%, 
    transparent 25%, 
    rgba(40, 167, 69, .06) 50%, 
    transparent 75%, 
    rgba(32, 201, 151, .08) 100%);
  background-size: 200% 200%;
  animation: gradientShift 4s ease-in-out infinite;
  opacity: 0;
  transition: opacity .3s ease;
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.1); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.lp-values .hero-card:hover .hero-image-container {
  border-color: rgba(56, 208, 122, .4);
  box-shadow: inset 0 0 20px rgba(56, 208, 122, .1);
}

.lp-values .hero-card:hover .hero-image-container::before {
  opacity: 1;
  animation-duration: 3s;
}

.lp-values .hero-card:hover .hero-image-container::after { 
  opacity: 1;
  animation-duration: 2s;
}
.lp-values .hero-card .hero-image {
  width: auto;            /* deixa o browser calcular mantendo proporção */
  height: auto;           
  max-width: 100%;        /* não ultrapassa o container */
  max-height: 100%;       /* ocupa a maior área possível sem cortar */
  object-fit: contain;    /* garante sem cortes */
  object-position: center;/* centraliza */
  transition: transform .3s ease;
  display: block;
}
.lp-values .hero-card:hover .hero-image { transform: none; }
.lp-values .hero-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a202c;
  margin: 16px 0 8px;
  text-align: center;
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all .3s ease;
}
.lp-values .hero-card:hover h3 {
  background: linear-gradient(135deg, #38d07a 0%, #28a745 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateY(-2px);
}
.lp-values .hero-card p {
  font-size: 0.95rem;
  color: #4a5568;
  text-align: center;
  line-height: 1.5;
  margin: 0;
  transition: color .3s ease;
}
.lp-values .hero-card:hover p {
  color: #2d3748;
}

@media (max-width: 768px) {
  #value.lp-values { margin-top: clamp(36px, 7vw, 72px); }
  #value.lp-values .lp-container > h2 { margin-bottom: 1.6rem !important; }
  .lp-values .hero-card .hero-image-container { height: 160px; }
}

/* Media queries específicas para vídeos em diferentes tamanhos de mobile */
@media (max-width: 480px) {
  /* Telas muito pequenas - ajustes extras para vídeos */
  .lp-video-testimonials {
    padding: 0 12px;
    gap: 20px;
  }
  
  .video-card h4 {
    font-size: 0.9rem;
    margin-top: 10px;
  }
  
  .lp-video .lp-video-container {
     max-width: calc(100% - 24px);
     margin: 0 auto;
     padding: 0 12px;
   }
   
   #capitao-animais.lp-video .lp-container {
     padding: 0 12px;
   }
  
  /* Ajuste do título da seção de vídeos em telas pequenas */
  #trust.lp-trust .lp-container > h2,
  #capitao-animais.lp-video .lp-container > h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 1.2rem;
  }
}

@media (max-width: 360px) {
  /* Telas extra pequenas - ajustes mínimos */
  .lp-video-testimonials {
    padding: 0 8px;
    gap: 16px;
  }
  
  .lp-video .lp-video-container {
     max-width: calc(100% - 16px);
     margin: 0 auto;
     padding: 0 8px;
   }
   
   #capitao-animais.lp-video .lp-container {
     padding: 0 8px;
   }
}

/* Oculta o footer em dispositivos móveis para melhor UX */
@media (max-width: 768px) {
  .lp-footer {
    display: none !important; /* remove o footer completamente em mobile */
  }
}

/* ===== Depoimentos: tema verde escuro, título contrastante e espaçamento ===== */
#trust.lp-trust {
  margin-top: clamp(44px, 6.4vw, 96px);
  background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-lighter) 100%);
  color: #ecf7f1;
  padding: clamp(48px, 6vw, 104px) 0 clamp(80px, 8vw, 160px); /* antes: bottom clamp(64px, 7vw, 136px) */
}
#trust.lp-trust .lp-container > h2 {
  color: #ffffff;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.4px;
  margin-bottom: 2.8rem;
  position: relative;
}
#trust.lp-trust .lp-container > h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #c8f6dc, #8be7b8);
}
/* Textos internos com branco suave para boa leitura */
#trust.lp-trust p,
#trust.lp-trust .lp-sub,
#trust.lp-trust .testimonial-text,
#trust.lp-trust .author-info h4,
#trust.lp-trust .author-info p,
#trust.lp-trust .video-card h4 {
  color: #f3fff8;
}
/* Blocos de depoimento com leve transparência e borda verde clara */
#trust.lp-trust .testimonial-item {
  background-color: rgba(255, 255, 255, 0.06);
  border-left-color: #8be7b8;
}

@media (max-width: 768px) {
  #trust.lp-trust { margin-top: clamp(36px, 7vw, 80px); padding: clamp(36px, 7vw, 64px) 0 clamp(64px, 9vw, 112px); } /* antes: bottom clamp(48px, 8vw, 88px) */
  #trust.lp-trust .lp-container > h2 { margin-bottom: 2rem; }
}

/* ===== Header: overrides globais finais (fora de @media) ===== */
.lp-header { position: sticky; top: 0; z-index: 1000; background: #fff; border-bottom: 1px solid rgba(0,0,0,.06); }
.lp-header .lp-container { display: flex; align-items: center; justify-content: center; gap: 24px; min-height: 72px; }
.lp-header nav { display: flex; align-items: center; }
.lp-header .lp-brand { display: flex; align-items: center; }
.lp-header .lp-logo { height: 46px; width: auto; display: block; }
#capitao-animais.lp-video .lp-container > h2 { 
  color: #0e2d18; 
  text-align: center; 
  font-weight: 800; 
  margin-bottom: 1.6rem; 
}
#capitao-animais.lp-video .lp-container > h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #38d07a, #28a745);
}

/* ===== Header: overrides globais finais (fora de @media) ===== */
.lp-header { position: sticky; top: 0; z-index: 1000; background: #fff; border-bottom: 1px solid rgba(0,0,0,.06); }
.lp-header .lp-container { display: flex; align-items: center; justify-content: center; gap: 24px; min-height: 72px; }
.lp-header nav { display: flex; align-items: center; }
.lp-header .lp-brand { display: flex; align-items: center; }
.lp-header .lp-logo { height: 46px; width: auto; display: block; }
/* Espaçamento extra entre Depoimentos e a seção seguinte (Origem / vídeo principal) */
#capitao-animais.lp-video { 
  margin-top: clamp(28px, 5vw, 64px); /* já existente para respiro externo entre seções */
  padding-top: clamp(16px, 3.2vw, 40px); /* novo: desce um pouco o título e o vídeo dentro da seção */
}
.lp-header .lp-container {
  padding-top: 12px; /* empurra conteúdo interno para baixo sem sair do header */
}

@media (max-width: 992px) {
  .lp-header .lp-container {
    padding-top: 10px; /* leve ajuste em telas menores */
  }
}

.lp-header .lp-container { display: flex; align-items: center; }
.lp-header .lp-brand { display: flex; align-items: center; }
.lp-header .lp-logo { height: 46px; width: auto; display: block; }
.lp-header .nav-links { display: flex; align-items: center; gap: 20px; margin: 0; padding: 0; list-style: none; }
.lp-header .nav-links li { list-style: none; margin: 0; padding: 0; }
.lp-header .nav-links a { text-decoration: none; color: #223; font-weight: 600; font-size: 0.95rem; }
/* Garantia extra para qualquer UL do menu */
.nav-links, .nav-links li { list-style: none; margin: 0; padding: 0; }

/* Regra duplicada removida - menu mobile já definido na linha 1361 */
/* ===== fim ===== */

/* ===== Navegação moderna: estilo e interações ===== */
/* Links do menu com sublinhado animado e estado ativo (scroll spy) */
.lp-header .nav-links { gap: 22px; margin-right: 24px; }
.lp-header .nav-links a { position: relative; padding: 10px 2px; color: #334; opacity: .92; transition: color .2s ease, opacity .2s ease; }
.lp-header .nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px; border-radius: 2px; background: linear-gradient(90deg, #38d07a, #28a745); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.lp-header .nav-links a:hover { color: #0e2d18; opacity: 1; }
.lp-header .nav-links a:hover::after { transform: scaleX(1); }
.lp-header .nav-links a.is-active { color: #0e2d18; opacity: 1; }
.lp-header .nav-links a.is-active::after { transform: scaleX(1); }

/* CTA WhatsApp como pill moderno com ícone */
.lp-header .nav-links .btn.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 0.55rem 0.95rem; line-height: 1; border-radius: 999px; border: none; background: linear-gradient(90deg, #25D366, #1ebe57); color: #fff !important; box-shadow: 0 6px 16px rgba(37, 211, 102, .28); text-decoration: none; }
.lp-header .nav-links .btn.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(37, 211, 102, .35); }
.lp-header .nav-links .btn.btn-primary::before { content: "\f232"; font-family: "Font Awesome 6 Brands"; font-weight: 400; font-size: 1rem; }

/* Mobile: lista vertical com espaçamento amigável e botões legíveis */
@media (max-width: 992px) {
  .lp-header .nav-links { gap: 18px; margin-right: 0; }
  .lp-header .nav-links a { color: #e8fff2; font-size: 1.05rem; }
  .lp-header .nav-links a::after { bottom: -4px; }
  .lp-header .nav-links .btn.btn-primary { width: 100%; justify-content: center; }
}
/* ===== fim navegação moderna ===== */

/* Ajuste fino: deslocar logo e menu um pouco mais para baixo dentro do cabeçalho (incremento) */
.lp-header .lp-container {
  padding-top: 16px; /* antes: 12px */
}

@media (max-width: 992px) {
  .lp-header .lp-container {
    padding-top: 12px; /* antes: 10px */
  }
}

/* Incremento 2: baixar ainda mais logo e menu dentro do cabeçalho */
.lp-header .lp-container {
  padding-top: 24px; /* antes: 16px */
}

@media (max-width: 992px) {
  .lp-header .lp-container {
    padding-top: 16px; /* antes: 12px */
  }
}

/* ===== Botões globais: transformar links com classe .btn em botões visuais ===== */
.btn { 
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0.72rem 1.15rem; border-radius: 10px; 
  font-weight: 700; font-size: 1rem; line-height: 1; 
  text-decoration: none !important; cursor: pointer; user-select: none;
  border: 2px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn:active { transform: translateY(0); }
.btn:focus { outline: none; box-shadow: 0 0 0 3px rgba(40,167,69,0.25); }

/* Primário verde preenchido */
.btn.btn-primary { 
  background: linear-gradient(90deg, #25D366, #1ebe57); 
  color: #fff !important; 
  box-shadow: 0 6px 16px rgba(37, 211, 102, .28);
}
.btn.btn-primary:hover { box-shadow: 0 10px 22px rgba(37, 211, 102, .35); transform: translateY(-1px); }

/* Contorno verde (transparente) */
.btn.btn-outline { 
  background: transparent; 
  border-color: #28a745; 
  color: #0e2d18; 
}
.btn.btn-outline:hover { 
  background: linear-gradient(90deg, #25D366, #1ebe57); 
  color: #fff !important; border-color: transparent;
  box-shadow: 0 10px 22px rgba(37, 211, 102, .28); transform: translateY(-1px);
}

/* Botões maiores e com espaçamento na área do herói */
.hero-buttons .btn { margin-right: 6px; }
.hero-buttons .btn:last-child { margin-right: 0; }
@media (max-width: 768px) { .hero-buttons .btn { width: 100%; } }

}
/* ====== PRICING / PREÇO ====== */
#preco.lp-pricing, #pricing.lp-pricing {
  background: #f8faf9;
  color: #0e2d18;
  margin-top: clamp(64px, 9vw, 160px);
  padding-top: clamp(28px, 5vw, 64px);
  padding-bottom: clamp(112px, 12vw, 192px);
}

/* Desktop: reforço de respiro para ficar bem visível */
@media (min-width: 992px) {
  #preco.lp-pricing, #pricing.lp-pricing {
    margin-top: 120px !important;
    padding-top: 48px !important;
    padding-bottom: 240px !important;
  }
}

#preco.lp-pricing .lp-container > h2 {
  color: #0e2d18 !important;
  text-align: center;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

#preco.lp-pricing .lp-container > p {
  color: #2c3e50 !important;
  opacity: 0.9;
  text-align: center;
  margin-bottom: clamp(8px, 1.2vw, 16px);
}

#preco.lp-pricing .lp-cards-2-centered, #pricing.lp-pricing .lp-cards-2-centered {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 340px));
  gap: clamp(16px, 2.5vw, 28px);
  align-items: stretch;
  justify-content: center;
  justify-items: center; /* centraliza os cards dentro das colunas */
}

@media (max-width: 768px) {
  #preco.lp-pricing .lp-cards-2-centered, #pricing.lp-pricing .lp-cards-2-centered { grid-template-columns: 1fr; }
  #preco.lp-pricing .lp-price-card, #pricing.lp-pricing .lp-price-card { max-width: 520px; }
}

#preco.lp-pricing .lp-price-card, #pricing.lp-pricing .lp-price-card {
  background: #ffffff;
  color: #0e2d18;
  border: 1px solid rgba(14, 45, 24, 0.12);
  border-radius: 14px;
  padding: clamp(10px, 1.8vw, 18px);
  box-shadow: 0 6px 18px rgba(14, 45, 24, 0.06);
  text-align: center;
  position: relative; /* para permitir ribbon */
  overflow: hidden;   /* evita overflow do ribbon */
  max-width: 340px; /* limita a largura do card */
  width: 100%;
}

#preco.lp-pricing .lp-price-card h3, #pricing.lp-pricing .lp-price-card h3 {
  font-size: clamp(15px, 1.8vw, 18px);
  margin: 0 0 8px;
  color: #0e2d18;
  font-weight: 800;
}

#preco.lp-pricing .lp-price-card .lp-price {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 6px;
}

#preco.lp-pricing .lp-price-card ul, #pricing.lp-pricing .lp-price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  color: #2c3e50;
}

#preco.lp-pricing .lp-payments, #pricing.lp-pricing .lp-payments {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  color: #0e2d18;
  margin-bottom: 10px;
}

/* Ícones do pagamento com tamanho e cores sutis */
#preco.lp-pricing .lp-payments i, #pricing.lp-pricing .lp-payments i {
  font-size: 0.9rem;
  opacity: 0.95;
}
#preco.lp-pricing .lp-payments .fa-credit-card, #pricing.lp-pricing .lp-payments .fa-credit-card { color: #25D366; }
#preco.lp-pricing .lp-payments .fa-barcode, #pricing.lp-pricing .lp-payments .fa-barcode { color: #6b7280; }
#preco.lp-pricing .lp-payments .fa-money-bill-wave, #pricing.lp-pricing .lp-payments .fa-money-bill-wave { color: #1ebe57; }

/* Botão ocupa largura total dentro do card para melhor toque em mobile */
#preco.lp-pricing .lp-price-card .btn, #pricing.lp-pricing .lp-price-card .btn {
  width: 100%;
  margin-top: 6px;
  font-size: 0.9rem;
  padding: 10px 12px;
}

/* Card em destaque (featured) com borda/elevação e ribbon */
#preco.lp-pricing .lp-price-card.lp-featured, #pricing.lp-pricing .lp-price-card.lp-featured {
  border: 2px solid #25D366;
  box-shadow: 0 12px 28px rgba(14, 45, 24, 0.12);
  transform: translateY(-2px);
}
#preco.lp-pricing .lp-price-card.lp-featured::before, #pricing.lp-pricing .lp-price-card.lp-featured::before {
  content: none; /* remove o texto e o pseudo-elemento */
}

#preco.lp-pricing .lp-price-card .btn.btn-primary, #pricing.lp-pricing .lp-price-card .btn.btn-primary {
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;

}

/* ===== SEÇÃO DE REDES SOCIAIS ===== */
.lp-social-media {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 0;
  text-align: center;
}

.lp-social-media h2 {
  color: #2c3e50;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.lp-social-media p {
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

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

.social-icon:hover::before {
  opacity: 1;
}

.social-icon i {
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.social-icon span {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.social-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.social-icon:hover i {
  transform: scale(1.1);
}

/* Cores específicas para cada rede social */
.social-icon.youtube {
  background: linear-gradient(135deg, #ff0000, #cc0000);
  color: white;
}

.social-icon.instagram {
  background: linear-gradient(135deg, #e4405f, #833ab4, #fcb045);
  color: white;
}

.social-icon.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
  .lp-social-media {
    padding: 40px 0;
  }
  
  .lp-social-media h2 {
    font-size: 2rem;
  }
  
  .social-icons {
    gap: 1.5rem;
  }
  
  .social-icon {
    width: 50px;
    height: 50px;
  }
  
  .social-icon i {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .lp-social-media p {
    max-width: 280px;
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .social-icons {
    gap: 1rem;
  }
  
  .social-icon {
    width: 45px;
    height: 45px;
  }
  
  .social-icon i {
    font-size: 1.1rem;
  }
}

/* ===== FIM SEÇÃO DE REDES SOCIAIS ===== */