/*
Theme Name: NCIS Brasil
Version: 6.0 REORGANIZADO
*/

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0e27;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========== NAVBAR ========== */
.navbar {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.98) 0%, rgba(26, 31, 58, 0.98) 100%);
    backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 212, 255, 0.2);
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00d4ff 0%, #0077ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 3px;
    z-index: 1001;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: #00d4ff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    font-weight: 500;
    display: block;
    border-radius: 8px;
}

.nav-links a:hover {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

/* ========== SHOP FLOAT ========== */
.shop-float {
    position: fixed;
    top: 75px;
    right: 20px;
    background: linear-gradient(135deg, #00d4ff 0%, #0077ff 100%);
    color: #fff;
    padding: 0.8rem 1.4rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.shop-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.7);
}

.shop-icon {
    font-size: 1.3rem;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.6);
    cursor: pointer;
}

/* ========== HERO ========== */
.hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 60px;
    padding: 2rem 1rem 2rem;
    position: relative;
    background: linear-gradient(135deg, #0a0e27 0%, #1a2744 50%, #0a0e27 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-logo-wrapper {
    margin-bottom: 0.8rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.12);
    border: 2px solid rgba(0, 212, 255, 0.4);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    color: #00d4ff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #00d4ff 0%, #ffffff 50%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    letter-spacing: 8px;
}

.hero-underline {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    margin: 0.5rem auto;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

.hero-subtitle {
    font-size: 1rem;
    color: #b0b8c9;
    margin-bottom: 1.2rem;
}

.hero-scroll-indicator {
    display: none;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    background: linear-gradient(135deg, #00d4ff 0%, #0077ff 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6);
}

.btn-secondary {
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid #00d4ff;
    color: #00d4ff;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #0077ff 100%);
    color: #fff;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 20px;
    color: rgba(0, 212, 255, 0.5);
    font-size: 0.8rem;
}

.scroll-arrow {
    font-size: 1.2rem;
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ========== SECTIONS ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 1.2rem;
    color: #00d4ff;
    font-weight: 700;
}

/* ========== VÍDEOS ========== */
.videos-section {
    background: linear-gradient(135deg, #0a0e27 0%, #1a2744 100%);
    padding: 2rem 0;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.video-card {
    background: rgba(26, 31, 58, 0.5);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    transition: all 0.3s;
}

.video-card:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.2);
    color: #00d4ff;
}

.video-card h4 {
    color: #00d4ff;
    font-size: 1rem;
    padding: 1rem 1rem 0.5rem;
}

.video-card span {
    color: #7f8fa6;
    font-size: 0.85rem;
    padding: 0 1rem 1rem;
    display: block;
}

/* ========== NOTÍCIAS ========== */
.news-section {
    background: #0a0e27;
    padding: 2rem 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.news-card {
    background: rgba(26, 31, 58, 0.5);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-card:hover img {
    transform: scale(1.05);
}

.news-content {
    padding: 1.3rem;
}

.news-date {
    display: inline-block;
    color: #00d4ff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.6rem;
}

.news-content h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
}

.news-content p {
    color: #b0b8c9;
    font-size: 0.9rem;
}

/* ========== PERSONAGENS ========== */
.succession-section {
    padding: 2rem 0;
    background: #0a0e27;
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1.3rem;
}

.character-item {
    background: rgba(26, 31, 58, 0.5);
    border-radius: 12px;
    padding: 1.3rem;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
}

.character-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
}

.character-item.replaced {
    cursor: pointer;
    border-color: rgba(255, 165, 0, 0.3);
}

.replacement-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(255, 165, 0, 0.85);
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: bold;
}

.character-item.selected {
    background: rgba(255, 165, 0, 0.2);
    border-color: #ffa500;
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.5);
    transform: translateY(-8px) scale(1.05);
}

.character-item.successor-selected {
    background: rgba(0, 212, 255, 0.2);
    border-color: #00d4ff;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
    transform: translateY(-8px) scale(1.05);
}

.character-item img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00d4ff;
    margin-bottom: 0.9rem;
}

.character-item h4 {
    color: #00d4ff;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.character-item span {
    color: #b0b8c9;
    font-size: 0.8rem;
    display: block;
}

.character-item p {
    color: #7f8fa6;
    font-size: 0.72rem;
}

/* ========== SÉRIES ========== */
.series-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.3rem;
}

.series-item {
    background: rgba(26, 31, 58, 0.5);
    border-radius: 12px;
    padding: 1.3rem;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
    cursor: pointer;
}

.series-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
}

.series-item img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00d4ff;
    margin-bottom: 0.9rem;
}

.series-item h4 {
    color: #00d4ff;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.series-item span {
    color: #b0b8c9;
    font-size: 0.75rem;
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    position: absolute;
    top: 12px;
    right: 12px;
}

.status-dot.active {
    background: #00d4ff;
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.8);
}

.status-dot.ended {
    background: rgba(127, 143, 166, 0.5);
}

/* ========== LOJA COMPACTA ========== */
.shop-section {
    background: linear-gradient(135deg, #0a0e27 0%, #1a2744 100%);
    padding: 2rem 0;
}

.shop-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.filter-btn:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: #00d4ff;
}

.filter-btn.active {
    background: linear-gradient(135deg, #00d4ff 0%, #0077ff 100%);
    color: #fff;
    border-color: transparent;
}

.products-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.2rem;
}

.product-card-compact {
    background: rgba(26, 31, 58, 0.5);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.product-card-compact:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
}

.product-compact-image {
    position: relative;
    width: 100%;
    height: 140px;
    margin-bottom: 0.8rem;
    border-radius: 8px;
    overflow: hidden;
}

.product-compact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: #fff;
    padding: 0.25rem 0.6rem;
    border-radius: 15px;
    font-size: 0.65rem;
    font-weight: bold;
}

.product-card-compact h4 {
    color: #00d4ff;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.product-compact-price {
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
}

/* ========== MODALS ========== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: linear-gradient(135deg, #1a1f3a 0%, #14182e 100%);
    border-radius: 18px;
    padding: 2.3rem;
    max-width: 580px;
    width: 90%;
    border: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
    text-align: center;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 2.2rem;
    color: #00d4ff;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
}

.modal-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

.modal-content img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid #00d4ff;
    margin-bottom: 1.3rem;
    object-fit: cover;
}

.modal-content h3 {
    color: #00d4ff;
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
}

#modalYear {
    color: #7f8fa6;
    font-size: 0.95rem;
    margin-bottom: 0.9rem;
}

#modalDesc {
    color: #e0e6ed;
    font-size: 1rem;
    line-height: 1.7;
    padding: 1.3rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border-left: 4px solid #00d4ff;
    margin-top: 1.3rem;
    text-align: left;
}

.status-badge {
    display: inline-block;
    padding: 0.45rem 1.3rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: bold;
}

.status-badge.active {
    background: linear-gradient(135deg, #00d4ff 0%, #0077ff 100%);
    color: #fff;
}

.status-badge.ended {
    background: rgba(127, 143, 166, 0.3);
    color: #b0b8c9;
    border: 2px solid rgba(127, 143, 166, 0.5);
}

/* Modal Produto */
.product-modal {
    max-width: 700px;
}

.product-modal-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.product-modal-content img {
    width: 280px;
    height: 280px;
    border-radius: 12px;
}

.product-modal-info {
    flex: 1;
    text-align: left;
}

.product-modal-info h3 {
    text-align: left;
}

.product-modal-price {
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.2rem;
}

.product-modal-desc {
    color: #b0b8c9;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-modal-actions .btn {
    width: 100%;
    justify-content: center;
}

/* Modal Carrinho */
.cart-modal {
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
}

#cartItems {
    max-height: 400px;
    overflow-y: auto;
    margin: 1.5rem 0;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 212, 255, 0.1);
    flex-wrap: wrap;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-info {
    flex: 1;
    min-width: 150px;
}

.cart-item-info h4 {
    color: #00d4ff;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.cart-item-info p {
    color: #fff;
    font-weight: bold;
}

.partner-label {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: #fff;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: bold;
    margin-top: 0.3rem;
}

.btn-buy-external {
    background: linear-gradient(135deg, #00d4ff 0%, #0077ff 100%);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-buy-external:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.5);
}

.news-link {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 0.5rem;
    transition: all 0.3s;
}

.news-link:hover {
    color: #fff;
    transform: translateX(5px);
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(0, 212, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.cart-item-quantity button {
    background: #00d4ff;
    color: #fff;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
}

.cart-item-quantity span {
    color: #fff;
    font-weight: bold;
    min-width: 25px;
    text-align: center;
}

.cart-item-remove {
    background: rgba(255, 71, 87, 0.2);
    border: 2px solid rgba(255, 71, 87, 0.5);
    color: #ff4757;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
}

.cart-summary {
    margin-top: 1.5rem;
}

.cart-total {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.cart-total h4 {
    color: #00d4ff;
    font-size: 1.3rem;
}

.cart-actions {
    display: flex;
    gap: 1rem;
}

.cart-actions .btn {
    flex: 1;
    justify-content: center;
}

/* Modal Vídeo */
.video-modal {
    max-width: 900px;
    padding: 0;
    background: transparent;
    border: none;
}

.video-modal iframe {
    width: 100%;
    height: 500px;
    border-radius: 12px;
}

.video-modal .modal-close {
    background: rgba(0, 0, 0, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -50px;
    right: 0;
}

/* ========== QUIZ ========== */
.quiz-section {
    background: linear-gradient(135deg, #1a1f3a 0%, #0d1126 100%);
    padding: 2rem 0;
}

.quiz-container {
    max-width: 680px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.8rem;
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.quiz-question {
    font-size: 1.2rem;
    margin-bottom: 1.3rem;
    color: #00d4ff;
    font-weight: 600;
}

.quiz-options {
    display: grid;
    gap: 0.75rem;
}

.quiz-option {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.95rem 1.3rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.quiz-option:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
    transform: translateX(5px);
}

.quiz-result {
    margin-top: 1.3rem;
    padding: 1.3rem;
    border-radius: 12px;
    text-align: center;
    font-size: 1.05rem;
    display: none;
    font-weight: 600;
}

/* ========== NEWSLETTER ========== */
.newsletter-section {
    background: linear-gradient(135deg, #1a1f3a 0%, #0d1126 100%);
    padding: 2rem 0;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.9rem 1.3rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    color: #fff;
    font-size: 0.95rem;
}

.newsletter-input:focus {
    outline: none;
    border-color: #00d4ff;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(135deg, #0d1126 0%, #1a1f3a 100%);
    padding: 2rem 0 1rem;
    border-top: 2px solid rgba(0, 212, 255, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #00d4ff 0%, #0077ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.8rem;
    font-weight: 900;
    letter-spacing: 3px;
}

.footer-logo p {
    color: #b0b8c9;
    font-size: 0.95rem;
}

.footer-social h4 {
    color: #00d4ff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-btn.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #00a8e8 100%);
    color: #fff;
}

.social-btn.telegram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.5);
}

.social-btn.instagram {
    background: linear-gradient(135deg, #e1306c 0%, #fd1d1d 50%, #f77737 100%);
    color: #fff;
}

.social-btn.instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.5);
}

.social-icon {
    font-size: 1.3rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.footer-bottom p {
    color: #7f8fa6;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    font-size: 0.8rem !important;
    color: rgba(127, 143, 166, 0.7) !important;
}

/* ========== NOTIFICAÇÃO ========== */
.notification {
    position: fixed;
    top: 80px;
    right: -300px;
    background: linear-gradient(135deg, #00d4ff 0%, #0077ff 100%);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.5);
    z-index: 10000;
    transition: right 0.3s ease;
    font-weight: 600;
}

.notification.show {
    right: 20px;
}

/* ========== RESPONSIVO ========== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 60px);
        background: linear-gradient(135deg, rgba(10, 14, 39, 0.98) 0%, rgba(26, 31, 58, 0.98) 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 0.5rem;
        transition: right 0.4s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        padding: 1rem 1.2rem;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .hero {
        min-height: 65vh;
        padding: 1rem 1rem 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 5px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .shop-float {
        top: 68px;
        right: 12px;
        padding: 0.7rem 1.1rem;
    }
    
    .shop-content {
        display: none;
    }

    .characters-grid, .series-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
    }
    
    .modal-content {
        width: 93%;
        padding: 1.8rem 1.3rem;
    }
    
    .product-modal-content {
        flex-direction: column;
    }
    
    .product-modal-content img {
        width: 100%;
        height: 250px;
    }
    
    .video-modal iframe {
        height: 300px;
    }
    
    .videos-grid, .news-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid-compact {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }

    .footer {
        padding: 1.5rem 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.9rem;
    }
    
    .btn {
        padding: 0.75rem 1.4rem;
        font-size: 0.85rem;
    }
    
    .character-item img {
        width: 60px;
        height: 60px;
    }

    .series-item img {
        width: 68px;
        height: 68px;
    }

    .products-grid-compact {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        flex-wrap: wrap;
    }
    
    .cart-actions {
        flex-direction: column;
    }
    
    .video-modal iframe {
        height: 250px;
    }
}