:root {
    --color-black: #0F0F0F;
    --color-gold: #C6A76A;
    --color-beige: #CBB69A;
    --color-caramel: #A8733B;
    --color-offwhite: #F1E8DA;
    --color-white: #FFFFFF;
    --color-gray: #6B7280;
    
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    
    --radius: 12px;
    
    --shadow-sm: 0 1px 3px 0 rgba(15, 15, 15, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(15, 15, 15, 0.15);
    --shadow-lg: 0 10px 15px -3px rgba(15, 15, 15, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background: var(--color-offwhite);
    color: var(--color-black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-lg);
    padding-bottom: var(--space-xl);
    background: var(--color-offwhite);
    min-height: 100vh;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

.hero {
    text-align: center;
    margin-bottom: var(--space-2xl);
    position: relative;
    margin-top: calc(var(--space-xl) * -1);
    margin-left: calc(var(--space-lg) * -1);
    margin-right: calc(var(--space-lg) * -1);
    padding: var(--space-2xl) var(--space-lg) var(--space-xl);
    background: linear-gradient(135deg, var(--color-black) 0%, #1a1a1a 50%, #2a2520 100%);
    border-radius: 0 0 24px 24px;
}

.hero .headline,
.hero .subheadline,
.hero .credentials-text {
    color: var(--color-offwhite);
}

.hero .subheadline strong {
    color: var(--color-gold);
    font-weight: 600;
}

.profile-image {
    margin-bottom: var(--space-lg);
    position: relative;
}

@keyframes growWatermark {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0.15;
    }
}

.profile-image::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 200px;
    height: 200px;
    background-image: url('Logo sem fundo.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    animation: growWatermark 2s ease-out forwards;
}

.profile-name {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-gold);
    margin-top: var(--space-sm);
    margin-bottom: 0;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.avatar {
    width: 180px;
    height: 180px;
    margin: 0 auto var(--space-lg);
    background-image: url('Foto de perfil.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    box-shadow: 0 8px 32px rgba(198, 167, 106, 0.3);
    animation: morph 8s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    50% {
        border-radius: 55% 45% 25% 75% / 40% 70% 30% 60%;
    }
    75% {
        border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(198, 167, 106, 0.3);
    }
    50% {
        box-shadow: 0 8px 40px rgba(198, 167, 106, 0.5);
    }
}

.headline {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-offwhite);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.subheadline {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-offwhite);
    margin-bottom: var(--space-md);
    opacity: 0.95;
}

.credentials-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-beige);
    margin: 0;
    font-style: italic;
}

.authority {
    margin-bottom: var(--space-2xl);
}

.credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

.credential-card {
    background: var(--color-white);
    padding: var(--space-md);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-xs);
    transition: all 0.3s ease;
    border: 1px solid rgba(198, 167, 106, 0.2);
}

.credential-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-gold);
}

.credential-card .icon {
    width: 28px;
    height: 28px;
    color: var(--color-gold);
}

.credential-card span {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-black);
    line-height: 1.3;
}

.podcast-section {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(198, 167, 106, 0.2);
}

.podcast-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.podcast-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: linear-gradient(135deg, rgba(198, 167, 106, 0.1), rgba(168, 115, 59, 0.05));
    border: 1px solid var(--color-gold);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: var(--space-md);
}

.badge-icon {
    width: 16px;
    height: 16px;
    color: var(--color-gold);
}

.podcast-badge span {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-caramel);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.podcast-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.podcast-description {
    font-size: 15px;
    color: var(--color-gray);
    line-height: 1.5;
    margin-bottom: var(--space-lg);
}

.podcast-cover {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: var(--space-lg);
}

.podcast-cover img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes bounceButton {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.podcast-cover-link {
    display: block;
    width: 100%;
    height: 120px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: var(--space-lg);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid var(--color-gold);
    animation: bounceButton 2s ease-in-out infinite;
}

.podcast-cover-link:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-caramel);
}

.podcast-cover-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.podcast-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(198, 167, 106, 0.95);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.podcast-cover-link:hover .podcast-play-overlay {
    background: var(--color-gold);
    transform: translate(-50%, -50%) scale(1.1);
}

.reviews {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, rgba(198, 167, 106, 0.05) 0%, rgba(168, 115, 59, 0.08) 100%);
    margin-left: calc(var(--space-lg) * -1);
    margin-right: calc(var(--space-lg) * -1);
    overflow: hidden;
}

.reviews-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-black);
    text-align: center;
    margin-bottom: var(--space-xl);
    padding: 0 var(--space-lg);
}

.reviews-swiper {
    overflow: visible;
    padding: var(--space-md) 0;
}

.reviews-swiper .swiper-slide {
    width: auto;
}

.review-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(198, 167, 106, 0.3);
    border-radius: var(--radius);
    padding: var(--space-lg);
    min-width: 280px;
    max-width: 320px;
    box-shadow: var(--shadow-sm);
    margin: 0 var(--space-xs);
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.review-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-caramel));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    flex-shrink: 0;
}

.review-info {
    flex: 1;
    min-width: 0;
}

.review-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-black);
    margin: 0 0 4px 0;
}

.stars {
    font-size: 12px;
    color: var(--color-gold);
    margin: 0;
}

.review-card p {
    color: var(--color-black);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.cta-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    width: 100%;
    padding: 16px var(--space-lg);
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    min-height: 56px;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--color-caramel);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--color-black);
    border-color: var(--color-gold);
}

.btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-white);
}

.sticky-cta {
    position: fixed;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - var(--space-lg) * 2);
    max-width: 432px;
    display: none;
    z-index: 100;
}

.btn-sticky {
    background: var(--color-black);
    color: var(--color-gold);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--color-gold);
}

.btn-sticky:hover {
    background: var(--color-gold);
    color: var(--color-white);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(4px);
    z-index: 1000;
    padding: var(--space-lg);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--color-offwhite);
    border-radius: var(--radius);
    max-width: 420px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: var(--space-lg);
    border-bottom: 1px solid rgba(198, 167, 106, 0.2);
    background: var(--color-white);
}

.modal-header h2 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-black);
    margin: 0;
}

.chat-modal {
    max-height: 600px;
    display: flex;
    flex-direction: column;
}

.chat-container {
    flex: 1;
    padding: var(--space-lg);
    overflow-y: auto;
    max-height: 400px;
}

.chat-message {
    margin-bottom: var(--space-md);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-message.assistant {
    display: flex;
    gap: var(--space-sm);
}

.chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

.chat-bubble {
    background: var(--color-white);
    padding: var(--space-sm) var(--space-md);
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--color-black);
    max-width: 85%;
    box-shadow: var(--shadow-sm);
}

.chat-options {
    padding: var(--space-md) var(--space-lg);
    border-top: 1px solid rgba(198, 167, 106, 0.2);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    background: var(--color-white);
}

.chat-option-btn {
    background: var(--color-white);
    border: 2px solid var(--color-gold);
    padding: var(--space-md);
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-black);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.chat-option-btn:hover {
    background: var(--color-gold);
    color: var(--color-white);
}

@media (max-width: 480px) {
    .container {
        padding: var(--space-lg) var(--space-md);
        padding-bottom: 120px;
    }
    
    .headline {
        font-size: 28px;
    }
    
    .sticky-cta {
        display: none;
    }
}

.lgpd-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(8px);
    padding: 12px var(--space-md);
    z-index: 99;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.lgpd-banner.active {
    display: block;
}

.lgpd-banner p {
    margin: 0;
    font-size: 13px;
    color: var(--color-offwhite);
    text-align: center;
    line-height: 1.4;
}

.lgpd-banner a {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
    margin: 0 4px;
}

.lgpd-banner a:hover {
    text-decoration: underline;
}

.footer {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    background: var(--color-offwhite);
    border-top: 1px solid rgba(198, 167, 106, 0.2);
    margin-top: var(--space-2xl);
}

.footer p {
    margin: 0 0 var(--space-sm) 0;
    font-size: 13px;
    color: var(--color-gray);
}

.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-offwhite);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    color: var(--color-black);
}

.footer-social:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: var(--color-gold);
    color: var(--color-white);
}

.exit-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(8px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.exit-popup.active {
    display: flex;
}

.exit-popup-content {
    background: var(--color-offwhite);
    border-radius: var(--radius);
    padding: var(--space-2xl);
    max-width: 400px;
    margin: var(--space-lg);
    text-align: center;
    position: relative;
    animation: slideDown 0.4s ease;
    border: 2px solid var(--color-gold);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.exit-popup-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    font-size: 28px;
    color: var(--color-gray);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
}

.exit-popup-close:hover {
    color: var(--color-black);
}

.exit-popup-content h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--color-black);
    margin-bottom: var(--space-md);
}

.exit-popup-content p {
    font-size: 16px;
    color: var(--color-gray);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.btn:focus-visible {
    outline: 3px solid var(--color-gold);
    outline-offset: 2px;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}


.podcast-links {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.podcast-links .btn {
    flex: 1;
    max-width: 180px;
}

.podcast-links img {
    filter: brightness(0);
}

.podcast-links .btn:hover img {
    filter: brightness(0) invert(1);
}

.links-section {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    text-align: center;
}

.links-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: var(--space-xl);
}

.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--color-white);
    border: 2px solid rgba(198, 167, 106, 0.2);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--color-black);
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.social-link:hover {
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.social-link img {
    flex-shrink: 0;
}

.social-link span {
    font-size: 14px;
}

.footer-socials {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
}


/* Animações Elegantes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero {
    animation: fadeIn 0.8s ease-out;
}

.avatar {
    animation: morph 8s ease-in-out infinite, scaleIn 1s ease-out 0.2s backwards;
}

.profile-name {
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.headline {
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.subheadline {
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.credentials-text {
    animation: fadeInUp 0.8s ease-out 1s backwards;
}

.credential-card {
    opacity: 0;
}

.credential-card:nth-child(1) {
}

.credential-card:nth-child(2) {
}

.credential-card:nth-child(3) {
}

.credential-card:nth-child(4) {
}

.cta-section {
    opacity: 0;
}

.podcast-section {
    opacity: 0;
}

.links-section {
    opacity: 0;
}

.social-link {
    opacity: 0;
}

.social-link:nth-child(1) {
}

.social-link:nth-child(2) {
}

.social-link:nth-child(3) {
}

.social-link:nth-child(4) {
}

.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: scale(1.1);
}

.credential-card .icon {
    transition: all 0.3s ease;
}

.credential-card:hover .icon {
    transform: scale(1.15) rotate(5deg);
}

.review-card {
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(198, 167, 106, 0.2);
}

.social-link span {
    transition: all 0.3s ease;
}

.social-link:hover span {
    color: var(--color-gold);
    transform: translateX(2px);
}

.podcast-badge {
    opacity: 0;
}

.podcast-title {
    opacity: 0;
}

.podcast-description {
    opacity: 0;
}

.podcast-cover-link {
    opacity: 0;
}

.footer {
    opacity: 0;
}

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

.animate-in-delay-1 {
    animation: fadeInUp 0.6s ease-out 0.1s forwards;
}

.animate-in-delay-2 {
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.animate-in-delay-3 {
    animation: fadeInUp 0.6s ease-out 0.3s forwards;
}

.animate-in-delay-4 {
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* Interações Touch Mobile */
.btn:active {
    transform: scale(0.96);
}

.credential-card:active {
    transform: scale(0.98);
}

.social-link:active {
    transform: scale(0.98);
    background: var(--color-gold);
    color: var(--color-white);
}

.social-link:active span {
    color: var(--color-white);
}

.podcast-cover-link:active {
    transform: scale(0.98);
}

.footer-social:active {
    transform: scale(0.9);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.btn-primary {
    animation: pulse 2s ease-in-out infinite;
}

.btn-primary:active {
    animation: none;
}

.btn-sticky {
    animation: pulse 2s ease-in-out infinite;
}

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

.podcast-cover-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(198, 167, 106, 0.3),
        transparent
    );
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
    pointer-events: none;
}

.credential-card {
    -webkit-tap-highlight-color: transparent;
}

.btn {
    -webkit-tap-highlight-color: transparent;
}

.social-link {
    -webkit-tap-highlight-color: transparent;
}

@media (hover: none) and (pointer: coarse) {
    .credential-card:hover {
        transform: none;
    }
    
    .review-card:hover {
        transform: none;
    }
    
    .btn:hover::before {
        width: 0;
        height: 0;
    }
}
