
   :root {
            --primary-soft: #e8f4f8;
            --primary-light: #b8dce8;
            --primary-medium: #7cc7d8;
            --primary-dark: #4a9fb0;
            --accent-warm: #ffffff;
            --accent-body: #ffffff;
            --accent-gold: #d4af37;
            --text-primary: #2c3e50;
            --text-secondary: #5a6c7d;
            --text-muted: #8fa0b3;
            --white-soft: #ffffff;
            --shadow-soft: rgba(124, 199, 216, 0.15);
            --shadow-medium: rgba(124, 199, 216, 0.25);
        }

        * {
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, var(--white-soft) 0%, var(--accent-body) 100%);
            color: var(--text-primary);
            line-height: 1.7;
            margin: 0;
            padding: 0;
			
			
        }
		
		 
        .header-serene {
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-medium) 100%);
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .header-serene::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="0.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .header-content {
            text-align: center;
            z-index: 2;
            position: relative;
            max-width: 600px;
            padding: 0 2rem;
        }

        .header-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.0rem;
            font-weight: 500;
            color: var(--white-soft);
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 20px rgba(0,0,0,0.1);
            line-height: 1.2;
        }

        .header-subtitle {
            font-size: 1.25rem;
            color: var(--white-soft);
            opacity: 0.9;
            font-weight: 300;
            margin-bottom: 0;
        }

        .floating-waves {
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 100px;
            background: var(--white-soft);
            clip-path: polygon(0 50%, 100% 80%, 100% 100%, 0% 100%);
        }

        .main-container {
            background: var(--white-soft);
            position: relative;
            z-index: 3;
			 flex: 1 !important;
            padding: 0.1rem 0;
        }

        .form-card {
            background: var(--white-soft);
            border-radius: 24px;
            box-shadow: 0 20px 60px var(--shadow-soft);
            padding: 3rem;
            margin: 0 auto;
            max-width: 900px;
            border: 1px solid rgba(124, 199, 216, 0.1);
        }

        .form-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.0rem;
            color: var(--text-primary);
            text-align: center;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .form-description {
            text-align: center;
            color: var(--text-secondary);
            font-size: 1.1rem;
            margin-bottom: 3rem;
            line-height: 1.6;
        }

        .form-section {
            margin-bottom: 2.5rem;
        }

        .form-label {
            display: block;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 0.75rem;
            font-size: 1rem;
        }

        .form-input {
            width: 100%;
            padding: 1rem 1.25rem;
            border: 2px solid var(--primary-soft);
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--white-soft);
            color: var(--text-primary);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary-medium);
            box-shadow: 0 0 0 4px rgba(124, 199, 216, 0.1);
            transform: translateY(-1px);
        }

        .form-textarea {
            min-height: 120px;
            resize: vertical;
            font-family: inherit;
        }

        .file-upload-area {
            border: 2px dashed var(--primary-light);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            background: linear-gradient(135deg, var(--primary-soft) 0%, rgba(248, 251, 252, 0.5) 100%);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .file-upload-area:hover {
            border-color: var(--primary-medium);
            background: linear-gradient(135deg, var(--primary-light) 0%, rgba(248, 251, 252, 0.8) 100%);
            transform: translateY(-2px);
        }

        .file-upload-icon {
            font-size: 2.5rem;
            color: var(--primary-medium);
            margin-bottom: 1rem;
        }

        .file-upload-text {
            color: var(--text-secondary);
            font-size: 1rem;
            margin: 0;
        }

        .file-upload-input {
            display: none;
        }

        .checkbox-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .checkbox-custom {
            width: 20px;
            height: 20px;
            border: 2px solid var(--primary-light);
            border-radius: 4px;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .checkbox-custom input {
            opacity: 0;
            position: absolute;
            width: 100%;
            height: 100%;
            margin: 0;
            cursor: pointer;
        }

        .checkbox-custom input:checked + .checkmark {
            background: var(--primary-medium);
            border-color: var(--primary-medium);
        }

        .checkbox-custom input:checked + .checkmark::after {
            display: block;
        }

        .checkmark {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background: transparent;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .checkmark::after {
            content: "";
            position: absolute;
            display: none;
            left: 6px;
            top: 2px;
            width: 6px;
            height: 10px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-medium) 0%, var(--primary-dark) 100%);
            border: none;
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 2rem;
            box-shadow: 0 8px 25px rgba(124, 199, 216, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(124, 199, 216, 0.4);
        }

        .btn-secondary {
            background: var(--white-soft);
            border: 2px solid var(--primary-light);
            color: var(--primary-dark);
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-secondary:hover {
            background: var(--primary-soft);
            border-color: var(--primary-medium);
            transform: translateY(-1px);
        }

        .error-message {
            color: #e74c3c;
            font-size: 0.875rem;
            margin-top: 0.5rem;
            display: block;
        }

        .preview-container {
            margin-top: 1rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .preview-image {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
            border: 2px solid var(--primary-soft);
        }

        .modal-content {
            border-radius: 16px;
            border: none;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .modal-header {
            border-bottom: 1px solid var(--primary-soft);
            padding: 1.5rem 2rem;
        }

        .modal-title {
            font-family: 'Playfair Display', serif;
            color: var(--text-primary);
            font-size: 1.5rem;
        }

        .modal-body {
            padding: 2rem;
        }

        .footer-serene {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
            color: white;
            padding: 3rem 0 2rem;
            position: relative;
            overflow: hidden;
        }

        .footer-serene::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
        }

        .footer-content {
            position: relative;
            z-index: 2;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 1.5rem;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .social-link:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-2px);
            color: white;
        }

        .divider {
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, var(--primary-light) 50%, transparent 100%);
            margin: 2rem 0;
        }

        @media (max-width: 768px) {
            .header-title {
                font-size: 2.5rem;
            }
            
            .form-card {
                margin: 1rem;
                padding: 2rem;
            }
            
            .form-title {
                font-size: 2rem;
            }
        }

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

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

        .music-search-result {
            background: var(--white-soft);
            border: 1px solid var(--primary-soft);
            border-radius: 12px;
            padding: 1rem;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .music-search-result:hover {
            border-color: var(--primary-light);
            box-shadow: 0 4px 15px var(--shadow-soft);
        }

        .loading-spinner {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid var(--primary-soft);
            border-radius: 50%;
            border-top-color: var(--primary-medium);
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }


		      /* CSS adicional para o container de vídeo */
        .video-overlay-container {
            position: relative;
            z-index: 10;
            margin-top: -250px;
            margin-bottom: 2rem;
        }

        .video-card {
            background: var(--white-soft);
            border-radius: 24px;
            box-shadow: 0 25px 80px var(--shadow-medium);
            padding: 3rem;
            margin: 0 auto;
            max-width: 900px;
            border: 1px solid rgba(124, 199, 216, 0.1);
        }

        .video-wrapper {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            height: 400px;
        }

        .video-poster {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: 1;
            transition: opacity 0.3s ease;
            cursor: pointer;
        }

        .video-poster::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(124, 199, 216, 0.1) 0%, rgba(0,0,0,0.3) 100%);
            z-index: 2;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 3;
            width: 80px;
            height: 80px;
            background: rgba(255,255,255,0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .play-button:hover {
            background: rgba(255,255,255,1);
            transform: translate(-50%, -50%) scale(1.1);
        }

        .play-button i {
            color: var(--primary-dark);
            font-size: 2rem;
            margin-left: 4px;
        }

        .video-element {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 16px;
        }

        /* Ajuste do header para acomodar a sobreposição */
        .header-serene {
            padding-bottom: 120px;
        }

        @media (max-width: 768px) {
            .video-overlay-container {
                margin-top: -80px;
            }
            
            .header-serene {
                padding-bottom: 80px;
            }
            
            .video-card {
                margin: 0 1rem;
                padding: 1.5rem;
            }
            
            .video-wrapper {
                height: 250px;
            }
        }

		 /* CORREÇÃO ESPECÍFICA 3: Botões lado a lado */
        .header-buttons {
            display: flex !important;
            gap: 1rem !important;
            justify-content: center !important;
            align-items: center !important;
            flex-wrap: wrap !important;
        }

        .header-buttons .btn-primary,
        .header-buttons .btn-secondary {
            width: auto !important;
            margin-top: 0 !important;
            flex: 0 0 auto !important;
        }

        /* Responsivo para botões */
        @media (max-width: 768px) {
            .header-buttons {
                flex-direction: column !important;
                gap: 0.75rem !important;
            }

            .header-buttons .btn-primary,
            .header-buttons .btn-secondary {
                width: 100% !important;
                max-width: 280px !important;
            }
        }

        /* Estilos específicos da welcome (mantidos) */
        .search-container {
            position: relative;
            z-index: 10;
            margin-top: -80px;
            margin-bottom: 2rem;
        }

        .search-card {
            background: var(--white-soft);
            border-radius: 24px;
            box-shadow: 0 25px 80px var(--shadow-medium);
            padding: 2rem;
            margin: 0 auto;
            max-width: 1000px;
            border: 1px solid rgba(124, 199, 216, 0.1);
        }

        .eternizado-card {
            background: var(--white-soft);
            border-radius: 16px;
            box-shadow: 0 8px 25px var(--shadow-soft);
            border: 1px solid rgba(124, 199, 216, 0.1);
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .eternizado-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px var(--shadow-medium);
        }

        .eternizado-image {
            object-fit: cover;
            border-radius: 12px;
        }

        .btn-search {
            background: linear-gradient(135deg, var(--primary-medium) 0%, var(--primary-dark) 100%);
            border: none;
            color: white;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .btn-search:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(124, 199, 216, 0.4);
            color: white;
        }

        .pagination-custom .page-link {
            border: 2px solid var(--primary-light);
            color: var(--primary-dark);
            border-radius: 8px;
            margin: 0 2px;
            transition: all 0.3s ease;
        }

        .pagination-custom .page-link:hover {
            background: var(--primary-soft);
            border-color: var(--primary-medium);
            transform: translateY(-1px);
        }

        .pagination-custom .page-item.active .page-link {
            background: linear-gradient(135deg, var(--primary-medium) 0%, var(--primary-dark) 100%);
            border-color: var(--primary-dark);
        }

      

        @media (max-width: 768px) {
            .search-container {
                margin-top: -60px;
            }
            
           
            
            .search-card {
                margin: 0 1rem;
                padding: 1.5rem;
            }
        }

        
        /* Estilos específicos da show-eterno */
        .profile-container {            
            position: relative;
            z-index: 10;
            margin-top: -250px;
            margin-bottom: 2rem;
        }

        .profile-card {
            background: var(--white-soft);
            border-radius: 24px;
            box-shadow: 0 25px 80px var(--shadow-medium);
            padding: 3rem;
            margin: 0 auto;
            max-width: 900px;
            border: 1px solid rgba(124, 199, 216, 0.1);
        }

        .round-img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 4px solid var(--white-soft);
            box-shadow: 0 10px 30px rgba(124, 199, 216, 0.726);
            margin: 0 auto 2rem;
        }

        .round-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .profile-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--text-primary);
            text-align: center;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .profile-dates {
            text-align: center;
            color: var(--text-secondary);
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .social-share {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .social-share a {
            width: 45px;
            height: 45px;
            background: var(--primary-soft);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-dark);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .social-share a:hover {
            background: var(--primary-medium);
            color: white;
            transform: translateY(-2px);
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--text-primary);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .section-divider {
            height: 2px;
            background: linear-gradient(90deg, var(--primary-light) 0%, var(--primary-medium) 50%, var(--primary-light) 100%);
            margin: 1.5rem 0;
            border-radius: 1px;
        }

        .timeline-item {
            background: var(--accent-warm);
            border-radius: 16px;
            padding: 2rem;
            margin-bottom: 2rem;
            border-left: 4px solid var(--primary-medium);
        }

        .timeline-date {
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 1rem;
        }

     .timeline-contents p {
            color: var(--text-secondary);
            line-height: 1.5;
            text-indent: 2em; /* recuo do parágrafo */
            margin-bottom: 1em; /* espaço entre parágrafos */
            text-align: left; /* alinhamento opcional */
        }


        .carousel-containers {
            background: var(--accent-warm);
            border-radius: 16px;
            padding: 2rem;
            margin: 2rem 0;
        }

        .carousel-item img {
            max-height: 400px;
            object-fit: contain;
            border-radius: 12px;
        }

        .message-card {
            background: var(--white-soft);
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border: 1px solid var(--primary-soft);
            transition: all 0.3s ease;
        }

        .message-card:hover {
            box-shadow: 0 8px 25px var(--shadow-soft);
            transform: translateY(-2px);
        }

        .message-author {
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .message-date {
            font-size: 0.875rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
        }

        .message-content {
            color: var(--text-secondary);
            line-height: 1.6;
        }
.message-pending {
    position: relative;
    background: var(--white-soft);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--primary-soft);
    transition: all 0.3s ease;
}

.message-pending .message-author {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.message-pending .message-date {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.message-pending .message-content {
    position: relative;
    min-height: 60px;
    color: transparent;
    user-select: none;
}


.message-pending .message-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, var(--text-muted) 0%, var(--text-muted) 80%, transparent 80%, transparent 100%),
        linear-gradient(90deg, var(--text-muted) 0%, var(--text-muted) 60%, transparent 60%, transparent 100%),
        linear-gradient(90deg, var(--text-muted) 0%, var(--text-muted) 90%, transparent 90%, transparent 100%);
    background-size: 100% 8px, 100% 8px, 100% 8px;
    background-position: 0 0, 0 16px, 0 32px;
    background-repeat: no-repeat;
    opacity: 0.3;
    border-radius: 4px;
}

.message-pending::after {
    content: "Em avaliação pelo moderador";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-medium);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(124, 199, 216, 0.4);
    border: 2px solid white;
    pointer-events: none;
}


      

        .audio-player {
            width: 100%;
            max-width: 400px;
            margin: 1rem auto;
            display: block;
        }

       

        @media (max-width: 768px) {
            .profile-container {
                margin-top: -150px;
            }
            
          
            
            .profile-card {
                margin: 0 1rem;
                padding: 2rem;
            }

            .profile-title {
                font-size: 2rem;
            }

            .social-share {
                flex-wrap: wrap;
            }
        }


         /* Estilos específicos da terms_policy */
        .content-container {
            position: relative;
            z-index: 10;
            margin-top: -250px;
            margin-bottom: 2rem;
        }

        .content-card {
            background: var(--white-soft);
            border-radius: 24px;
            box-shadow: 0 25px 80px var(--shadow-medium);
            padding: 3rem;
            margin: 0 auto;
            max-width: 900px;
            border: 1px solid rgba(124, 199, 216, 0.1);
        }

        .content-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--text-primary);
            text-align: center;
            margin-bottom: 2rem;
            font-weight: 500;
        }

        .content-text {
            color: var(--text-secondary);
            line-height: 1.8;
            font-size: 1rem;
        }

        .content-text h1, .content-text h2, .content-text h3 {
            color: var(--text-primary);
            font-family: 'Playfair Display', serif;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        .content-text h1 {
            font-size: 2rem;
        }

        .content-text h2 {
            font-size: 1.5rem;
        }

        .content-text h3 {
            font-size: 1.25rem;
        }

        .content-text p {
            margin-bottom: 1.5rem;
        }

        .content-text ul, .content-text ol {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }

        .content-text li {
            margin-bottom: 0.5rem;
        }

        .content-text strong {
            color: var(--text-primary);
            font-weight: 600;
        }

        /* Estilos para editor Quill */
        .ql-align-left {
            text-align: left;
        }
        .ql-align-center {
            text-align: center;
        }
        .ql-align-right {
            text-align: right;
        }
        .ql-align-justify {
            text-align: justify;
        }

        .ql-size-small {
            font-size: 0.875rem;
        }
        .ql-size-large {
            font-size: 1.25rem;
        }
        .ql-size-huge {
            font-size: 1.5rem;
        }

        .ql-indent-1 {
            margin-left: 2rem;
        }
        .ql-indent-2 {
            margin-left: 4rem;
        }


        @media (max-width: 768px) {
            .content-container {
                margin-top: -80px;
            }
            
           
            .content-card {
                margin: 0 1rem;
                padding: 2rem;
            }

            .content-title {
                font-size: 2rem;
            }
        }
        
   .bg-gradient-primary {
    background-image: linear-gradient(135deg, var(--primary-medium) 0%, var(--primary-dark) 100%);
    background-repeat: no-repeat;
    background-size: cover;
}
