/* Harmonização Facial Biológica - Specialized Styling */

:root {
    --brand-rose: hsl(14, 45%, 52%);
    --brand-ink: var(--ink);
    --brand-warm: #f9f7f5;
}

/* Base Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 1s ease-out forwards;
}

.animate-slide-up {
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.animate-fade-in-delay {
    animation: fadeInUp 1s ease-out 0.4s forwards;
    opacity: 0;
}

@keyframes pulse-slow {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.1); opacity: 0.4; }
}

.animate-pulse-slow {
    animation: pulse-slow 8s infinite ease-in-out;
}

/* Silk UI Elements */
.btn-silk {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background: var(--brand-ink);
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--brand-ink);
}

.btn-silk:hover {
    background: transparent;
    color: var(--brand-ink);
    transform: translateY(-3px);
}

.btn-silk-sm {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--brand-rose);
    color: var(--brand-rose);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.65rem;
    font-weight: 600;
    transition: all 0.4s ease;
}

/* Symptom Card */
.symptom-card {
    background: white;
    padding: 2.5rem;
    border-bottom: 2px solid transparent;
    transition: all 0.5s ease;
}

.symptom-card:hover {
    border-bottom-color: var(--brand-rose);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(29, 27, 26, 0.05);
}

/* Technical Details */
.tech-spec {
    border-left: 1px solid rgba(29, 27, 26, 0.1);
    padding-left: 2rem;
}

.editorial-shadow {
    box-shadow: 0 40px 100px rgba(29, 27, 26, 0.08);
}

/* Hero Video (lado do H1) */
.hero-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
}

.hero-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Ozone Benefits List */
.ozone-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ozone-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    background: white;
    border-left: 3px solid var(--brand-rose);
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(29, 27, 26, 0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    color: var(--brand-ink);
    font-size: 1rem;
    line-height: 1.7;
}

.ozone-list li:hover {
    transform: translateX(6px);
    box-shadow: 0 12px 30px rgba(29, 27, 26, 0.08);
}

.ozone-list li i {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(209, 112, 86, 0.1);
    color: var(--brand-rose);
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.ozone-list li strong {
    color: var(--brand-ink);
    font-weight: 600;
}

@media (max-width: 640px) {
    .ozone-list li {
        padding: 1.25rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* ---------- Chamada / CTA ---------- */
.cta-blob {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 9999px;
    filter: blur(80px);
}

.cta-blob-1 {
    top: -8rem;
    right: -8rem;
    background: hsl(14 45% 52%);
}

.cta-blob-2 {
    bottom: -8rem;
    left: -8rem;
}

.cta-block {
    max-width: 56rem;
    margin: 0 auto;
}

.quote-icon {
    display: block;
    margin: 0 auto 2rem;
    opacity: 0.6;
}

.cta-block .lede {
    margin-bottom: 3rem;
}

.section-cta-service .btn-sophisticated {
    margin-top: 3rem;
    padding: 1.25rem 3.5rem;
    min-width: 280px;
    background: white !important;
    color: var(--brand-rose) !important;
    border: none !important;
}

.section-cta-service .btn-sophisticated:hover::before {
    background: var(--brand-ink) !important;
}

.section-cta-service .btn-sophisticated:hover {
    border-color: var(--brand-ink) !important;
    color: white !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    transform: translateY(-3px);
}

.section-cta-service .btn-sophisticated i {
    transition: transform 0.4s ease;
}

.section-cta-service .btn-sophisticated:hover i {
    transform: translateX(5px);
}
