/* Estilo Aplicativo Pós Alterações */

:root {
    --bg-main: #fde8f0;
    --card-bg: #fad2e1;
    --text-dark: #000000;
    --primary: #f24b88;
    --wpp-green: #25d366; 
}
html { scroll-behavior: smooth; }
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; -webkit-font-smoothing: antialiased;}
body { background-color: var(--bg-main); color: var(--text-dark); line-height: 1.4; overflow-x: hidden; max-width: 600px; margin: 0 auto; box-shadow: 0 0 40px rgba(0,0,0,0.1); position: relative; padding-bottom: env(safe-area-inset-bottom);}
@media (min-width: 601px) { body { background-color: #ffffff; } html { background-color: #f1f1f1; } }

h1 { font-size: 1.55rem; font-weight: 900; line-height: 1.15; margin-bottom: 0.8rem; text-align: center; }
h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 1.2rem; text-align: center; text-transform: uppercase;}
.subtitle { font-size: 1.05rem; margin-bottom: 1.5rem; text-align: center; font-weight: 500;}

.app-section { padding: 2.2rem 1.5rem; background-color: var(--bg-main); }
.light-pink-bg { background-color: var(--card-bg); }

/* HEADER e CARROSSEL Automático */
.video-container { position: relative; padding-bottom: 65%; height: 0; border-radius: 12px; overflow: hidden; margin-bottom: 1rem; border: 3px solid #fff; background: #000; z-index: 10; }
.video-container iframe { position: absolute; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; }

.carousel-container { width: 100%; margin-bottom: 1.5rem; overflow: hidden; position: relative; padding: 10px 0; }
.carousel-container::before, .carousel-container::after { content: ''; position: absolute; top: 0; bottom: 0; width: 30px; z-index: 2; pointer-events: none; }
.carousel-container::before { left: 0; background: linear-gradient(to right, var(--bg-main), transparent); }
.carousel-container::after { right: 0; background: linear-gradient(to left, var(--bg-main), transparent); }

.carousel-track { display: flex; gap: 15px; width: max-content; animation: scrollCarousel 25s linear infinite; }
@keyframes scrollCarousel { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-50% - 7.5px)); } }
.carousel-img { width: 100px; height: 120px; object-fit: cover; border-radius: 12px; border: 3px solid #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }

.btn-purchase { display: flex; align-items: center; justify-content: center; width: 100%; background: linear-gradient(180deg, #fb639c 0%, #eb397b 100%); color: #fff; text-decoration: none; padding: 18px 15px; border-radius: 50px; font-size: 1.15rem; font-weight: 800; text-align: center; box-shadow: inset 0 -3px 0 rgba(0,0,0,0.1), 0 5px 15px rgba(242, 75, 136, 0.4); margin: 10px 0; }
.pulse { animation: simplePulse 2.5s infinite; }
@keyframes simplePulse { 0% {transform: scale(1);} 50% {transform: scale(1.03);} 100% {transform: scale(1);} }

/* GRID CATEGORIAS */
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 25px; text-align: center; }
.cat-item { display: flex; flex-direction: column; align-items: center; justify-content: center; background: #fff; padding: 10px; border-radius: 12px; box-shadow: 0 3px 6px rgba(0,0,0,0.05); }
.cat-img { width: 45px; height: 45px; object-fit: contain; margin-bottom: 5px; }
.cat-label { font-size: 0.8rem; font-weight: 800; color: var(--primary); text-transform: uppercase;}

/* LISTA VALORES */
.value-list { list-style: none; }
.value-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 1.1rem; margin-bottom: 1.2rem; font-weight: 700; }
.check-icon { background: var(--primary); color: #fff; width: 25px; height: 25px; display: flex; align-items: center; justify-content: center; border-radius: 5px; font-size: 0.9rem; flex-shrink: 0; }

/* PROVA SOCIAL COM ANIMAÇÃO SLIDE-UP */
.animated-testimonial-wrapper { display: flex; flex-direction: column; gap: 20px; }
.testimonial-item { display: flex; align-items: center; gap: 15px; background: #fff; padding: 15px; border-radius: 12px; box-shadow: 0 4px 10px rgba(0,0,0,0.04); opacity: 0; transform: translateY(20px); animation: fadeUpTesti 0.6s ease-out forwards; }
.testimonial-item:nth-child(1) { animation-delay: 0.2s;}
.testimonial-item:nth-child(2) { animation-delay: 0.4s;}
.testimonial-item:nth-child(3) { animation-delay: 0.6s;}
@keyframes fadeUpTesti { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.testimonial-img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid var(--primary); }
.testimonial-text { font-size: 0.95rem; font-style: italic; font-weight: 700; margin-bottom: 5px; line-height: 1.3;}
.testimonial-name { font-size: 0.85rem; font-weight: 500; color: #888; }


/* SEÇÕES GERAIS */
.print-visuals { display: flex; flex-direction: column; align-items: center; gap: 15px; }
.formats { display: flex; gap: 15px; }
.file-tag { background: #000; color: #fff; font-weight: 900; padding: 5px 10px; border-radius: 5px; font-size: 1.2rem; }
.mockup-img { width: 100%; max-width: 300px; border: 5px solid #fff; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

.guarantee-box { display: flex; align-items: center; gap: 15px; }
.guarantee-box img { width: 90px; }
.guarantee-text { font-size: 1.1rem; font-weight: 700; }

.price-box { text-align: center; margin-bottom: 1.5rem; }
.old-price { font-size: 1.2rem; font-weight: 600; }
.installments { font-size: 1.3rem; font-weight: 800; }

/* BOTTOM NAV & WPP */
.whatsapp-ball { position: fixed; bottom: 85px; right: 20px; background: var(--wpp-green); color: #fff; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 35px; box-shadow: 0 4px 10px rgba(0,0,0,0.3); z-index: 999; }
.bottom-nav { position: fixed; bottom: 0; left: 0; right: 0; height: 70px; background: #ffffff; max-width: 600px; margin: 0 auto; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #ddd; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.05); }
.nav-item { display: flex; flex-direction: column; align-items: center; justify-content: center; text-decoration: none; color: var(--primary); gap: 4px; width: 100%; }

/* Nova propriedade limitadora de Ícones da NavBar */
.nav-custom-icon { width: 22px; height: 22px; object-fit: contain; filter: opacity(0.8); transition: filter 0.2s;}
.nav-item:hover .nav-custom-icon { filter: opacity(1); }

.nav-item span { font-size: 0.75rem; font-weight: 700; }
.nav-item:hover, .nav-item:active { color: #a81c53; }
