/**
 * Primeira Vez Aqui - Public CSS
 * Modern Glassmorphism Design with Accordion
 * Mobile-first, performant
 */

/* ============================================
   CSS Variables & Base
   ============================================ */

:root {
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-primary-light: #3b82f6;
    --color-secondary: #64748b;
    --color-text: #1e293b;
    --color-text-light: #64748b;
    --color-text-muted: #94a3b8;
    --color-bg: #f8fafc;
    --color-bg-alt: #ffffff;
    --color-border: #e2e8f0;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ============================================
   Header - Glassmorphism Hero
   ============================================ */

.guide-header {
    background: linear-gradient(135deg, var(--color-primary), color-mix(in srgb, var(--color-primary) 70%, #000));
    color: white;
    padding: 3rem 1.5rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Background decoration blurs */
.guide-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.guide-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.header-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.header-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 1rem;
    background: white;
    border-radius: var(--radius-lg);
    padding: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.header-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.header-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    font-weight: 400;
}

/* ============================================
   Main Card - Glassmorphism Container
   ============================================ */

.guide-main-wrapper {
    max-width: 600px;
    margin: -3rem auto 0;
    padding: 0 1rem 2rem;
    position: relative;
    z-index: 10;
}

.guide-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.guide-card-header {
    text-align: center;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--color-border);
}

.guide-business-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 0 0.5rem;
}

.guide-card-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    border-radius: var(--radius-full);
    margin: 0 auto;
}

.guide-card-body {
    padding: 1rem;
}

/* ============================================
   Accordion Sections
   ============================================ */

.accordion-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.accordion-item {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: color-mix(in srgb, var(--color-primary) 30%, var(--color-border));
}

.accordion-item.is-open {
    border-color: color-mix(in srgb, var(--color-primary) 40%, var(--color-border));
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.accordion-trigger {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1rem 1.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background 0.2s ease;
}

.accordion-trigger:hover {
    background: rgba(0, 0, 0, 0.02);
}

.accordion-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--color-primary) 12%, transparent);
    color: var(--color-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.accordion-item.is-open .accordion-icon-wrapper {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--color-primary) 40%, transparent);
}

.accordion-title-group {
    flex: 1;
    min-width: 0;
}

.accordion-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
    line-height: 1.3;
}

.accordion-hint {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 0.125rem;
    display: none;
}

@media (min-width: 640px) {
    .accordion-hint {
        display: block;
    }
}

.accordion-arrow {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--color-text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
}

.accordion-item.is-open .accordion-arrow {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.accordion-item.is-open .accordion-content {
    max-height: 2000px;
}

.accordion-content-inner {
    padding: 0 1.25rem 1.25rem;
}

/* ============================================
   Section Content Inside Accordion
   ============================================ */

.section-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section-description {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

/* ============================================
   Blocks - Text
   ============================================ */

.block-paragraph {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin: 0;
    white-space: pre-line;
}

.block-richtext {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

.block-richtext p {
    margin: 0 0 0.75rem;
}

.block-richtext p:last-child {
    margin-bottom: 0;
}

.block-richtext a {
    color: var(--color-primary);
}

.block-richtext strong {
    font-weight: 600;
    color: var(--color-text);
}

.block-heading {
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
}

.block-heading-1 { font-size: 1.5rem; }
.block-heading-2 { font-size: 1.25rem; }
.block-heading-3 { font-size: 1.125rem; }
.block-heading-4 { font-size: 1rem; }

/* ============================================
   Blocks - Lists
   ============================================ */

.block-bullets,
.block-numbered {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--color-text-light);
}

.block-bullets-item,
.block-numbered-item {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.block-bullets-item:last-child,
.block-numbered-item:last-child {
    margin-bottom: 0;
}

.block-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.block-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.625rem 0.875rem;
    background: var(--color-bg);
    border-radius: var(--radius);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.block-checklist-item:last-child {
    margin-bottom: 0;
}

.block-checklist-item.is-checked {
    background: color-mix(in srgb, var(--color-primary) 8%, transparent);
}

.block-checklist-item.is-checked .checklist-icon {
    color: var(--color-primary);
}

.checklist-icon {
    flex-shrink: 0;
    color: var(--color-text-light);
    margin-top: 2px;
}

.checklist-text {
    flex: 1;
    color: var(--color-text-light);
}

/* ============================================
   Blocks - Notices
   ============================================ */

.block-notice {
    display: flex;
    gap: 0.875rem;
    padding: 1rem;
    border-radius: var(--radius);
    border-left: 4px solid;
    font-size: 0.9375rem;
}

.block-notice-info {
    background: rgba(37, 99, 235, 0.08);
    border-color: #2563eb;
}

.block-notice-info .notice-icon {
    color: #2563eb;
}

.block-notice-tip {
    background: rgba(34, 197, 94, 0.08);
    border-color: #22c55e;
}

.block-notice-tip .notice-icon {
    color: #22c55e;
}

.block-notice-warn {
    background: rgba(245, 158, 11, 0.08);
    border-color: #f59e0b;
}

.block-notice-warn .notice-icon {
    color: #f59e0b;
}

.notice-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.notice-content {
    flex: 1;
    min-width: 0;
}

.notice-title {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--color-text);
}

.notice-text {
    margin: 0;
    color: var(--color-text-light);
}

/* ============================================
   Blocks - FAQ
   ============================================ */

.block-faq {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.875rem 1rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9375rem;
    background: var(--color-bg);
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question-text {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.2s;
    color: var(--color-text-muted);
}

.block-faq[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0.875rem 1rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.faq-answer p {
    margin: 0;
}

/* ============================================
   Blocks - Media
   ============================================ */

.block-image {
    margin: 0;
}

.image-img {
    width: 100%;
    border-radius: var(--radius);
}

.image-caption {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 0.5rem;
}

.block-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.5rem;
}

.gallery-item {
    margin: 0;
}

.gallery-link {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-link:hover .gallery-img {
    transform: scale(1.05);
}

/* YouTube */
.block-youtube {
    position: relative;
}

.youtube-placeholder {
    position: relative;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.youtube-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.youtube-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s;
}

.youtube-play:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.youtube-play-bg {
    fill: #f00;
}

.youtube-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius);
}

/* Map */
.block-map .map-container {
    border-radius: var(--radius);
    overflow: hidden;
}

.block-map .map-container iframe {
    width: 100%;
    height: 250px;
    border: none;
}

.map-address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin: 0.5rem 0 0;
}

/* ============================================
   Blocks - Table
   ============================================ */

.block-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}

.block-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.block-table th,
.block-table td {
    padding: 0.625rem 0.875rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.block-table th {
    font-weight: 600;
    background: var(--color-bg);
}

.block-table tr:last-child td {
    border-bottom: none;
}

/* ============================================
   Blocks - Button
   ============================================ */

.block-button-wrapper {
    text-align: center;
}

.block-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.2s;
}

.block-button:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

.block-button-primary {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--color-primary) 40%, transparent);
}

.block-button-primary:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 6px 16px color-mix(in srgb, var(--color-primary) 50%, transparent);
}

.block-button-secondary {
    background: var(--color-bg);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.block-button-secondary:hover {
    background: var(--color-border);
}

.block-button-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.block-button-outline:hover {
    background: var(--color-primary);
    color: white;
}

/* ============================================
   Blocks - Divider & Spacer
   ============================================ */

.block-divider {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 0;
}

.block-spacer {
    /* Height is set inline */
}

/* ============================================
   Blocks - Social Links
   ============================================ */

.block-social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    background: var(--color-bg);
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    transform: translateX(4px);
    text-decoration: none;
}

.social-link svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.social-link .social-name {
    font-size: 0.95rem;
    font-weight: 500;
}

.social-facebook:hover { background: #1877f2; color: white; }
.social-instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.social-whatsapp:hover { background: #25d366; color: white; }
.social-youtube:hover { background: #ff0000; color: white; }
.social-tiktok:hover { background: #000000; color: white; }
.social-twitter:hover { background: #000000; color: white; }
.social-linkedin:hover { background: #0a66c2; color: white; }
.social-website:hover { background: var(--color-primary); color: white; }

/* vCard as social link button */
.social-vcard {
    width: 100%;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.social-vcard .vcard-emoji {
    font-size: 1.25rem;
    line-height: 1;
}

.social-vcard:hover {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

/* ============================================
   Blocks - Links
   ============================================ */

.block-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.block-links .link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: var(--color-bg);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--color-text);
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.block-links .link-item:hover {
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    transform: translateX(4px);
}

.block-links .link-title {
    font-weight: 500;
}

.block-links .link-arrow {
    flex-shrink: 0;
    opacity: 0.5;
}

.block-links .link-item:hover .link-arrow {
    opacity: 1;
}

/* ============================================
   Amenities Section (inside accordion)
   ============================================ */

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.amenity-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--color-bg);
    border-radius: var(--radius);
    font-size: 0.8125rem;
}

.amenity-chip-icon {
    font-size: 1rem;
}

.amenity-chip-text {
    color: var(--color-text);
    font-weight: 500;
}

/* ============================================
   Footer
   ============================================ */

.guide-footer {
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 1rem;
}

.footer-business {
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: var(--color-text);
}

.footer-brand {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    text-decoration: none;
}

.footer-brand:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.footer-brand strong {
    font-weight: 600;
}

/* ============================================
   Back to top
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--color-primary) 40%, transparent);
    z-index: 50;
    text-decoration: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-primary-dark);
    text-decoration: none;
    transform: translateY(-2px);
}

/* ============================================
   Home & Error pages
   ============================================ */

.home-container,
.error-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.home-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--color-primary);
}

.home-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin: 0 0 2rem;
}

.error-code {
    font-size: 5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
    line-height: 1;
}

.error-title {
    font-size: 1.5rem;
    margin: 1rem 0 0.5rem;
}

.error-message {
    color: var(--color-text-light);
    margin: 0 0 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    text-decoration: none;
}

/* ============================================
   Responsive
   ============================================ */

@media (min-width: 640px) {
    .guide-header {
        padding: 4rem 2rem 7rem;
    }

    .header-title {
        font-size: 2.5rem;
    }

    .header-subtitle {
        font-size: 1.125rem;
    }

    .guide-main-wrapper {
        margin-top: -4rem;
    }

    .guide-card-body {
        padding: 1.5rem;
    }

    .accordion-list {
        gap: 1rem;
    }

    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .guide-header {
        padding: 5rem 2rem 8rem;
    }

    .header-logo {
        width: 100px;
        height: 100px;
    }

    .header-title {
        font-size: 2.75rem;
    }

    .guide-main-wrapper {
        max-width: 650px;
        margin-top: -5rem;
    }
}

/* ============================================
   Print
   ============================================ */

@media print {
    .back-to-top,
    .footer-brand {
        display: none !important;
    }

    .guide-header {
        background: none !important;
        color: black !important;
        border-bottom: 2px solid black;
        padding: 1rem;
    }

    .guide-card {
        box-shadow: none;
        background: white;
    }

    .accordion-content {
        max-height: none !important;
    }

    .accordion-arrow {
        display: none;
    }
}

/* ============================================
   Legacy support (old structure)
   ============================================ */

.guide-main {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.section-index,
.guide-nav,
.guide-amenities {
    display: none;
}

/* ============================================
   Block: Copytext (Copia e Cola)
   ============================================ */

.block-copytext {
    margin: 1rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.copytext-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.02);
    border-bottom: 1px solid var(--color-border);
}

.copytext-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    color: white;
    border-radius: 8px;
}

.copytext-icon svg {
    width: 16px;
    height: 16px;
}

.copytext-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text);
}

.copytext-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
}

.copytext-value {
    flex: 1;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
    font-size: 0.9375rem;
    color: var(--color-text);
    word-break: break-all;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

.copytext-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1rem;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    position: relative;
}

.copytext-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.copytext-btn:active {
    transform: translateY(0);
}

.copytext-btn .icon-copy,
.copytext-btn .icon-check {
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.copytext-btn .icon-check {
    display: none;
}

.copytext-btn-text {
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
}

.copytext-btn.copied {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.copytext-btn.copied .icon-copy {
    display: none;
}

.copytext-btn.copied .icon-check {
    display: block;
}

/* ============================================
   Block: vCard (Cartão de Contato)
   ============================================ */

.block-vcard {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.vcard-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
}

.vcard-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.vcard-avatar svg {
    color: white;
}

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

.vcard-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.vcard-business {
    font-size: 0.9375rem;
    opacity: 0.9;
    margin: 0.25rem 0 0;
}

.vcard-details {
    padding: 0.5rem 0;
}

.vcard-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1.25rem;
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.vcard-item:last-child {
    border-bottom: none;
}

a.vcard-item:hover {
    background: rgba(37, 99, 235, 0.04);
    color: var(--color-primary);
}

.vcard-item svg {
    flex-shrink: 0;
    color: var(--color-text-muted);
}

a.vcard-item:hover svg {
    color: var(--color-primary);
}

.vcard-item span {
    font-size: 0.9375rem;
    word-break: break-word;
}

.vcard-whatsapp svg {
    color: #25d366;
}

.vcard-whatsapp:hover {
    background: rgba(37, 211, 102, 0.08) !important;
    color: #128c7e !important;
}

.vcard-instagram svg {
    color: #e4405f;
}

.vcard-instagram:hover {
    background: rgba(228, 64, 95, 0.08) !important;
    color: #c13584 !important;
}

.vcard-address {
    cursor: default;
}

.vcard-save-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: calc(100% - 2rem);
    margin: 0.5rem 1rem 1rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.vcard-save-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.vcard-save-btn:active {
    transform: translateY(0);
}

.vcard-save-btn svg {
    flex-shrink: 0;
}
