/* ============================================
   COLORINDO OS ANIMAIS FANTÁSTICOS - STYLE.CSS
   ============================================ */

:root {
    --primary: #FF6B9D;
    --primary-dark: #E63E7A;
    --secondary: #FFC93C;
    --accent: #4ECDC4;
    --purple: #9B5DE5;
    --blue: #00BBF9;
    --green: #06D6A0;
    --orange: #FF9F43;
    --red: #EF476F;
    --dark: #2D3047;
    --light: #FFF9F4;
    --white: #FFFFFF;

    --gradient-main: linear-gradient(135deg, #FF6B9D 0%, #FFC93C 50%, #4ECDC4 100%);
    --gradient-secondary: linear-gradient(135deg, #9B5DE5 0%, #00BBF9 100%);
    --gradient-warm: linear-gradient(135deg, #FF6B9D 0%, #FF9F43 100%);

    --shadow-soft: 0 8px 24px rgba(45, 48, 71, 0.08);
    --shadow-medium: 0 12px 32px rgba(45, 48, 71, 0.12);
    --shadow-strong: 0 20px 60px rgba(255, 107, 157, 0.25);

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Fredoka', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    background: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.text-gradient-2 {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ============ NAVBAR ============ */
.navbar-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.navbar-custom.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.navbar-brand {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.5rem;
    color: var(--dark) !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    font-size: 1.8rem;
    display: inline-block;
    animation: bounce-soft 2s ease-in-out infinite;
}

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

.navbar-nav .nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    margin: 0 8px;
    position: relative;
    transition: color 0.3s;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-warm);
    transition: all 0.3s;
    border-radius: 2px;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover {
    color: var(--primary) !important;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.btn-cta-mini {
    background: var(--gradient-warm);
    color: white !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(255, 107, 157, 0.4);
    transition: all 0.3s;
    border: none;
    text-decoration: none;
}

.btn-cta-mini:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.5);
    color: white !important;
}

/* ============ HERO ============ */
.hero-section {
    background: linear-gradient(135deg, #FFE4F0 0%, #FFF5D6 50%, #D4F5F0 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    font-size: 3rem;
    opacity: 0.25;
    animation: float 6s ease-in-out infinite;
}

.shape-1 { top: 10%; left: 5%; animation-delay: 0s; }
.shape-2 { top: 20%; right: 8%; animation-delay: 1s; font-size: 4rem; }
.shape-3 { top: 60%; left: 8%; animation-delay: 2s; font-size: 3.5rem; }
.shape-4 { top: 70%; right: 12%; animation-delay: 1.5s; }
.shape-5 { top: 40%; left: 45%; animation-delay: 2.5s; font-size: 2.5rem; }
.shape-6 { top: 15%; left: 55%; animation-delay: 3s; }
.shape-7 { bottom: 15%; left: 35%; animation-delay: 1.2s; font-size: 2.8rem; }
.shape-8 { top: 50%; right: 30%; animation-delay: 0.8s; font-size: 2.2rem; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(8deg); }
}

.hero-container {
    position: relative;
    z-index: 2;
}

.badge-hero {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
    box-shadow: var(--shadow-soft);
}

.hero-title {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 28px;
    max-width: 520px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.feature-pill {
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-soft);
}

.feature-pill i {
    color: var(--green);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-items: flex-start;
    gap: 16px;
}

@media (max-width: 992px) {
    .hero-cta {
        align-items: center;
    }
    .hero-features {
        justify-content: center;
    }
}

.price-box {
    background: white;
    padding: 20px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    border: 3px dashed var(--secondary);
}

.price-old {
    color: #999;
    text-decoration: line-through;
    font-size: 0.95rem;
}

.price-current {
    font-size: 0.85rem;
    color: #666;
    margin-top: 4px;
}

.price-value {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 3rem;
    color: var(--primary);
    line-height: 1;
    margin-top: 4px;
}

.price-value strong {
    font-size: 4rem;
}

.price-value sup {
    font-size: 1.5rem;
    top: -1.4rem;
}

.price-tag {
    background: var(--green);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 8px;
}

.btn-cta-main {
    background: var(--gradient-warm);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.45);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 3px solid white;
    animation: pulse-btn 2s ease-in-out infinite;
}

@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 10px 30px rgba(255, 107, 157, 0.45); }
    50% { box-shadow: 0 10px 40px rgba(255, 107, 157, 0.7); }
}

.btn-cta-main:hover {
    transform: translateY(-3px) scale(1.02);
    color: white;
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.6);
}

.security-note {
    color: #666;
    font-size: 0.85rem;
}

.security-note i {
    color: var(--green);
}

/* HERO IMAGE (Criativo 1) */
.hero-image-wrap {
    position: relative;
    display: inline-block;
    margin: 30px auto;
    max-width: 100%;
}

.hero-image-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(255, 201, 60, 0.45) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.hero-image {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(45, 48, 71, 0.18);
    animation: float-image 4s ease-in-out infinite;
    transition: transform 0.4s ease;
}

@keyframes float-image {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

.hero-image-wrap:hover .hero-image {
    transform: scale(1.03) rotate(0);
}

.stamp-discount {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 90px;
    height: 90px;
    background: var(--red);
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.8rem;
    border: 4px solid white;
    box-shadow: 0 6px 20px rgba(239, 71, 111, 0.5);
    transform: rotate(15deg);
    z-index: 3;
    animation: stamp-bounce 2.5s ease-in-out infinite;
}

@keyframes stamp-bounce {
    0%, 100% { transform: rotate(15deg) scale(1); }
    50% { transform: rotate(15deg) scale(1.08); }
}

.stamp-discount small {
    font-size: 0.7rem;
    margin-top: -4px;
}

.wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave-divider svg {
    width: 100%;
    height: 80px;
}

/* ============ SECTIONS GENERIC ============ */
.section-tag {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 16px;
    box-shadow: var(--shadow-soft);
    border: 2px solid #ffe0ec;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 24px;
}

/* ============ BENEFITS ============ */
.section-benefits {
    padding: 100px 0;
    background: white;
}

.benefit-card {
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    height: 100%;
    transition: all 0.3s;
    border: 3px solid;
    cursor: default;
}

.benefit-card:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: var(--shadow-medium);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: inline-block;
    transition: transform 0.3s;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.2) rotate(10deg);
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.benefit-yellow { background: #FFF8DC; border-color: var(--secondary); }
.benefit-pink { background: #FFE4F0; border-color: var(--primary); }
.benefit-blue { background: #D6F4FF; border-color: var(--blue); }
.benefit-green { background: #D7F9EE; border-color: var(--green); }
.benefit-purple { background: #EFE3FA; border-color: var(--purple); }
.benefit-orange { background: #FFE7D0; border-color: var(--orange); }
.benefit-red { background: #FFE0E8; border-color: var(--red); }
.benefit-teal { background: #D2F3F0; border-color: var(--accent); }

/* ============ INSIDE ============ */
.section-inside {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFF9F4 0%, #FFE4F0 100%);
    position: relative;
}

.inside-list {
    list-style: none;
    padding: 0;
}

.inside-list li {
    padding: 14px 18px;
    margin-bottom: 12px;
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: transform 0.3s;
}

.inside-list li:hover {
    transform: translateX(8px);
}

.inside-list i {
    color: var(--secondary);
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* INSIDE IMAGE (Criativo 3) */
.inside-image-wrap {
    position: relative;
    text-align: center;
    padding: 10px;
}

.inside-image-wrap::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(155, 93, 229, 0.25) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
}

.inside-image {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 460px;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(45, 48, 71, 0.15);
    transition: transform 0.4s ease;
}

.inside-image:hover {
    transform: translateY(-8px) rotate(-1deg);
}

/* ============ TARGET ============ */
.section-target {
    padding: 100px 0;
    background: white;
}

.target-list {
    margin-top: 24px;
}

.target-item {
    padding: 12px 0;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.target-item i {
    color: var(--green);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.family-card {
    background: var(--gradient-secondary);
    color: white;
    padding: 48px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 20px 50px rgba(155, 93, 229, 0.3);
    position: relative;
    overflow: hidden;
}

.family-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
}

.family-emoji {
    font-size: 5rem;
    margin-bottom: 16px;
    position: relative;
}

.family-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    position: relative;
}

.family-card > p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 32px;
    position: relative;
}

.family-stats {
    display: flex;
    justify-content: space-around;
    gap: 16px;
    position: relative;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 2.5rem;
    color: var(--secondary);
    line-height: 1;
}

.stat small {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 4px;
}

/* ============ TESTIMONIALS ============ */
.section-testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFF9F4 0%, #FFEFE0 100%);
}

.stars-rating {
    margin-top: 16px;
    color: var(--secondary);
    font-size: 1.3rem;
}

.stars-rating span {
    color: var(--dark);
    font-size: 1rem;
    margin-left: 12px;
    font-weight: 500;
}

.testimonial-card {
    background: white;
    padding: 32px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    height: 100%;
    transition: transform 0.3s;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 12px;
}

.testimonial-stars {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.testimonial-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--dark);
    font-size: 1rem;
}

.testimonial-author small {
    color: #888;
    font-size: 0.85rem;
}

/* ============ OFFER ============ */
.section-offer {
    padding: 70px 0;
    background: linear-gradient(135deg, #FFE4F0 0%, #FFF5D6 50%, #D4F5F0 100%);
    position: relative;
}

.offer-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.2);
    border: 3px dashed var(--primary);
    position: relative;
    overflow: hidden;
}

.offer-ribbon {
    background: var(--gradient-warm);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 14px;
    box-shadow: 0 4px 14px rgba(255, 107, 157, 0.4);
    letter-spacing: 0.5px;
}

.offer-title {
    font-size: clamp(1.5rem, 3.2vw, 2rem);
    margin-bottom: 6px;
}

.offer-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 22px;
}

.offer-includes {
    background: #FFF9F4;
    border-radius: var(--radius-md);
    padding: 18px 22px;
    text-align: left;
    margin-bottom: 22px;
    border: 2px solid #FFE4F0;
}

.offer-includes h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1rem;
}

.offer-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer-includes li {
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.offer-includes i {
    color: var(--green);
    background: #D7F9EE;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 0.85rem;
}

.offer-price {
    margin-bottom: 22px;
}

.offer-price-old {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.offer-price-current {
    font-family: 'Bubblegum Sans', cursive;
    color: var(--primary);
    line-height: 1;
    margin: 8px 0;
}

.offer-price-current .currency {
    font-size: 1.6rem;
    vertical-align: top;
    margin-right: 4px;
}

.offer-price-current .amount {
    font-size: 4.5rem;
}

.offer-price-current .cents {
    font-size: 2rem;
    vertical-align: top;
    margin-top: 10px;
    display: inline-block;
}

.offer-price-pix {
    color: #666;
    font-size: 0.9rem;
    margin-top: 2px;
}

.btn-offer-buy {
    background: linear-gradient(110deg, #FF6B9D 0%, #FF9F43 35%, #FFC93C 50%, #FF9F43 65%, #FF6B9D 100%);
    background-size: 250% 100%;
    background-position: 0% 50%;
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 4px solid white;
    margin-bottom: 18px;
    position: relative;
    overflow: hidden;
    animation: shimmer-bg 6s linear infinite, pulse-btn 4s ease-in-out infinite;
}

@keyframes shimmer-bg {
    0% { background-position: 200% 50%; }
    100% { background-position: -100% 50%; }
}

.btn-offer-buy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
    transform: skewX(-25deg);
    animation: shine-sweep 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shine-sweep {
    0% { left: -120%; }
    50% { left: 220%; }
    100% { left: 220%; }
}

.btn-offer-buy:hover {
    transform: translateY(-3px) scale(1.03);
    color: white;
    box-shadow: 0 15px 50px rgba(255, 107, 157, 0.7);
}

.offer-security {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    color: #666;
    font-size: 0.9rem;
}

.offer-security span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.offer-security i {
    color: var(--green);
    font-size: 1.1rem;
}

/* ============ GUARANTEE ============ */
.section-guarantee {
    padding: 80px 0;
    background: white;
}

.guarantee-badge {
    width: 200px;
    height: 200px;
    background: var(--gradient-warm);
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
    border: 6px solid white;
    outline: 4px dashed var(--secondary);
    outline-offset: -14px;
    text-align: center;
    animation: rotate-slow 20s linear infinite;
}

@keyframes rotate-slow {
    from { transform: rotate(0); }
    to { transform: rotate(360deg); }
}

.guarantee-shield {
    font-size: 2rem;
    animation: rotate-back 20s linear infinite;
}

.guarantee-days {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 4rem;
    line-height: 1;
    animation: rotate-back 20s linear infinite;
}

.guarantee-text {
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 1.2;
    animation: rotate-back 20s linear infinite;
}

@keyframes rotate-back {
    from { transform: rotate(0); }
    to { transform: rotate(-360deg); }
}

.guarantee-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 12px;
    color: var(--dark);
}

.guarantee-desc {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* ============ FAQ ============ */
.section-faq {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFF9F4 0%, white 100%);
}

.accordion-item {
    background: white;
    border-radius: var(--radius-sm) !important;
    margin-bottom: 14px;
    border: 2px solid #FFE4F0 !important;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.accordion-button {
    background: white;
    font-weight: 600;
    color: var(--dark);
    padding: 20px 24px;
    font-size: 1.05rem;
    border-radius: var(--radius-sm) !important;
}

.accordion-button:not(.collapsed) {
    background: #FFE4F0;
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF6B9D'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px 24px;
    color: #555;
    line-height: 1.7;
    background: white;
}

/* ============ FINAL CTA ============ */
.section-final-cta {
    padding: 100px 0;
    background: var(--gradient-warm);
    color: white;
    position: relative;
    overflow: hidden;
}

.section-final-cta::before {
    content: '🎨 ✏️ 🖍️ 🎨 ✏️ 🖍️ 🎨 ✏️ 🖍️';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 2rem;
    opacity: 0.2;
    letter-spacing: 20px;
}

.final-cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
}

.final-cta-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 36px;
    opacity: 0.95;
}

.btn-final-cta {
    background: white;
    color: var(--primary);
    padding: 22px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 4px solid white;
}

.btn-final-cta:hover {
    transform: translateY(-3px) scale(1.03);
    color: var(--primary-dark);
    background: var(--secondary);
    border-color: var(--secondary);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 32px;
    font-size: 0.95rem;
    opacity: 0.95;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--dark);
    color: white;
    padding: 40px 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.4rem;
    margin-bottom: 6px;
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-brand {
        justify-content: flex-start;
    }
}

.footer-text, .footer-copy {
    color: #aaa;
    font-size: 0.9rem;
    margin: 0;
}

.footer-copy small {
    color: #888;
}

/* ============ FLOATING CTA ============ */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--gradient-warm);
    color: white;
    padding: 14px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.5);
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s;
    pointer-events: none;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    animation: pulse-btn 2s ease-in-out infinite;
}

.floating-cta:hover {
    color: white;
    transform: translateY(-3px);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
    .hero-image { max-width: 380px; }
    .inside-image { max-width: 400px; }
    .section-benefits,
    .section-inside,
    .section-target,
    .section-testimonials,
    .section-offer,
    .section-faq,
    .section-final-cta {
        padding: 70px 0;
    }
}

@media (max-width: 575px) {
    .hero-section {
        padding-top: 100px;
    }
    .hero-title { font-size: 2rem; }
    .price-value { font-size: 2.5rem; }
    .price-value strong { font-size: 3.2rem; }
    .btn-cta-main { padding: 16px 28px; font-size: 1rem; }
    .offer-card { padding: 40px 24px; }
    .offer-price-current .amount { font-size: 4.5rem; }
    .floating-cta { padding: 12px 18px; font-size: 0.95rem; }
    .shape { font-size: 2rem !important; opacity: 0.15; }
    .hero-image { max-width: 320px; }
    .inside-image { max-width: 100%; }
    .stamp-discount { width: 70px; height: 70px; font-size: 1.4rem; }
}
