/* ============================================
           RAZERA S.A. - CONFIGURAÇÃO DE ESTILOS
           ============================================ */
        :root {
            --primary: #D60000;
            --primary-dark: #B30000;
            --primary-light: #FF3333;
            --white: #FFFFFF;
            --background: #FAFAFA;
            --text-dark: #1A1A1A;
            --text-muted: #6B7280;
            --border: #E5E7EB;
            --shadow-sm: 0 2px 8px -2px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 16px -4px rgba(0, 0, 0, 0.12);
            --shadow-red: 0 4px 20px -4px rgba(214, 0, 0, 0.35);
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background-color: var(--background);
            color: var(--text-dark);
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        /* Main Container */
        .link-container {
            max-width: 440px;
            margin: 0 auto;
            padding: 0 16px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        /* Language Selector */
        .language-selector {
            position: absolute;
            top: 16px;
            right: 16px;
            z-index: 100;
        }
        
        .lang-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-dark);
            cursor: pointer;
            transition: all var(--transition);
            box-shadow: var(--shadow-sm);
        }
        
        .lang-btn:hover {
            border-color: rgba(214, 0, 0, 0.5);
        }
        
        .lang-btn .flag {
            font-size: 1rem;
        }
        
        .lang-btn .chevron {
            font-size: 0.65rem;
            color: var(--text-muted);
            transition: transform var(--transition);
        }
        
        .lang-btn.active .chevron {
            transform: rotate(180deg);
        }
        
        .lang-dropdown {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 12px;
            box-shadow: var(--shadow-md);
            overflow: hidden;
            min-width: 140px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px) scale(0.95);
            transition: all 0.15s ease-out;
        }
        
        .lang-dropdown.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }
        
        .lang-option {
            display: flex;
            align-items: center;
            gap: 12px;
            width: 100%;
            padding: 12px 16px;
            background: none;
            border: none;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-dark);
            cursor: pointer;
            transition: background var(--transition);
        }
        
        .lang-option:hover {
            background: var(--background);
        }
        
        .lang-option.selected {
            background: rgba(214, 0, 0, 0.1);
            color: var(--primary);
        }
        
        .lang-option .flag {
            font-size: 1.125rem;
        }
        
        .lang-option .check {
            margin-left: auto;
            color: var(--primary);
        }
        
        /* Profile Header */
        .profile-header {
            text-align: center;
            padding-top: 32px;
            padding-bottom: 24px;
            position: relative;
        }
        
        .logo-wrapper {
            position: relative;
            display: inline-block;
            margin-bottom: 16px;
            margin-top: 24px;
        }
        
        .logo-container {
            width: 112px;
            height: 112px;
            border-radius: 16px;
            overflow: hidden;
            background: var(--white);
            box-shadow: var(--shadow-md);
            border: 2px solid rgba(214, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .logo-container img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 8px;
        }
        
        .logo-ring {
            position: absolute;
            inset: -4px;
            border-radius: 20px;
            border: 1px solid rgba(214, 0, 0, 0.2);
            pointer-events: none;
        }
        
        .brand-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.75rem;
            font-weight: 600;
            color: var(--text-dark);
            letter-spacing: -0.02em;
            margin-bottom: 4px;
        }
        
        .brand-subtitle {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.2em;
            margin-bottom: 16px;
        }
        
        .bio-text {
            font-size: 1rem;
            color: rgba(26, 26, 26, 0.8);
            line-height: 1.6;
            max-width: 280px;
            margin: 0 auto 12px;
        }
        
        .location-badge {
            font-size: 0.875rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }
        
        .location-badge i {
            color: var(--primary);
            font-size: 0.75rem;
        }
        
        /* WhatsApp Primary Button */
        .whatsapp-primary {
            display: block;
            width: 100%;
            padding: 16px 24px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-red);
            transition: all var(--transition);
        }
        
        .whatsapp-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 8px 30px -4px rgba(214, 0, 0, 0.4);
            color: var(--white);
        }
        
        .whatsapp-primary:active {
            transform: scale(0.98);
        }
        
        .whatsapp-primary i {
            margin-right: 10px;
            font-size: 1.25rem;
        }
        
        .pulse-dot {
            position: absolute;
            top: 8px;
            right: 8px;
            width: 10px;
            height: 10px;
        }
        
        .pulse-dot::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.8);
            animation: pulse 2s infinite;
        }
        
        .pulse-dot::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.6);
        }
        
        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            70% { transform: scale(2.5); opacity: 0; }
            100% { transform: scale(1); opacity: 0; }
        }
        
        .phone-display {
            text-align: center;
            font-size: 0.875rem;
            color: var(--text-muted);
            margin-top: 8px;
        }
        
        .phone-display i {
            color: var(--primary);
            margin-right: 6px;
            font-size: 0.75rem;
        }
        
        .phone-display .responsavel {
            color: rgba(26, 26, 26, 0.6);
        }
        
        /* Divider */
        .links-divider {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 32px;
        }
        
        .links-divider .line {
            flex: 1;
            height: 1px;
            background: var(--border);
        }
        
        .links-divider span {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.15em;
        }
        
        /* Link Buttons */
        .links-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding: 8px 0;
        }
        
        .link-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 14px 20px;
            background: var(--white);
            border: 2px solid var(--border);
            border-radius: 12px;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            transition: all var(--transition);
            box-shadow: var(--shadow-sm);
        }
        
        .link-button:hover {
            border-color: var(--primary);
            transform: translateY(-2px) scale(1.02);
            box-shadow: var(--shadow-md);
        }
        
        .link-button:hover .link-icon {
            background: rgba(214, 0, 0, 0.1);
            color: var(--primary);
        }
        
        .link-button:hover .link-label {
            color: var(--primary);
        }
        
        .link-button:hover .link-arrow {
            opacity: 1;
            transform: translateX(0);
        }
        
        .link-icon {
            position: absolute;
            left: 16px;
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: var(--background);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(26, 26, 26, 0.7);
            transition: all var(--transition);
        }
        
        .link-content {
            text-align: center;
            padding-left: 24px;
        }
        
        .link-label {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text-dark);
            letter-spacing: 0.05em;
            transition: color var(--transition);
        }
        
        .link-sublabel {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-top: 2px;
        }
        
        .link-arrow {
            position: absolute;
            right: 16px;
            color: var(--primary);
            opacity: 0;
            transform: translateX(8px);
            transition: all var(--transition);
        }
        
        /* Social Links */
        .social-links {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            padding: 24px 16px;
        }
        
        .social-link {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--white);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(26, 26, 26, 0.7);
            text-decoration: none;
            transition: all var(--transition);
            box-shadow: var(--shadow-sm);
        }
        
        .social-link:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--white);
            transform: translateY(-2px) scale(1.1);
            box-shadow: var(--shadow-md);
        }
        
        .social-link i {
            font-size: 1.125rem;
        }
        
        /* Footer */
        .site-footer {
            padding: 32px 16px;
            text-align: center;
            border-top: 1px solid rgba(229, 231, 235, 0.5);
            margin-top: auto;
        }
        
        .footer-decoration {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 16px;
        }
        
        .footer-decoration .line {
            width: 32px;
            height: 1px;
            background: rgba(214, 0, 0, 0.3);
        }
        
        .footer-decoration .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(214, 0, 0, 0.5);
        }
        
        .footer-copyright {
            font-size: 0.875rem;
            color: var(--text-muted);
        }
        
        .footer-tagline {
            font-size: 0.75rem;
            color: rgba(107, 114, 128, 0.6);
            font-style: italic;
            margin-top: 4px;
        }
        
        /* Accessibility */
        a:focus-visible, button:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }
        
        ::selection {
            background-color: rgba(214, 0, 0, 0.2);
            color: var(--text-dark);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .animate-in {
            animation: fadeInUp 0.5s ease-out forwards;
        }
        
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        .delay-5 { animation-delay: 0.5s; }
        .delay-6 { animation-delay: 0.6s; }
        .delay-7 { animation-delay: 0.7s; }
        .delay-8 { animation-delay: 0.8s; }
        
        /* Responsive */
        @media (min-width: 640px) {
            .logo-container { width: 128px; height: 128px; }
            .brand-name { font-size: 2rem; }
            .whatsapp-primary { font-size: 1.125rem; }
        }
