/* Sobre a Dra. Kátia Bertti - 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;
}

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

/* Highlighted words in rose */
.text-rose-highlight {
    color: var(--brand-rose);
    font-weight: 500;
}

/* Bio Paragraph (texto generoso) */
.bio-text {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: rgba(29, 27, 26, 0.78);
}

.bio-text p + p {
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .bio-text {
        font-size: 1.125rem;
    }
}

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

.credentials-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;
}

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

.credentials-list li i {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    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.85rem;
    margin-top: 0.15rem;
}

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

/* Highlight Cards */
.highlight-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border-bottom: 2px solid transparent;
    transition: all 0.5s ease;
    height: 100%;
}

.highlight-card:hover {
    border-bottom-color: var(--brand-rose);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(29, 27, 26, 0.06);
}

.highlight-card .card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(209, 112, 86, 0.08);
    color: var(--brand-rose);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

/* Quote Block */
.purpose-block {
    position: relative;
    padding: 3rem 2rem;
    border-left: 3px solid var(--brand-rose);
    background: white;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 20px 60px rgba(29, 27, 26, 0.06);
}

.purpose-block::before {
    content: '"';
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    line-height: 1;
    color: var(--brand-rose);
    opacity: 0.18;
}

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

    .highlight-card {
        padding: 2rem;
    }
}

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