@import 'bootstrap/dist/css/bootstrap.min.css';
@import '@fortawesome/fontawesome-free/css/all.min.css';
@import 'shepherd.js/dist/css/shepherd.css';
@import 'icons.css';

:root {
    --bg-color: #343434;
    --bg-color-secondary: #2a2a2a;
    --color-primary: #E9B258;
    --color-primary-active: #d3942f;
    --color-secondary: #D9D9D9;
    --color-danger: #ff4d4d;
    --color-muted: #6c6c6c;
    --color-danger-hover: #e14a4a;
    --color-primary-hover: #d4a14d;
    --color-primary-disabeld: #aa864b;
    --color-secondary-hover: #c2c0c0;
    --text-color-secondary: #ccc;
    --color-primary-rgb: 233, 178, 88;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: var(--bg-color);
}
body {
    font-family: 'Outfit', sans-serif !important;
}

body * {
    color: var(--text-color-secondary);
}

#app-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

main.flex-grow-1 {
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

main.flex-grow-1::-webkit-scrollbar {
    width: 10px;
}

main.flex-grow-1::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

main.flex-grow-1::-webkit-scrollbar-thumb {
    background-color: var(--color-muted);
    border-radius: 10px;
}

main.flex-grow-1::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-primary);
}

.fs-06 {
  font-size: 0.6rem;
}

.fs-08rem {
  font-size: 0.8rem;
}

.page-home main.flex-grow-1 {
    display: block;
    position: relative;
}

.mt-15 {
    margin-top: 15vh;
}

.mb-15 {
    margin-bottom: 15vh;
}

.color-bg {
    color: var(--bg-color) !important;
}

.text-muted {
    color: var(--color-muted) !important;
}

.fs-08 {
  font-size: 0.8rem !important;
}

/* .balance-info h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
} */

/* h1 {
    font-weight: 900;
    text-align: center;
    background: var(--color-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out;
}

h2 {
    font-weight: 700;
    text-align: center;
    background: var(--color-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease-out;
}

h3 {
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
} */

.btn {
    min-width: 40px;
    padding: 6px 12px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--bg-color);
    font-weight: 600;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.05) 5px 10px 30px, rgba(0, 0, 0, 0.1) 0px 10px 6px;
    border: none;
    text-align: center;
    --bs-btn-active-bg: var(--color-primary-active);
}

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

.btn-success {
    background-color: var(--bg-color) !important;
    color: var(--color-primary) !important;
    border: 1px solid var(--color-primary) !important;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.05) 5px 10px 30px, rgba(0, 0, 0, 0.1) 0px 10px 6px;
    text-align: center;
}

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

.btn-success:disabled {
    color: var(--color-secondary-hover);
    background-color: var(--color-primary-disabeld);
}

.btn.disabled, .btn:disabled, fieldset:disabled .btn {
    color: var(--color-secondary-hover);
    background-color: var(--color-primary-disabeld);
    margin: 15px 0 15px 0;
}

.btn-secondary {
    background-color: #D9D9D9;
    color: var(--bg-color) !important;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.05) 5px 10px 30px, rgba(0, 0, 0, 0.1) 0px 10px 6px;
}

.btn-secondary:hover {
    color: #fff;
    background-color: var(--color-secondary-hover);
}

.btn-danger {
    background-color: var(--color-danger);
    color: var(--bg-color);
    font-weight: 600;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.05) 5px 10px 30px, rgba(0, 0, 0, 0.1) 0px 10px 6px;
    border: none;
    text-align: center;
}

.btn-danger:hover {
    background-color: var(--color-danger-hover);
}

.btn-outline-danger {
    background-color: transparent;
    color: var(--color-danger);
    font-weight: 600;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.05) 5px 10px 30px, rgba(0, 0, 0, 0.1) 0px 10px 6px;
    border: 1px solid var(--color-danger);
    text-align: center;
    transition: all 0.3s ease;
}

.btn-outline-danger:hover .text-danger {
    color: var(--bg-color) !important; 
}

.btn-outline-secondary {
    background-color: transparent;
    color: var(--color-secondary) !important;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.05) 5px 10px 30px, rgba(0, 0, 0, 0.1) 0px 10px 6px;
    border: 1px solid var(--color-secondary);
    text-align: center;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    color: var(--color-secondary-hover) !important; 
}

/* Home */
.image-section {
    margin-top: 2rem;
}
.home-image {
    width: 310px;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    margin: 20px;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 10px 15px, rgba(0, 0, 0, 0.18) 0px 6px 6px;
}
.home-image:hover {
    transform: translateY(-2px);
}
p {
    margin: 0;
}
/* Fim home */

.card-body {
    border-radius: 10px;
    color: var(--text-color-secondary);
}

.media-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden !important;
    top: 0;
    left: 0;
}

.media-item {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    overflow: hidden !important;
}

body.rotated-90 #app-wrapper,
body.rotated-270 #app-wrapper{
    width: 100vh;
    height: 100vw;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -50vw;
    margin-left: -50vh;
    transform-origin: center center;
}

body.rotated-90 #app-wrapper {
    transform: rotate(90deg);
}

body.rotated-180 #app-wrapper {
    transform: rotate(180deg);
}

body.rotated-270 #app-wrapper {
    transform: rotate(270deg);
}

#exit-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 1005;
    transition: transform 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
    opacity: 0.7;
}

#exit-button i {
    color: var(--bg-color);
}

#exit-button:hover {
    background-color: var(--color-primary-hover);
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 1;
}

/* Estilos Navbar */
.user-initial {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #afafaf;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    font-size: 16px;
    margin-right: 8px;
    z-index: 1022;
}

.user-initial-dropdown {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    flex-shrink: 0;
    background-color: #afafaf;
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
    font-size: 32px;
    line-height: 50px;
    margin-right: 12px;
    z-index: 1022;
}

.navbar {
    padding-top: 20px;
    background: linear-gradient(
        to bottom,
        rgba(42, 42, 42, 0.10) 0%,
        rgba(42, 42, 42, 0.10) 70%, 
        rgba(42, 42, 42, 0.01) 100%
    );
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    width: 99.3%;
}

.navbar-nav .nav-link.active { 
    position: relative;
}

.navbar-brand {
    font-weight: bold;
    font-size: 30px;
    color: #fff;
}

.navbar-brand:hover {
    color: #fff !important;
}

.nav-link {
    color: #9e9e9e;
}

.navbar .nav-link:hover {
    color: #ffffff;
}

.navbar .nav-link.active {
    color: #ffffff;
    font-weight: bold;
    border-bottom: 2px solid var(--color-primary);
}

.navbar .user-menu-container {
    position: relative;
}

.navbar .user-toggle {
    padding: 10px 15px;
    color: white !important;
    display: flex;
    align-items: center;
    transition: background-color 0.2s ease;
    z-index: 1090;
}

.navbar .user-toggle .fa-angle-down {
    margin-left: 8px;
    font-size: 14px;
}

.navbar .user-toggle:hover {
    color: #e6e6e6 !important;
}

.navbar .user-menu {
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #ececec;
    color: var(--bg-color-secondary);
    border-radius: 5px;
    min-width: 200px;
    z-index: 1080;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    display: none;
}

.navbar .user-menu::before {
    content: '';
    position: absolute;
    top: -9.5px;
    right: 15px;
    border: 5px solid transparent;
    border-bottom-color: #fff;
    /* border-bottom-color: rgba(42, 42, 42, 0.75); */
}

.navbar .user-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.navbar .user-menu-header {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.2); */
}

.navbar .user-info {
    display: flex;
    flex-direction: column;
}

.navbar .user-name {
    font-weight: bold;
    color: var(--bg-color);
}

.navbar .user-email {
    font-size: 12px;
    color: var(--color-muted);
}

.navbar .user-menu-item {
    display: block;
    padding: 8px 15px;
    color: var(--bg-color) !important;
    text-decoration: none;
    background: none;
    font-weight: 700;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.navbar .user-menu-item:hover,
.navbar .user-menu-item:focus {
    background-color: var(--color-muted);
    color: var(--color-secondary) !important;
}

.navbar .user-menu-item:last-child {
    border-radius: 0 0 5px 5px;
}

.navbar .user-menu-divider {
    border-color: rgba(0, 0, 0, 0.5);
    margin: 0;
}

.navbar .user-menu-form {
    margin: 0;
}

.navbar-toggler-icon {
    color: #fff !important;
}

.footer-home {
    background: var(--bg-color-secondary);
    min-height: 100%;
    padding: 8% 10% 0 10%;
    color: var(--text-color-secondary);
    text-align: center;
    display: none;
    opacity: 0;
}

#uploadBtn {
    pointer-events: auto !important;
    z-index: 10000 !important;
    position: relative !important;
    opacity: 1 !important;
}

/* Galeria */
.card-default {
    width: 100%;       /* O card vai esticar para preencher a coluna do grid */
    height: 400px;
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 10px;
    background-color: black;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    margin: 0 auto;
}

.card-default-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.card-default-body {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.9) 0%,
        transparent 40%,
        transparent 40%,
        rgba(0, 0, 0, 1) 100%
    );
    color: white;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-default-title {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.action-buttons-default {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
}

.action-buttons-default .btn {
    font-size: 16px;
    opacity: 0.8;
    background: none;
    color: white;
    border: none;
    padding: 0px 5px 10px 15px;
}

.action-buttons-default .btn:hover, .btn:hover {
    opacity: 1;
    color: var(--bg-color-secondary)
}

.screen-info-default {
    font-size: 12px;
    opacity: 0.8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* modal */
.modal-content {
    background-color: var(--bg-color);
    border: 0.1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    color: var(--color-secondary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
    position: relative;
}

.modal-content * {
    color: var(--color-secondary)!important;
}

.modal-content i {
    color: inherit !important;
}

.modal-content .btn-primary,
.modal-content .btn-primary * {
    color: var(--bg-color) !important;
}

.modal-content .btn-secondary,
.modal-content .btn-secondary * {
    color: var(--bg-color) !important;
}

.modal-content button:not(.btn-primary):not(.btn-secondary),
.modal-content button:not(.btn-primary):not(.btn-secondary) * {
    color: initial !important; 
}

.modal-content .form-control:-webkit-autofill,
.modal-content .form-control:-webkit-autofill:hover,
.modal-content .form-control:-webkit-autofill:focus,
.modal-content .form-control:-webkit-autofill:active {
    background: var(--bg-color) !important;
    -webkit-box-shadow: 0 0 0 1000px var(--bg-color) inset !important;
    box-shadow: 0 0 0 1000px var(--bg-color) inset !important;
    -webkit-text-fill-color: #d1d1d1 !important;
    color: #d1d1d1 !important;
    transition: background-color 5000s ease-in-out 0s;
}

.modal-content .form-control[type="number"] {
    -webkit-appearance: none;
    -moz-appearance: textfield;
}

.modal-content .form-control[type="number"]::-webkit-inner-spin-button,
.modal-content .form-control[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.modal-header {
    border-bottom: none !important;
    padding: 1.5rem 1.5rem 0.5rem;
}

.modal-footer {
    border-top: none !important;
    padding: 1.5rem 1.5rem 0.5rem;
}

.config-card-default {
    width: 180px;
    min-width: 180px;
    max-width: 180px;
    height: 250px;
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.btn-uniform-default {
    padding: 8px 16px;
    font-size: 14px;
}

.modal-body.d-flex {
    align-items: stretch;
}
/* Fim galeria */

/* filters */
#filterBtn {
    position: relative;
}
.filter-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #dc3545;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
    /* opacity: 0; */
    /* transform: scale(0.5); */
    pointer-events: none;
}

.filter-badge.active {
    opacity: 1;
    transform: scale(1);
}

.footer {
    /* position: absolute;
    bottom: 0;
    left: 50%; */
    /* width: 100%;
    transform: translateX(-50%); */
    /* margin-top: 100px; */
    margin-top: auto;
    padding: 1rem 0 3rem;
    background: var(--bg-color-secondary);
}

.footer .social-icons a {
    color: #d1d1d1;
    transition: color 0.3s ease;
    margin: 0 0.5rem;
}

.footer .social-icons a:hover {
    color: var(--color-primary);
}

.color-secondary {
    color:var(--color-secondary) !important;
}

.color-primary {
    color:var(--color-primary) !important;
}

@media (max-width: 991.98px) {
    .navbar .user-menu {
        position: fixed !important;
        left: 10px !important;
        right: 10px !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;
        
        /* background-color: #495057; */
        border-radius: 8px;
        /* box-shadow: 0 6px 12px rgba(0,0,0,0.25); */
        z-index: 1100;
        padding: 0;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .navbar .user-menu::before {
        display: none;
    }

    .navbar .user-menu .user-menu-header,
    .navbar .user-menu .user-menu-item,
    .navbar .user-menu .user-info span {
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        text-overflow: clip !important;
    }

    .navbar .user-menu .user-name,
    .navbar .user-menu .user-email {
        display: block;
        width: 100%;
    }
    
    .navbar .user-menu .user-menu-header {
        padding: 15px;
    }

    .navbar .user-menu .user-menu-item,
    .navbar .user-menu .user-menu-form button.user-menu-item {
        padding: 12px 15px;
        font-size: 1rem;
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
}

/* Botão ajuda */
.vtv-contact-widget-button {
    position: fixed;
    bottom: 50px;
    right: 25px;
    background: var(--color-primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1002;
    transition: transform 0.2s ease-out, background-color 0.2s ease;
}

.vtv-contact-widget-button i {
    color: var(--bg-color) !important;
}

.vtv-contact-widget-button:hover {
    transform: scale(1.1);
    background: var(--color-primary);
}

.vtv-contact-widget-popup {
    position: fixed;
    bottom: 120px;
    right: 25px;
    width: 350px;
    max-width: calc(100% - 40px);
    background: var(--bg-color);
    color: #d1d1d1;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vtv-contact-widget-popup.vtv-widget-open {
    display: flex;
    animation: vtv-widget-slide-up 0.3s ease-out;
}

@keyframes vtv-widget-slide-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vtv-widget-header {
    background: var(--bg-color);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vtv-widget-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
}

.vtv-widget-close-btn {
    background: none;
    border: none;
    color: #d1d1d1;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

.vtv-widget-close-btn:hover {
    color: #fff;
}

.vtv-widget-body {
    padding: 20px;
    overflow-y: auto;
    max-height: calc(70vh - 120px);
}

.vtv-widget-body .form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    color: var(--color-secondary) !important;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.vtv-widget-body .form-control {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.form-control {
    background: var(--bg-color-secondary) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--color-secondary);
    font-size: 0.9rem;
    padding: 0.75rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.vtv-widget-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vtv-widget-submit-btn {
    background: var(--color-primary);
    border: none;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.vtv-widget-submit-btn:hover {
    transform: scale(1.01);
}

.vtv-widget-submit-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
}

.vtv-widget-status-message {
    padding: 10px 20px;
    font-size: 0.85rem;
    text-align: center;
    display: none;
}

.vtv-widget-status-message.success {
    color: #28a745; 
    background-color: rgba(40, 167, 69, 0.1);
    border-top: 1px solid rgba(40, 167, 69, 0.2);
}

.vtv-widget-status-message.error {
    color: #dc3545;
    background-color: rgba(220, 53, 69, 0.1);
    border-top: 1px solid rgba(220, 53, 69, 0.2);
}

.vtv-widget-status-message ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
/* Fim botão ajuda */

/* Renovação de plano */
.renewal-options-container {
    display: flex;
    justify-content: space-around;
    /* gap: 20px; */
    flex-wrap: wrap; 
    padding-top: 10px;
}

.renewal-option-card {
    background: var(--bg-color);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 25px 20px;
    width: calc(50% - 15px);
    /* min-width: 230px;  */
    box-sizing: border-box;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 220px;
}

.renewal-option-card:hover {
    transform: translateY(-2px);
    border-color: var(--color-primary);
}

.renewal-option-icon {
    color: var(--color-primary);
    margin-bottom: 20px;
}

.renewal-option-icon i {
    font-size: 3rem;
}

.renewal-option-title {
    color: var(--color-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.renewal-option-description {
    font-size: 0.9rem;
    color: #d1d1d1;
    line-height: 1.5;
    flex-grow: 1;
}

@media (max-width: 767.98px) { 
    .renewal-options-container {
        flex-direction: column;
        align-items: center;
    }
    .renewal-option-card {
        width: 90%; 
        max-width: 320px; 
        margin-bottom: 20px; 
    }
    .renewal-option-card:last-child {
        margin-bottom: 0;
    }
    .section-intro-text {
        font-size: 1rem;
        padding-left: 10px;
        padding-right: 10px;
    }
    .dynamic-impact-section .section-title {
        margin-bottom: 25px !important;
    }
    .section-intro-text.mb-5 {
        margin-bottom: 30px !important;
    }

    #clientsTable thead {
        display: none;
    }
    
    #clientsTable tbody tr {
        display: block;
        margin-bottom: 1.2rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        background-color: var(--bg-color-secondary);
        padding: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    
    #clientsTable tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: none !important;
        padding: 10px 5px !important;
        border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    }
    
    #clientsTable tbody td:last-child {
        border-bottom: none !important;
    }
    
    #clientsTable tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--color-muted);
        text-align: left;
        padding-right: 10px;
        font-size: 0.85rem;
    }
}
/* Fim renovação de plano */

/* Renovação Telas */
.renewal-page-container {
    background-color: var(--bg-color);
    padding: 25px;
    border-radius: 15px;
    color: #d1d1d1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}
.renewal-page-container h1 {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}
.screen-renewal-item {
    background-color: var(--bg-color);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.screen-renewal-item h5 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}
.screen-renewal-item p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-check-input {
    margin-top: 0.4rem;
    margin-right: 0.5rem;
    background-color: var(--bg-color-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.screen-renewal-item .form-select {
    background: var(--bg-color-secondary) !important;
    border-color: rgba(255, 255, 255, 0.15);
    color: #d1d1d1;
    max-width: 200px;
}
.screen-renewal-item .price-display {
    font-weight: bold;
    color: var(--color-primary);
    font-size: 1.1rem;
}
.renewal-summary {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--bg-color);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.renewal-summary h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
}
.total-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #5cb85c;
}
/* Fim Renovação Telas */

/* Galeria */
#loading {
    text-align: center;
    padding: 20px;
    display: block;
    color:#9e9e9e;
}

.dropdown-menu {
    min-width: 120px;
}

.media-items::before{
    content: '';
    position: absolute;
    bottom: 99.9%; 
    right: 8px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
}

.dropdown-item i {
    margin-right: 8px;
}

.no-results {
    text-align: center;
    color: #9e9e9e;
    padding: 20px;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-secondary);
    background: var(--color-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent !important;
}

.form-select {
    background: var(--bg-color) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #d1d1d1;
    font-size: 0.9rem;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}
.form-select:focus {
    border-color: var(--color-primary);
    box-shadow: none;
    background: var(--bg-color) !important;
    color: #d1d1d1;
}
/* Fim galeria */

/* Telas */
#screensContainer {
    display: grid;
    gap: 20px;
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
}

#screensContainer .col {
    width: 100% !important;
    flex: none !important;
    padding: 0 !important;
}

div#screensContainer.container-fluid {
    padding: 20px 0 !important;
}

.no-screens {
    text-align: center;
    color: #9e9e9e;
    padding: 20px;
}

.play-screen {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: background-color 0.2s ease;
    z-index: 1002;
}

.play-screen:hover {
    background-color: #cb9a4b;
}

.play-screen:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}
.play-screen i {
    margin: 0 auto;
    padding: 0;
    line-height: 1;
    color: var(--bg-color);
}

.modal-body .form-control:-webkit-autofill,
.modal-body .form-control:-webkit-autofill:hover,
.modal-body .form-control:-webkit-autofill:focus,
.modal-body .form-control:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px var(--bg-color) inset !important;
    -webkit-text-fill-color: #d1d1d1 !important;
    transition: background-color 5000s ease-in-out 0s;
}

.btn-play-secondary {
    background: var(--bg-color) !important;
}
.btn-play-primary {
    padding-left: 20px;;
    background: var(--color-primary) !important;
}

.media-container, .media-item {
    background-color: #000000 !important;
    background-image: none !important;
}
/* Fim telas */

/* Payment Screen */

.card .card-body h3,
.card .card-body p,
.card .card-body strong,
.card .card-body span {
    color: inherit;
}

.card {
    background: rgba(40, 40, 40, 0.9);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.form-control::-webkit-file-upload-button {
    background: #3a3a3a;
    border: none;
    margin-left: -6px;
    border-radius: 8px;
    color: #ffffff;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.form-control::-webkit-file-upload-button:hover {
    background: #4a4a4a;
}

.btn-screen-payment-primary {
    background: var(--color-primary) !important;
    color: var(--bg-color) !important;
    border: none;
    border-radius: 10px;
    font-weight: 500;
    font-size: 1rem;
    height: 40px;
    line-height: 1.5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex: 1;
    width: 100%;
}

.btn-screen-payment-secondary {
    background: var(--bg-color) !important;
    color: #b7b7b7 !important;
    border: none;
    border-radius: 10px;
    font-weight: 500;
    font-size: 1rem;
    height: 40px;
    line-height: 1.5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex: 1;
    width: 100%;
}

.btn-outline-primary {
    border-color: var(--color-primary);
    color: var(--color-primary);
    border-radius: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-outline-primary:hover {
    background-color: var(--color-primary);
    color: #1a1a1a;
}
#durationField, #durationDisplay, #estimatedCostWrapper, #submitButton {
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
#durationField.show, #durationDisplay.show, #estimatedCostWrapper.show, #submitButton.show {
    opacity: 1;
    transform: translateY(0);
    display: block !important;
}
#estimatedCostWrapper {
    display: inline-flex;
    align-items: center;
    background: rgba(233, 178, 88, 0.2);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1.5;
    flex: 1;
    width: 100%;
    justify-content: center;
}
#estimatedCostWrapper i {
    margin-right: 0.5rem;
    color: var(--color-primary);
}
#payment-pending img {
    max-width: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
#payment-instructions {
    color: #d1d1d1;
    font-size: 1.1rem;
}
#copyFeedback {
    font-size: 0.9rem;
    animation: fadeInOut 2s ease;
}
.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    width: 100%;
    margin-top: 1rem;
}
.info-block {
    background: var(--bg-color);
    border-left: 4px solid var(--color-primary);
    border-radius: 10px;
    padding: 0.75rem;
    color: #d1d1d1;
    font-size: 0.9rem;
    margin-top: 1rem;
    width: 100%;
}
.info-block p {
    margin: 0;
    font-style: italic;
    font-size: 0.8rem;
}

#pixKeyDisplay {
    word-break: break-all;
}
#payment-instructions {
    color: #d1d1d1 !important;
}
/* Fim Payment Screen */

/* Planos */
.nav-pills {
    background: var(--bg-color-secondary);
    border-radius: 30px;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
}
.nav-pills .nav-link {
    color: #d1d1d1;
    border-radius: 30px;
    padding: 10px 20px;
    text-align: center;
    font-size: 1rem;
    transition: background 0.3s ease, color 0.3s ease;
}
.nav-pills .nav-link.active {
    background: var(--color-primary);
    color: #1a1a1a;
    font-weight: 600;
}
.nav-pills .nav-link:hover:not(.active) {
    background: #3a3a3a;
    color: #ffffff;
}

.login-card,
.password-reset-card {
   width: 20vw;
   margin: 0;
}

.btn-block {
    width: 100% !important;
}

.btn-logout {
    color: #6c757d;
    font-size: 0.9rem;
    text-decoration: underline;
    background: none;
    border: none;
    padding: 0;
    transition: color 0.3s ease;
}
.btn-logout:hover {
    color: #E9B258;
}

.success-message {
    color: #28a745;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1.5rem; 
}

.custom-card {
    background: var(--bg-color);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* height: 100%; */
    padding: 2rem;
    /* margin: 0 auto; */
    /* max-width: 800px; */
}
.card-plans:hover {
    border: 0.1px solid var(--color-primary-disabeld)
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d1d1d1;
    text-align: center;
}
.custom-card .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.card-body hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 0.5rem 0;
}
.custom-card .d-flex.justify-content-center.mt-4 {
    margin-top: 1.5rem !important;
}
.price {
    display: block;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--color-primary);
}
.free {
    color: rgba(0, 157, 81, 0.998);
}
.price .suffix {
    font-size: 1rem;
    color: #d1d1d1;
    font-weight: 600;
}
.price .prefix {
    font-size: 1.5rem;
    color: #d1d1d1;
    font-weight: 700;
}
.screen-control {
    text-align: center;
    margin: 0.5rem 0;
}
.screen-control strong {
    font-size: 1.1rem;
    color: #d1d1d1;
    display: block;
    margin-bottom: 0.25rem;
}
.screen-counter {
    display: inline-flex;
    align-items: center;
    background: #3a3a3a;
    border-radius: 18px;
    padding: 0;
    transition: background-color 0.3s ease;
    touch-action: manipulation; 
}
.screen-counter:hover {
    background: #4a4a4a;

}
.screen-counter button {
    background: transparent;
    border: none;
    width: 4rem;
    height: 40px;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}
.screen-counter button:hover {
    transform: scale(1.1);
}
.screen-counter span {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-primary);
    width: 50px;
    text-align: center;
    padding: 0.5rem 0;
}
.screen-control-placeholder {
    height: 48px;
    visibility: hidden;
}
.features {
    text-align: center;
    margin: 0.25rem auto;
    font-size: 0.9rem;
    color: #d1d1d1;
}
.features p {
    text-align: initial;
    margin: -20px 0 10px;
    line-height: 1.6;
}
.features i.fa-check {
    color: rgba(0, 157, 81, 0.998);
    margin-right: 0.5rem;
}
.features i.fa-xmark {
    color: red;
    margin-right: 0.5rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    width: 100%;
    margin-top: 1rem;
}
.info-block {
    background: var(--bg-color);
    border-left: 4px solid var(--color-primary);
    border-radius: 10px;
    padding: 0.75rem;
    color: #d1d1d1;
    font-size: 0.9rem;
    margin-top: 1rem;
    width: 100%;
}
.info-block p {
    margin: 0;
    font-style: italic;
    font-size: 0.8rem;
}
/* Fim Planos */

/* Termos */
.unordered-terms {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.last-updated {
    font-size: 0.8rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 1.5rem;
}
/* Fim Termos */

/* Tela edit profile */
.profile-container {
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

.input-group-text {
    background: var(--bg-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 8px 8px 0;
    color: #d1d1d1;
    cursor: pointer;
    transition: background 0.3s ease;
}

.text-danger {
    color: var(--color-danger);
    font-size: 0.8rem;
    margin-top: 0.25rem;
    transition: color 0.3s ease;
}

.text-danger:hover {
    background-color: var(--color-danger);
    color: var(--bg-color);
    border-color: var(--color-danger);
}

.btn-outline-danger i,
.btn-outline-danger svg,
.btn-outline-danger path {
    color: currentColor !important;
    fill: currentColor !important;
    transition: all 0.3s ease;
}


.alert-success {
    background: var(--bg-color);
    border-left: 4px solid #28a745;
    border-radius: 8px;
    color: #d1d1d1;
    font-size: 0.9rem;
    padding: 0.75rem;
    margin-bottom: 1rem;
}
.alert-danger {
    background: var(--bg-color);
    border-left: 4px solid #ff4d4d;
    border-radius: 8px;
    color: #d1d1d1;
    font-size: 0.9rem;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.alert-danger ul {
    margin: 0;
    padding-left: 1rem;
}

#deleteModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 1060;
    overflow: auto;
    transition: opacity 0.15s linear;
    opacity: 0;
}

#deleteModal.show {
    opacity: 1;
}

.modal-dialog {
    margin: 1.75rem auto;
    max-width: 800px !important;
    pointer-events: none;
    position: relative;
    transition: transform 0.3s ease-out;
    transform: translateY(-50px);
    width: auto;
}

.modal-xl {
    max-width: 1140px !important;
}

#deleteModal.show .modal-dialog {
    transform: translateY(0);
}

.modal-content * {
    color: #d1d1d1 !important;
}

.modal-body {
    padding: 1.5rem;
}

.btn-close {
    color: var(--color-secondary);
    filter: invert(1) grayscale(100%) brightness(200%) !important;
    box-shadow: none;
    opacity: 0.6;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transform: scale(0.7);
}

.btn-close:hover {
    opacity: 1;
}


.input-group {
    margin-bottom: 1.5rem;
}

.custom-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1055;
    opacity: 0;
    transition: opacity 0.15s linear;
    pointer-events: none;
}

.custom-backdrop.show {
    opacity: 1;
    pointer-events: auto;
}

.intro-text {
    color: #6c757d;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

body.modal-open {
    overflow: hidden;
    padding-right: 0 !important;
    width: 100% !important;
    overflow-x: hidden !important;
}
/* Fim Tela edit profile */

.register-login-container,
.password-reset-container,
.password-reset-store-container,
.email-verification-container,
.email-verification-container,
.password-container {
    /* padding: 2rem; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 70vh; */
}

.form-control:focus {
    border-color: var(--color-primary) !important;
    box-shadow: none;
    background: #2a2a2a !important;
    color: var(--color-secondary-hover);
    outline: none;
}

.form-control::placeholder {
    color: #6c757d;
}
.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus,
.form-control:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #2a2a2a inset !important;
    -webkit-text-fill-color: #d1d1d1 !important;
    transition: background-color 5000s ease-in-out 0s;
}

.input-group-text:hover {
    background: #4a4a4a;
}

.btn-facebook {
    background: #1877f2;
    border: none;
    border-radius: 30px;
    padding: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    transition: transform 0.2s ease;
    width: 100%;
    text-align: center;
}
.btn-facebook:hover {
    transform: scale(1.01);
    background: #1566d1;
}
.btn-link {
    color: var(--color-primary);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
    background: none;
    border: none;
    padding: 0;
}
.btn-link:hover {
    color: var(--color-primary);
    text-decoration: underline;
}
.form-check-label {
    color: var(--color-secondary);
    font-size: 0.9rem;
}

.form-check-input:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.scroll-content {
    height: 5200px;
    position: relative;
    z-index: 2;
}



@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInOut {
    0% { opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; }
}

@media (min-width: 576px) {
    .navbar #login_register {
        padding-left: 10%;
    }

    #screensContainer { grid-template-columns: repeat(2, 1fr); }

}

@media (min-width: 576px) and (max-width: 767.98px) {
    #screensContainer {
        justify-content: center;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    #screensContainer {
        justify-content: center;
    }
}

@media (min-width: 992px) {
    .title-screen {
        display: none;
    }

    .navbar-center {
        padding-left: 14%;
    }

    #screensContainer { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1200px) {
    #screensContainer { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1400px) {
    #screensContainer { grid-template-columns: repeat(5, 1fr); }
}



/* Motion Home */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

#navegacao-3d-container {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 105;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#navegacao-3d-container {
    display: none !important;
}

.btn-nav3d {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-primary);
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.2s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-nav3d:hover {
    background-color: rgba(233, 178, 88, 0.9);
    color: var(--bg-color);
    transform: scale(1.1);
}

.btn-nav3d:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: scale(1);
}

.btn-nav3d.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
}

#btn-voltar-topo {
    position: fixed;
    bottom: 120px;
    right: 30px;
    background: var(--color-primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1002;
}

#btn-voltar-topo:hover {
    transform: scale(1.1);
    background-color: var(--color-primary-hover);
}

#btn-voltar-topo.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

@media (max-width: 768px) {
    #navegacao-3d-container {
        flex-direction: row;
        top: auto;
        bottom: 20px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 120px;
        justify-content: space-between;
    }
}

#texto-painel-container {
    position: fixed;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 550px;
    z-index: 100;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    box-sizing: border-box;
}

.texto-informativo {
    opacity: 0;
    transform: translateY(30px);
    color: #f0f0f0;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.9), 0px 0px 3px rgba(0,0,0,1);
    position: absolute;
    width: 100%;
}

.texto-informativo h2 {
    margin-top: 0;
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 600;
}

.texto-informativo p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 0;
}

#click-to-start-container {
    position: fixed;
    z-index: 200;
    opacity: 1;
    margin: 0 -10px -10px 0;
    pointer-events: none;
    transform: translate(-10px, -17px);
}

#click-to-start-message {
    color: #ffffff;
    font-size: 0.9em;
    border-radius: 5px;
    text-align: center;
    white-space: nowrap;
}

.section-intro-text {
    font-size: 1.1rem;
    color: var(--text-color-secondary);
    line-height: 1.7;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* faq */

.faq-section {
    padding: 60px 0;
    background-color: var(--bg-color);
    color: var(--text-color-secondary);
}

.faq-section h1, .faq-section h2 {
    color: var(--color-primary, #E9B258);
    text-align: center;
    font-weight: 600;
}

.accordion-item {
    background-color: var(--bg-color-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
    border-radius: 8px;
}

.accordion-header button {
    background-color: transparent;
    color: var(--color-secondary, #D9D9D9);
    font-weight: 500;
    width: 100%;
    text-align: left;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.accordion-header button:not(.collapsed) {
    color: var(--color-primary, #E9B258);
    background-color: rgba(var(--color-primary-rgb, 233, 178, 88), 0.05);
    box-shadow: none;
}

.accordion-header button:focus {
    box-shadow: 0 0 0 0.25rem rgba(var(--color-primary-rgb, 233, 178, 88), 0.25);
    z-index: 3;
}

.accordion-header button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d9d9d9'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform .2s ease-in-out;
}

.accordion-header button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E9B258'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.accordion-body {
    padding: 1rem 1.25rem;
    color: var(--text-color-secondary, #ccc);
    font-size: 0.95rem;
    line-height: 1.6;
}

.popup-tour-customizado {
    background-color: var(--bg-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    margin: 14px -12px;
}

.shepherd-button:not(:disabled):hover {
    background-color: var(--color-primary-hover);
}

.shepherd-has-title .shepherd-content .shepherd-header {
    background-color: var(--bg-color);
    border-radius: 10px;
    padding: 1rem;
}

.shepherd-button {
    color: var(--bg-color);
    font-weight: 600;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.05) 5px 10px 30px, rgba(0, 0, 0, 0.1) 0px 10px 6px;
    border: none;
    text-align: center;    
}

.popup-tour-customizado .shepherd-arrow::before {
    background-color: var(--bg-color) !important;
}

.popup-tour-customizado .shepherd-title {
    color: var(--color-primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
}
.popup-tour-customizado .shepherd-cancel-icon {
    color: #bdc3c7;
    font-size: 1.5rem;
}
.popup-tour-customizado .shepherd-cancel-icon:hover {
    color: #ffffff;
}

.popup-tour-customizado .shepherd-text {
    color: #ecf0f1;
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.popup-tour-customizado .shepherd-footer {
    padding: 0 1.5rem 1.5rem;
    border-top: none;
}

.popup-tour-customizado .shepherd-arrow::before {
    background-color: var(--bg-color);
}

.dashboard-action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 30px 20px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dashboard-action-card:hover,
.dashboard-action-card:focus {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-primary);
    color: #fff;
}

.dashboard-action-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.dashboard-action-card .card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.dashboard-action-card .card-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.shepherd-modal-overlay-container {
    z-index: 1060 !important;
}

.shepherd-element {
    z-index: 1061 !important;
}

.dashboard-action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    height: 100%;
    aspect-ratio: 1 / 1;
}

@media (max-width: 1200px) {
    .footer-home {
        padding: 10% 10% 0 10%;
    }
    .mb-15 {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    #screensContainer {
        display: flex !important;
        grid-template-columns: none !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        justify-content: flex-start !important;
        gap: 15px !important;
        padding: 10px 0 30px 0 !important;
        -webkit-overflow-scrolling: touch; 
        scrollbar-width: none; 
    }

    #screensContainer::-webkit-scrollbar {
        display: none; 
    }

    #screensContainer .col {
        display: block !important;
        flex: 0 0 auto !important;         
        width: 85vw !important;
        max-width: 340px !important;
        margin: 0 !important;              
        padding: 0 !important;             
    }

    .card-default {
        height: 58vh !important;           
        min-height: 400px !important;
        max-height: 600px !important;
    }

    #screensContainer > :first-child {
        margin-left: 20px !important;
    }
    #screensContainer > :last-child {
        margin-right: 20px !important;
    }

    .vw-65 { width: 65vw !important; }
    .mt-mob { margin-top: 20px !important; }
    .pdx-10 { padding: 0 10px !important; }
    .me-2 { margin-right: 0 !important; }
    
    .play-screen i {
        margin: 0 !important;
        font-size: 1.2rem !important;
    }
    .register-container, .custom-card, .login-container, .profile-container, .terms-container, .card {
        padding: 1rem;
    }
    .btn-primary, .btn-facebook, .btn-danger, .btn-secondary {
        font-size: 0.9rem;
        padding: 10px;
    }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.1rem; }
    h1 { font-size: 2rem; }
    
    .modal-dialog {
        margin: 0.5rem auto;
        max-width: calc(100% - 20px);
    }
    .modal-content { border-radius: 10px; }
    .modal-title { font-size: 1.2rem; }
    .modal-body { padding: 1rem; }
    .modal-header, .modal-footer { padding: 1rem 1rem 0.5rem; }
    
    .btn { padding: 8px; font-size: 0.85rem; }
    
    .d-flex.justify-content-end {
        flex-direction: column;
        gap: 0.5rem;
    }
    .d-flex.justify-content-end .btn {
        margin: 0 !important;
        width: 100%;
    }
    
    .text-grant-terms { font-size: 2rem; }
    .text-semi-grant-terms { font-size: 1.3rem; }
    .text-paragrap-terms, li { font-size: 0.85rem; }
    
    .nav-pills {
        flex-wrap: wrap;
        gap: 8px;
        padding: 6px;
    }
    .nav-pills .nav-link {
        padding: 8px 16px;
        width: auto;
    }
    .screen-counter span { font-size: 1.3rem; }
    .screen-counter button { width: 36px; height: 36px; font-size: 1rem; }
    
    #planos-carousel-container {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 20px 10px;
    }
    #planos-carousel-container > .col-12 {
        flex: 0 0 auto;
        margin-right: 1rem;
    }
    #planos-carousel-container > .col-12:first-child {
        margin-left: 200px;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    .navbar { width: 97.5%; }
    .navbar .user-menu {
        width: 100%;
        right: 10px;
        left: 10px;
        min-width: unset;
    }
    .navbar .user-menu::before { right: 20px; }
    
    #text_filter { display: none; }
    
    .home-image {
        width: 100%;
        max-width: 310px;
    }
    .footer-home { padding: 30% 6% 0 6%; }
    
    #navbarContainer { padding: 10px 15px 0 15px !important; }
    .login-card { width: 90vw !important; margin: 0 !important; }
    .scroll-content { height: 4450px; }
}

.managed-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 0.75rem;
    z-index: 1002;
    display: flex;
    align-items: center;
    gap: 5px;
}

.list-group-item {
    background-color: var(--bg-color);
    border: none;
    border-bottom: 1px solid var(--color-primary-disabeld);
}

.list-group-item .input-group {
    margin-bottom: 0;
}

.table>:not(caption)>*>* {
    background-color: var(--bg-color-secondary) !important;
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-bg-type: var(--bg-color) !important;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white !important;
    border: none;
    border-radius: 30px;
}
.btn-instagram:hover {
    opacity: 0.9;
}

.public-gallery-container {
    max-width: 960px;
    margin: auto;
}

.card-default.empty { 
    background-color: transparent;
    border: 2px dashed #888;
    
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    aspect-ratio: 9 / 16;
    border-radius: 12px;
    padding: 20px;
}
.card-default.empty:hover {
    background-color: #333;
    border-color: #aaa;
}

.slot-empty-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #aaa;
    transition: all 0.2s;
}
.card-default.empty:hover .slot-empty-content {
    color: #ccc;
}

.slot-empty-content .icon {
    font-size: 2.5rem;
    font-weight: bold;
    color: #343434;
    background-color: #888;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px; 
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.card-default.empty:hover .slot-empty-content .icon {
    color: #343434;
    background-color: #aaa;
    transform: scale(1.05);
}

.slot-empty-content p {
    margin-top: 20px;
    font-size: 0.9rem;
    padding: 0 10px;
    line-height: 1.4;
}

.card-default input[type="file"],
.file-upload-input {
    display: none !important;
}

.slot-loading-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    z-index: 9;
    display: none;
    border-radius: 12px;
}

.card-default.expired-filled {
    position: relative;
}

.card-default.expired-filled .card-default-img-top {
    opacity: 0.5;
    filter: grayscale(80%);
}

.slot-expired-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    pointer-events: none;
}

.slot-expired-overlay i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.slot-expired-overlay span {
    font-size: 1rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.card-default.empty.expired .slot-empty-content {
    cursor: not-allowed;
    opacity: 0.5;
}

.card-default.empty.expired .slot-empty-content .text-danger {
    font-weight: bold;
}

.ig-card-container {
    display: flex;
    align-items: center;
    background-color: #333;
    border-radius: 12px;
    padding: 16px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #444;
}

.ig-card-picture {
    flex-shrink: 0;
    margin-right: 16px;
}

.ig-card-picture img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #555;
}

.ig-card-info {
    flex-grow: 1;
    text-align: left;
    color: #ffffff;
}

.ig-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
}

.ig-card-subtitle {
    font-size: 0.9rem;
    margin: 0 0 12px 0;
    color: #b0b0b0;
}

.mentions-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.mention-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: #2a2a2a; 
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.mention-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.1) 60%);
}

.mention-card-content {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 2;
}

.mention-card-content h6 {
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 4px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mention-card-content p {
  font-size: 0.75rem;
  margin-bottom: 10px;
  opacity: 0.8;
  color: #eee;
}

.mention-card-content .btn-import {
  width: 100%;
  padding: 8px;
  font-size: 0.8rem;
  
  background-color: #E6B34A;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  color: #222;
  cursor: pointer;
  transition: background-color 0.2s;
}

.mention-card-content .btn-import:hover {
  background-color: #f0c05a;
}

.custom-scroll::-webkit-scrollbar {
    width: 6px;
}
.custom-scroll::-webkit-scrollbar-track {
    background: #1a1a1a; 
}
.custom-scroll::-webkit-scrollbar-thumb {
    background: #444; 
    border-radius: 3px;
}
.custom-scroll::-webkit-scrollbar-thumb:hover {
    background: #555; 
}

.posts-list-container {
    height: 500px;
    overflow-y: auto;
    border-right: 1px solid #333;
    padding-right: 10px;
}

.post-item {
    background-color: #222;
    border: 1px solid #333;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: all 0.2s;
    color: #ccc;
    text-decoration: none;
    display: block;
    padding: 12px;
}

.post-item:hover {
    background-color: #2a2a2a;
    color: #fff;
}

.post-item.active {
    background-color: #2a2a2a;
    border-color: #E6B34A;
    border-left-width: 4px;
    color: #fff;
}

.post-date {
    font-size: 0.85rem;
    font-weight: bold;
    color: #E6B34A;
    margin-bottom: 4px;
}

.post-message {
    font-size: 0.8rem;
    color: #999;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.comments-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
    padding: 10px;
    height: 500px;
    overflow-y: auto;
}

.comment-card {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: #2a2a2a;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    border: 1px solid #333;
}

.comment-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.2) 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 12px;
}

.comment-user {
    font-size: 0.85rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.comment-text {
    font-size: 0.75rem;
    color: #ccc;
    margin-bottom: 8px;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-import-sm {
    width: 100%;
    padding: 6px;
    font-size: 0.75rem;
    background-color: var(--color-primary);
    border: none;
    border-radius: 4px;
    font-weight: bold;
    color: #1a1a1a;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-import-sm:hover {
    background-color: var(--color-primary-hover);
}

.modal-lg {
    max-width: 800px !important;
}

.ig-header-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    width: 45px; height: 45px; 
    border-radius: 12px; 
    display: flex; align-items: center; justify-content: center;
}
    
.ig-settings-card {
    background-color: var(--color-bg);
    border-radius: 12px;
    border: 1px solid #3d3d3d;
    overflow: hidden;
    position: relative;
}
    
.ig-settings-card-top-line {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, #bc1888 100%);
}

.status-badge {
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    background-color: rgba(230, 179, 74, 0.05);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
    
.status-dot {
    width: 8px; height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.action-box {
    background-color: var(--bg-color);
    border: 1px solid var(--color-muted);
    border-radius: 12px;
    transition: all 0.2s ease;
    text-align: left;
    width: 100%;
    color: #fff;
}
    
.action-box:hover {
    background-color: var(--color-muted);
    border-color: var(--color-primary);
}

.action-box-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    background-color: rgba(230, 179, 74, 0.1);
    color: var(--color-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
}

.setting-row {
    background-color: var(--bg-secondary);
    border: 1px solid var(--color-muted);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 12px;
}

#loading {
    display: flex;
    justify-content: center;
    padding: 2rem;
}