/* Implantes Cerâmicos - 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);
}

/* ---------- Vídeos Educativos (Embed Responsivo) ---------- */
.video-card {
    background: var(--brand-warm);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(29, 27, 26, 0.08);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 35px 80px rgba(29, 27, 26, 0.12);
}

.video-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .video-card {
        border-radius: 10px;
    }
}

/* ---------- 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);
}
