.modal-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,0.8);z-index:9999;display:flex;align-items:center;justify-content:center;opacity:0;visibility:hidden;transition:all 0.3s ease;padding:1rem;}.modal-overlay.modal-overlay--active{opacity:1;visibility:visible;}.modal-overlay.modal-overlay--closing{opacity:0;visibility:visible;}.modal{position:relative;background-color:#fff;border-radius:16px;max-width:90vw;max-height:90vh;overflow:hidden;transform:scale(0.9) translateY(20px);transition:all 0.3s ease;box-shadow:0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);}.modal-overlay--active .modal{transform:scale(1) translateY(0);}.modal-overlay--closing .modal{transform:scale(0.95) translateY(10px);}.modal__header{position:relative;padding:1.5rem 2rem;border-bottom:1px solid var(--gray-200,#e2e8f0);display:flex;align-items:center;justify-content:space-between;background-color:#fff;}.modal__header h2,.modal__header h3,.modal__header h4{margin:0;font-family:var(--font-1);font-size:1.25rem;font-weight:600;color:var(--gray-900,#192028);}@media (max-width: 768px){.modal__header{padding:1.25rem 1.5rem;}.modal__header h2,.modal__header h3,.modal__header h4{font-size:1.125rem;}}.modal__close{position:absolute;top:1rem;right:1rem;width:32px;height:32px;background:var(--red-soft,#fff0f1);border:1px solid var(--red-soft,#fff0f1);border-radius:10px;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all 0.3s ease;z-index:10;}.modal__close:hover{background-color:var(--red-light,#ff6673);border-color:var(--red-light,#ff6673);}.modal__close:hover::before,.modal__close:hover::after{background-color:#fff;}.modal__close svg{width:16px;height:16px;stroke:var(--red-light,#ff6673);}.modal__close::before,.modal__close::after{content:'';position:absolute;width:14px;height:2px;background-color:var(--red-light,#ff6673);border-radius:1px;}.modal__close::before{transform:rotate(45deg);}.modal__close::after{transform:rotate(-45deg);}@media (max-width: 768px){.modal__close{top:0.75rem;right:0.75rem;width:28px;height:28px;}.modal__close::before,.modal__close::after{width:12px;}}.modal__body{padding:1.5rem;max-height:calc(90vh - 120px);overflow-y:auto;}.modal__header + .modal__body{max-height:calc(90vh - 180px);}.modal__body-content{padding:2rem;}@media (max-width: 768px){.modal__body-content{padding:1.5rem;}}.modal__body-video{position:relative;width:100%;aspect-ratio:1.7777777777778;background-color:#000;}.modal__body-video iframe{width:100%;height:100%;border:none;}.modal__body-image{text-align:center;}.modal__body-image img{max-width:100%;height:auto;}.modal__footer{padding:1.5rem 2rem;border-top:1px solid var(--gray-200,#e2e8f0);background-color:var(--gray-50,#f8f9fa);display:flex;gap:1rem;justify-content:flex-end;}@media (max-width: 768px){.modal__footer{padding:1.25rem 1.5rem;flex-direction:column;}.modal__footer .botao{width:100%;justify-content:center;}}.modal--small{max-width:400px;}.modal--medium{max-width:600px;}.modal--large{max-width:800px;}.modal--xlarge{max-width:1000px;}.modal--fullscreen{max-width:95vw;max-height:95vh;}@media (max-width: 768px){.modal--fullscreen{max-width:100vw;max-height:100vh;border-radius:0;}}.modal--video{max-width:800px;}.modal--video .modal__header{padding-bottom:1rem;}.modal--video .modal__body{padding:0;}@media (max-width: 768px){.modal--video{max-width:95vw;}}@media (max-width: 768px){.modal{max-width:95vw;border-radius:12px;}}.modal__body::-webkit-scrollbar{width:6px;}.modal__body::-webkit-scrollbar-track{background:var(--gray-100,#eaecf0);border-radius:3px;}.modal__body::-webkit-scrollbar-thumb{background:var(--gray-400,#cbd5e1);border-radius:3px;}.modal__body::-webkit-scrollbar-thumb:hover{background:var(--gray-500,#707785);}body.modal-open{overflow:hidden;padding-right:var(--scrollbar-width,0);}