/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #EBE7DB;
    background-color: #001122;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Seção Hero */
.hero-section {
    background-color: #001122;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px 0;
}

.logo-container {
    text-align: center;
}

.logo {
    width: 230px;
    height: auto;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1);
}

.logo:hover {
    transform: scale(1.05);
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    aspect-ratio: 16/9; /* Mantém proporção do vídeo */
}

.video-unmute-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.video-unmute-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.unmute-btn {
    background: linear-gradient(135deg, #D4A017, #F4C430);
    color: #031E3C;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(212, 160, 23, 0.3);
}

.unmute-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(212, 160, 23, 0.4);
}

.hero-video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 15px;
    border: none;
    transition: none;
    transform: none;
}

.hero-video:hover {
    transform: none;
    transition: none;
}

.video-container:hover .hero-video {
    transform: none;
    transition: none;
}

/* Personalização dos controles do vídeo */
.hero-video::-webkit-media-controls-panel {
    background-color: rgba(0, 17, 34, 0.8);
}

/* Manter apenas play/pause e volume visíveis */
.hero-video::-webkit-media-controls-play-button {
    display: block;
}

.hero-video::-webkit-media-controls-mute-button {
    display: block;
}

.hero-video::-webkit-media-controls-volume-slider {
    display: block;
}

/* Ocultar controles desnecessários */
.hero-video::-webkit-media-controls-timeline {
    display: none;
}

.hero-video::-webkit-media-controls-current-time-display {
    display: none;
}

.hero-video::-webkit-media-controls-time-remaining-display {
    display: none;
}

.hero-video::-webkit-media-controls-fullscreen-button {
    display: none;
}

.hero-video::-webkit-media-controls-seek-back-button {
    display: none;
}

.hero-video::-webkit-media-controls-seek-forward-button {
    display: none;
}

.hero-video::-webkit-media-controls-rewind-button {
    display: none;
}

.hero-video::-webkit-media-controls-return-to-realtime-button {
    display: none;
}

.hero-video::-webkit-media-controls-toggle-closed-captions-button {
    display: none;
}



.hero-title-above {
    font-family: 'Lora', serif;
    font-size: 2.2rem;
    font-weight: 600;
    background: linear-gradient(45deg, #D4A017, #FFD700, #B8860B);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    text-shadow: 0 0 8px rgba(212, 160, 23, 0.4);
    filter: drop-shadow(0 0 5px rgba(212, 160, 23, 0.3));
    padding: 0 20px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out, subtleGoldGlow 4s ease-in-out infinite alternate;
}

@keyframes subtleGoldGlow {
    0% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 5px rgba(212, 160, 23, 0.3)) brightness(1);
    }
    50% {
        background-position: 100% 50%;
        filter: drop-shadow(0 0 8px rgba(212, 160, 23, 0.5)) brightness(1.05);
    }
    100% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 5px rgba(212, 160, 23, 0.3)) brightness(1);
    }
}

/* --- Anti-cópia (dificultar) --- */
body, section, footer, header, main, .container, p, h1, h2, h3, h4, h5, h6, a, img, video {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* --- Banner de Cookies --- */
.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: rgba(0, 17, 34, 0.95);
    border: 1px solid rgba(212, 160, 23, 0.35);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    border-radius: 12px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    z-index: 9999;
}

.cookie-banner__content {
    font-size: 0.95rem;
}

.cookie-banner__content a {
    color: #F4C430;
    text-decoration: underline;
}

.cookie-banner__actions {
    flex-shrink: 0;
}

.cookie-banner .cta-button {
    padding: 10px 18px;
    font-size: 0.95rem;
}

.cta-container {
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #D4A017, #F4C430);
    color: #001122;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 160, 23, 0.3);
    position: relative;
    overflow: hidden;
    animation: ctaPulse 2s ease-in-out infinite;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 160, 23, 0.4);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #D4A017, #F4C430);
    margin-top: 20px;
}

@keyframes ctaPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(212, 160, 23, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 10px 30px rgba(212, 160, 23, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(212, 160, 23, 0.3);
    }
}

.section-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4A017, transparent);
    margin: 40px 0;
}

.section-divider-gold {
    height: 1px;
    background: #D4A017;
    margin: 40px auto;
    width: 80%;
    opacity: 0.6;
}

/* Seções gerais */
.about-section,
.location-section,
.instagram-comments-section,
.faq-section {
    background-color: #001122;
    padding: 20px 0;
}

.faq-section {
    padding: 80px 0 20px 0;
}

.section-title {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    color: #EBE7DB;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #D4A017;
}

/* Seção Sobre */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

.signature-container {
    margin: 30px 0;
}

.signature {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #D4A017;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.signature-image {
    width: 150px;
    height: auto;
    margin-top: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.signature.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.stats-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 20px;
    background: rgba(212, 160, 23, 0.1);
    border-left: 4px solid #D4A017;
    border-radius: 8px;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4A017;
}

.stats-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #D4A017;
}

.doctor-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    -webkit-mask: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
    mask: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
}

.doctor-image:hover {
    transform: scale(1.02);
}

/* Seção de Localização */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-info {
    padding-right: 20px;
}

.location-title {
    font-size: 2.5rem;
    color: #D4A017;
    margin-bottom: 30px;
    font-weight: 700;
}

.location-details {
    margin-bottom: 40px;
}

.location-item {
    margin-bottom: 30px;
}

.location-subtitle {
    font-size: 1.3rem;
    color: #D4A017;
    margin-bottom: 10px;
    font-weight: 600;
}

.location-address,
.location-hours,
.location-contact {
    font-size: 1.1rem;
    color: #EBE7DB;
    line-height: 1.6;
    margin: 0;
}

.location-map {
    padding-left: 20px;
}

.map-container {
    margin: 30px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 17, 34, 0.2);
}

.google-map {
    width: 100%;
    height: 300px;
    border: none;
    transition: transform 0.3s ease;
}

.google-map:hover {
    transform: scale(1.02);
}

/* Seção Comentários Instagram */
.instagram-comments-section {
    position: relative;
}

.instagram-comments-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 30, 60, 0.85);
}

.instagram-comments-section .container {
    position: relative;
    z-index: 1;
}

/* Comentários Instagram */

.comments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.comment-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    border-left: 3px solid #D4A017;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.comment-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #D4A017, #f1c40f);
    margin-right: 12px;
}

.user-info {
    display: flex;
    align-items: center;
}

.username {
    font-weight: 600;
    color: #EBE7DB;
    margin-right: 5px;
}

.verified {
    color: #D4A017;
    font-size: 0.9rem;
}

.comment-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #EBE7DB;
    margin-bottom: 15px;
}

.comment-stats {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: #B8B4A7;
}

.instagram-cta {
    margin-top: 40px;
    text-align: center;
}

.instagram-cta p {
    color: #EBE7DB;
    margin-bottom: 15px;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #D4A017, #f1c40f);
    color: #031E3C;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.instagram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 160, 23, 0.3);
}

.faq-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    padding: 40px 0;
}

.faq-container {
    max-width: none;
    margin: 0;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: rgba(212, 160, 23, 0.1);
    border: none;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #EBE7DB;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 160, 23, 0.2);
}

.faq-icon {
    font-size: 1.5rem;
    color: #D4A017;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 17, 34, 0.5);
}

.faq-answer p {
    padding: 20px;
    color: #EBE7DB;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-image {
    text-align: center;
    position: sticky;
    top: 50px;
    margin-top: -50px;
}

.doctor-image-faq {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 17, 34, 0.2);
    transition: transform 0.3s ease;
    -webkit-mask: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
    mask: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
}

.doctor-image-faq:hover {
    transform: scale(1.05);
}

/* Rodapé */
.footer {
    background-color: #001122;
    padding: 40px 0;
    border-top: 1px solid rgba(212, 160, 23, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-text {
    color: #EBE7DB;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(212, 160, 23, 0.1);
    border: 2px solid #D4A017;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #D4A017;
    transform: translateY(-3px);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.social-link:hover svg path {
    fill: #001122;
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #D4A017, #F4C430);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(212, 160, 23, 0.4);
    z-index: 1000;
    transition: all 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(212, 160, 23, 0.6);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(212, 160, 23, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(212, 160, 23, 0.6), 0 0 0 10px rgba(212, 160, 23, 0.1);
    }
    100% {
        box-shadow: 0 8px 25px rgba(212, 160, 23, 0.4);
    }
}

/* Responsividade */
/* Media Queries para Resoluções Específicas */
@media (max-width: 1600px) {
    .container {
        padding: 0 18px;
    }
    
    .hero-section {
        min-height: 95vh;
        padding: 15px 0;
    }
    
    .logo {
        max-width: 280px;
    }
    
    .hero-title-above {
        font-size: 2.1rem;
        margin-bottom: 25px;
        line-height: 1.2;
    }
    
    .video-container {
        max-width: 750px;
        margin-bottom: 35px;
    }
    
    .hero-video {
        height: auto;
    }
    
    .cta-button {
        padding: 16px 38px;
        font-size: 1.15rem;
    }
}

@media (max-width: 1440px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-section {
        min-height: 90vh;
        padding: 12px 0;
    }
    
    .logo {
        max-width: 260px;
    }
    
    .hero-title-above {
        font-size: 2rem;
        margin-bottom: 22px;
        line-height: 1.2;
    }
    
    .video-container {
        max-width: 700px;
        margin-bottom: 32px;
    }
    
    .hero-video {
        height: auto;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 1300px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        min-height: 85vh;
        padding: 10px 0;
    }
    
    .logo {
        max-width: 240px;
    }
    
    .hero-title-above {
        font-size: 1.9rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .video-container {
        max-width: 650px;
        margin-bottom: 30px;
    }
    
    .hero-video {
        height: auto;
    }
    
    .cta-button {
        padding: 14px 32px;
        font-size: 1.05rem;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        min-height: 80vh;
        padding: 8px 0;
    }
    
    .logo {
        max-width: 220px;
    }
    
    .hero-title-above {
        font-size: 1.8rem;
        margin-bottom: 18px;
        line-height: 1.2;
    }
    
    .video-container {
        max-width: 600px;
        margin-bottom: 28px;
    }
    
    .hero-video {
        height: auto;
    }
    
    .cta-button {
        padding: 13px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 720px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-section {
        min-height: 75vh;
        padding: 5px 0;
    }
    
    .logo {
        max-width: 200px;
    }
    
    .hero-title-above {
        font-size: 1.7rem;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .video-container {
        max-width: 550px;
        margin-bottom: 25px;
    }
    
    .hero-video {
        height: auto;
    }
    
    .cta-button {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        grid-template-areas: 
            "image"
            "text";
    }
    
    .about-text {
        grid-area: text;
    }
    
    .about-image {
        grid-area: image;
    }
    
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-image {
        order: -1;
        position: static;
    }
    
    .doctor-image-faq {
        max-width: 350px;
    }
    
    .faq-image {
        margin-top: 0;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .location-info,
    .location-map {
        padding: 0;
    }
    
    .location-map {
        order: -1;
    }
    
    .google-map {
        height: 300px;
    }
    
    .comments-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        max-width: 250px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title-above {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-text p {
        font-size: 1rem;
        margin-bottom: 15px;
        line-height: 1.6;
        text-align: left;
    }
    
    .stats-number {
        font-size: 2rem;
    }
    
    .stats-text {
        font-size: 1rem;
    }
    
    .comment-card {
        padding: 20px;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 15px;
    }
}

/* Media Queries para Smartwatches */
/* Telas muito pequenas - Smartwatches em geral */
@media screen and (max-width: 300px) {
    .hero-section {
        min-height: 100vh;
        padding: 10px 5px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .logo {
        width: 80px;
        height: auto;
    }
    
    .hero-title-above {
        font-size: 1rem;
        margin-bottom: 15px;
        padding: 0 10px;
        line-height: 1.3;
    }
    
    .video-container {
        max-width: 90%;
        margin: 0 auto 20px auto;
        border-radius: 8px;
    }
    
    .hero-video {
        border-radius: 8px;
    }
    
    .signature-image {
        width: 60px;
        margin-top: 8px;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 0.9rem;
        border-radius: 25px;
    }
}

/* Apple Watch - Formato Quadrado */
@media screen and (max-width: 300px) and (max-height: 300px) {
    .hero-section {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding: 8px;
        min-height: 100vh;
    }
    
    .logo {
        width: 60px;
    }
    
    .hero-title-above {
        font-size: 0.8rem;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .video-container {
        max-width: 85%;
        margin: 10px auto;
    }
    
    .signature-image {
        width: 45px;
        margin-top: 5px;
    }
    
    .cta-button {
        padding: 8px 15px;
        font-size: 0.7rem;
        margin-top: 10px;
    }
}

/* Samsung Watch - Formato Redondo */
@media screen and (max-width: 300px) and (min-aspect-ratio: 1/1) {
    .hero-section {
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .logo {
        width: 50px;
        margin-bottom: 8px;
    }
    
    .hero-title-above {
        font-size: 0.7rem;
        margin-bottom: 8px;
        text-align: center;
        line-height: 1.2;
    }
    
    .video-container {
        max-width: 70%;
        margin: 8px auto;
        border-radius: 50%;
        overflow: hidden;
    }
    
    .hero-video {
        border-radius: 50%;
    }
    
    .signature-image {
        width: 35px;
        margin-top: 5px;
    }
    
    .cta-button {
        padding: 6px 12px;
        font-size: 0.6rem;
        border-radius: 20px;
        margin-top: 8px;
    }
}
