/* ============================================
   RESET E CONFIGURAÇÕES GERAIS
   ============================================ */

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

body {
    font-family: 'proxima-nova', 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    font-weight: 600;
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-container {
    width: 100%;
    max-width: 1669px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #1a1a1a;
    transition: all 0.3s ease;
}

.logo img {
    height: 55px;
    width: auto;
}

.logo .logo-desktop {
    display: block;
}

.logo .logo-mobile {
    display: none;
    height: 45px;
    width: auto;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 35px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.header-nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.header-nav a:hover {
    opacity: 0.6;
}

.user-icon {
    color: #1a1a1a;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.user-icon:hover {
    opacity: 0.6;
}

@media (max-width: 900px) {
    .header-nav { display: none; }
    .header-container { padding: 0 20px; }
    .logo .logo-desktop { display: none; }
    .logo .logo-mobile { display: block; height: 50px; }
}

@media (max-width: 480px) {
    .site-header { height: 65px; }
    .logo .logo-mobile { height: 45px; }
}

/* ============================================
   MENU LATERAL PRINCIPAL (ESTILO ELEVATION)
   ============================================ */

.side-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 1000;
    transition: left 0.3s ease;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
}

.side-menu.open { left: 0; }

.menu-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 20px;
    border-bottom: 1px solid #eee;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: #1a1a1a;
}

.menu-content {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 20px;
}

.menu-list {
    list-style: none;
    padding: 20px 0;
    margin: 0;
    border-bottom: 1px solid #eee;
}

.menu-list li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    padding: 18px 30px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.menu-list li a:hover,
.menu-list li a.active {
    background: #f5f5f5;
}

.menu-list li a svg { opacity: 0.7; }

/* Menu Sections (About, etc) */
.menu-section {
    padding: 20px 30px;
}

.menu-section-title {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.menu-section-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-section-list li a {
    display: block;
    padding: 10px 0;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.menu-section-list li a:hover {
    opacity: 0.6;
}

/* Portal Box (MyElevation Style) */
.menu-portal-box {
    margin: 10px 20px 20px;
    padding: 24px;
    background: #f9f9f9;
    border-radius: 12px;
}

.menu-portal-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.menu-portal-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 8px;
}

.menu-portal-box .portal-description {
    font-size: 13px;
    color: #888;
    margin-bottom: 16px;
}

.portal-btn {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #ffffff;
    border: 2px solid #1a1a1a;
    border-radius: 50px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.portal-btn:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.portal-btn svg {
    width: 14px;
    height: 14px;
}

/* Menu Footer (Inside Hamburger Menu) */
.menu-footer {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 24px 30px;
    border-top: 1px solid #eee;
    background: #ffffff;
    margin-top: auto;
}

.menu-footer-logo {
    margin-bottom: 16px;
}

.menu-footer-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.menu-footer-address,
.menu-footer-phone {
    margin-bottom: 4px;
}

.menu-footer-address p,
.menu-footer-phone p {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.menu-footer-copyright {
    margin-top: 16px;
    margin-bottom: 8px;
}

.menu-footer-copyright p {
    font-size: 12px;
    color: #999;
    margin: 0;
}

.menu-footer-social {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.menu-footer-social a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f5f5f5;
    border-radius: 50%;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.menu-footer-social a:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.menu-footer-social a svg {
    width: 18px;
    height: 18px;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   PAINEL DE FILTROS LATERAL (ESTILO ELEVATION)
   ============================================ */

.filters-panel {
    position: fixed;
    top: 0;
    left: -400px;
    width: 400px;
    max-width: 90vw;
    height: 100%;
    background: #ffffff;
    z-index: 1001;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.filters-panel.open { left: 0; }

.filters-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    border-bottom: 1px solid #e5e5e5;
    flex-shrink: 0;
}

.filters-panel-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.filters-panel-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #666;
    border-radius: 50%;
    transition: all 0.2s;
}

.filters-panel-close:hover {
    background: #f0f0f0;
    color: #1a1a1a;
}

.filters-panel-content {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.filter-section {
    border-bottom: 1px solid #e5e5e5;
    padding: 24px 28px;
}

.filter-section:last-child { border-bottom: none; }

.filter-section-title {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Custom Checkbox Style */
.filter-checkbox {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s;
    position: relative;
}

.filter-checkbox:hover { background: #f5f5f5; }

.filter-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.filter-checkbox .checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid #d0d0d0;
    border-radius: 6px;
    margin-right: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.filter-checkbox input:checked ~ .checkmark {
    background: #1a1a1a;
    border-color: #1a1a1a;
}

.filter-checkbox .checkmark::after {
    content: '';
    display: none;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.filter-checkbox input:checked ~ .checkmark::after { display: block; }

.filter-checkbox .filter-label {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 400;
}

/* Filters Panel Footer */
.filters-panel-footer {
    display: flex;
    gap: 12px;
    padding: 20px 28px;
    border-top: 1px solid #e5e5e5;
    background: #fff;
    flex-shrink: 0;
}

.btn-clear-filters {
    flex: 1;
    padding: 14px 20px;
    background: #f5f5f5;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-clear-filters:hover {
    background: #e5e5e5;
    color: #1a1a1a;
}

.btn-apply-filters {
    flex: 1;
    padding: 14px 20px;
    background: #1a1a1a;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-apply-filters:hover {
    background: #333;
    transform: translateY(-1px);
}

.filters-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.filters-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   HERO BANNER
   ============================================ */

.hero-banner-wrapper {
    width: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    margin-top: 80px;
}

.hero-banner {
    position: relative;
    width: 100%;
    max-width: 1669px;
    margin: 0 auto;
    aspect-ratio: 1669 / 661;
    overflow: hidden;
    background: #000000;
}

@supports not (aspect-ratio: 1669 / 661) {
    .hero-banner {
        height: 0;
        padding-bottom: 39.6%;
    }
}

@media (max-width: 480px) {
    .hero-banner { aspect-ratio: 16 / 9; }
    @supports not (aspect-ratio: 16 / 9) {
        .hero-banner { padding-bottom: 56.25%; }
    }
}

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

.hero-img-desktop {
    display: block;
}

.hero-img-mobile {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
}

.hero-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    max-width: 500px;
    color: #ffffff;
    z-index: 2;
}

.hero-title {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.25em;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-pastor {
    font-size: 1em;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.hero-subtitle {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    margin-bottom: 20px;
}

.watch-sermon-btn {
    background: #ffffff;
    color: #1a1a1a;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.watch-sermon-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.watch-full-link {
    display: none;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.watch-full-link:hover {
    opacity: 0.8;
}

.watch-full-link svg {
    transition: transform 0.3s ease;
}

.watch-full-link:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .hero-banner-wrapper { margin-top: 65px; }
    .hero-banner { 
        aspect-ratio: auto;
        height: 75vh;
        max-height: 600px;
    }
    .hero-img-desktop {
        display: none;
    }
    .hero-img-mobile {
        display: block;
        object-position: center center;
    }
    .hero-overlay {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 35%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0) 100%);
    }
    .hero-content {
        bottom: 30px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 90%;
        max-width: 90%;
        text-align: center;
    }
    .hero-title { 
        font-size: 0.75em; 
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .hero-pastor { 
        font-size: 1em; 
        margin-bottom: 4px;
        font-weight: 600;
    }
    .hero-subtitle { 
        font-size: 0.85em; 
        margin-bottom: 20px;
        opacity: 0.9;
    }
    .hero-buttons {
        align-items: center;
        width: 100%;
    }
    .watch-sermon-btn { 
        padding: 16px 50px; 
        font-size: 15px;
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .hero-banner { 
        height: 70vh;
        max-height: 550px;
    }
    .hero-content { 
        bottom: 25px; 
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: none;
    }
    .hero-title { font-size: 0.65em; letter-spacing: 1px; }
    .hero-pastor { font-size: 0.95em; }
    .hero-subtitle { font-size: 0.8em; margin-bottom: 18px; }
    .watch-sermon-btn { 
        padding: 14px 30px; 
        font-size: 14px;
        width: 100%;
        max-width: 280px;
    }
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
    background: #ffffff;
    padding: 50px 0 20px;
}

.page-header .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.page-header h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.page-header p {
    font-size: 0.95em;
    color: #666666;
    max-width: 700px;
    line-height: 1.5;
}

/* ============================================
   CONTAINER PRINCIPAL
   ============================================ */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px 50px;
    background-color: #ffffff;
}

/* ============================================
   BARRA DE BUSCA E BOTÃO DE FILTROS
   ============================================ */

.search-filter-container {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: center;
}

.search-wrapper {
    position: relative;
    width: 280px;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #999999;
}

.search-input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-size: 15px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.search-input::placeholder { color: #999999; }

/* Botão de Filtros com Contador */
.filters-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.filters-btn:hover {
    background: #e8e8e8;
}

.filters-btn.has-filters {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

.filter-count {
    display: none;
    background: #e94560;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    padding: 0 6px;
    line-height: 20px;
    text-align: center;
}

.filter-count.show { display: inline-block; }

/* Results Count */
.results-count {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
}

.results-count span { font-weight: 600; color: #1a1a1a; }

/* ============================================
   VIDEO GRID
   ============================================ */

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.video-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    background: #f0f0f0;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.play-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-left: 18px solid white;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

.video-card:hover .play-icon { opacity: 1; }

.video-info { padding: 20px; }

.video-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.video-title {
    font-size: 1.15em;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-description {
    font-size: 0.9em;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-date {
    font-size: 0.85em;
    color: #999999;
}

/* ============================================
   MODAL DE VÍDEO
   ============================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow-y: auto;
}

.modal-content {
    position: relative;
    background-color: #0a0a0a;
    margin: 0 auto;
    max-width: 1200px;
    min-height: 100%;
    animation: modalFadeIn 0.3s ease;
}

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

.close-modal {
    position: fixed;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    z-index: 2001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.close-modal:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.5);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-info {
    padding: 40px 60px 50px;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
}

.modal-video-title {
    font-size: 1.6em;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.modal-video-pastor {
    font-size: 1em;
    color: #cccccc;
    margin-bottom: 6px;
    font-weight: 400;
}

.modal-video-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9em;
    color: #888888;
    margin-bottom: 24px;
}

.modal-video-date svg { opacity: 0.7; }

.modal-video-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.modal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.modal-btn-primary {
    background: #ffffff;
    color: #1a1a1a;
}

.modal-btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.modal-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.modal-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Share Dropdown */
.share-dropdown-container {
    position: relative;
    display: inline-block;
}

.share-dropdown {
    position: absolute;
    bottom: 100%;
    left: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1010;
    margin-bottom: 10px;
}

.share-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-dropdown::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #ffffff;
}

.share-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.share-option:hover { background: #f5f5f5; }
.share-option svg { flex-shrink: 0; }

@media (max-width: 480px) {
    .share-dropdown {
        position: fixed;
        bottom: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.9);
        min-width: 280px;
        margin-bottom: 0;
    }
    .share-dropdown.show { transform: translate(-50%, -50%) scale(1); }
    .share-dropdown::after { display: none; }
}

.modal-video-description {
    font-size: 0.95em;
    color: #cccccc;
    line-height: 1.7;
    max-width: 800px;
    margin-top: 5px;
}

/* Next Step Section */
.next-step-section {
    padding: 40px 40px 60px;
    text-align: center;
    margin-top: 20px;
}

.next-step-title {
    font-size: 2em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.next-step-subtitle {
    font-size: 1em;
    color: #999999;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.next-step-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.next-step-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #333333;
}

.next-step-card:hover {
    background: #222222;
    border-color: #444444;
    transform: translateY(-3px);
}

.next-step-card h4 {
    font-size: 1.2em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.next-step-card p {
    font-size: 0.9em;
    color: #999999;
    line-height: 1.6;
    margin-bottom: 15px;
}

.next-step-card .card-link {
    font-size: 0.9em;
    color: #ffffff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.next-step-card .card-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.next-step-card:hover .card-link::after { transform: translateX(5px); }

/* ============================================
   LOADING E MENSAGENS
   ============================================ */

.loading {
    text-align: center;
    padding: 60px 20px;
    color: #999999;
    grid-column: 1 / -1;
}

.loading::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    border: 4px solid #e0e0e0;
    border-top-color: #1a1a1a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.no-results {
    text-align: center;
    padding: 80px 20px;
    grid-column: 1 / -1;
}

.no-results h3 {
    color: #1a1a1a;
    font-size: 1.8em;
    margin-bottom: 12px;
    font-weight: 700;
}

.no-results p {
    color: #666666;
    font-size: 1.1em;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 768px) {
    .page-header h2 { font-size: 1.8em; }
    .page-header p { font-size: 0.95em; }
    .page-header .container { padding: 0 20px; }
    
    .search-filter-container { flex-direction: column; }
    .search-wrapper { width: 100%; max-width: 100%; }
    .filters-btn { width: 100%; justify-content: center; }
    
    .video-grid { grid-template-columns: 1fr; }
    
    .modal-content { margin: 0; padding: 0; }
    .video-modal-info { padding: 30px 20px 40px; }
    
    .video-info { padding: 20px; }
    .video-title { font-size: 1.2em; }
    
    .container { padding: 30px 20px; }
    
    .next-step-section { padding: 40px 20px; }
    .next-step-title { font-size: 1.5em; }
    .next-step-cards { grid-template-columns: 1fr; }
    
    .filters-panel { width: 100%; max-width: 100%; left: -100%; }
}

@media (max-width: 480px) {
    .page-header h2 { font-size: 1.6em; }
    .page-header p { font-size: 0.9em; }
    
    .container { padding: 25px 15px; }
    .video-grid { gap: 20px; }
    
    .modal-content { padding: 0; }
    .video-modal-info { padding: 20px; }
    .modal-video-title { font-size: 1.2em; }
    .modal-video-buttons { flex-direction: column; }
    .modal-btn { width: 100%; justify-content: center; }
}

/* Old footer removed - now inside hamburger menu */
