/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(180deg, #0f0c29, #302b63, #24243e);
    color: #fff;
    overflow-x: hidden;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: rgba(15, 12, 41, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #00ff88;
}

.top-bar .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo h1 {
    font-size: 2.2rem;
    background: linear-gradient(90deg, #00ff88, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo .subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
    display: block;
    margin-top: -6px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #00ff88;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -4px;
    left: 0;
    background: #00ff88;
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 280px 1fr 280px;
    gap: 40px;
    align-items: start;
}

.side-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
    transition: transform 0.4s ease;
}

.side-image:hover {
    transform: scale(1.05);
}

.side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: #fff;
    padding: 20px 15px 15px;
    font-size: 1rem;
    text-align: center;
    font-style: italic;
}

.center-content {
    text-align: center;
    padding: 20px 0;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 16px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-text {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
    text-align: left;
}

.highlight-list {
    list-style: none;
    margin: 25px 0;
}

.highlight-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 1.1rem;
}

.cta-button {
    display: inline-block;
    background: #00ff88;
    color: #0f0c29;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.6);
}

/* ===== SEÇÃO SECUNDÁRIA ===== */
.secondary-section {
    background: #fff;
    color: #333;
    padding: 80px 20px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #0f0c29;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.8;
}

.memes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.meme-card {
    background: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.meme-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
}

.meme-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.meme-info {
    padding: 20px;
}

.meme-info h3 {
    color: #00cc66;
    margin-bottom: 8px;
}

/* ===== FOOTER ===== */
.main-footer {
    background: #0f0c29;
    padding: 50px 20px 30px;
    text-align: center;
    border-top: 3px solid #00ff88;
}

.main-footer p {
    margin-bottom: 15px;
}

.footer-small {
    font-size: 0.9rem;
    opacity: 0.6;
}

.footer-links {
    margin-top: 30px;
}

.footer-links a {
    color: #00ff88;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 500;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .side-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .nav-menu ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: #0f0c29;
        padding: 20px;
        gap: 15px;
    }
    
    .nav-menu.show ul {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
}
.side-image img {
    width: 100%;           /* ocupa toda a largura disponível */
    height: 520px;         /* altura fixa - você pode mudar esse número */
    object-fit: cover;     /* ESSA É A LINHA MAIS IMPORTANTE */
    object-position: center; /* centraliza a imagem */
}
/* ====================== ESTILOS DA PÁGINA DE REDES SOCIAIS ====================== */

.hero-redes {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 100px 20px 80px;
    text-align: center;
}

.hero-redes-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-redes-title {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-redes-subtitle {
    font-size: 1.35rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.hero-redes-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.25);
}

/* Seção de conteúdo */
.content-section {
    padding: 80px 20px;
    background: #fff;
    color: #333;
}

.text-block {
    max-width: 800px;
    margin: 0 auto 60px;
}

.text-block h2 {
    font-size: 2.1rem;
    margin-bottom: 20px;
    color: #0f0c29;
}

.custom-list {
    list-style: none;
}

.custom-list li {
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
}

/* Cards de estatísticas */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.stat-card {
    background: #f8f9fa;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-8px);
}

.stat-card h3 {
    font-size: 3rem;
    color: #00cc66;
    margin-bottom: 10px;
}

/* Grid de memes na página de redes */
.memes-redes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.meme-redes-card {
    background: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.meme-redes-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.meme-redes-card p {
    padding: 18px;
    font-size: 1.05rem;
    text-align: center;
    color: #333;
}
#OIP {
    height: 30%;
    width: 30%;
}
/* ====================== ESTILOS DA PÁGINA DE PASSIVOS ====================== */

.hero-passivos {
    background: rgba(15, 12, 41, 0.95)
    padding: 110px 20px 80px;
    text-align: center;
    color: white;
}

.hero-passivos-title {
    font-size: 3.4rem;
    margin-bottom: 16px;
}

.hero-passivos-subtitle {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Cards de Passivos */
.passivos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.passivo-card {
    background: #f8f9fa;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border-top: 5px solid #e74c3c;
}

.passivo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.15);
}

.passivo-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.passivo-card h3 {
    color: #2c1e3d;
    margin-bottom: 12px;
}
/* ====================== ESTILOS DA PÁGINA DE ATIVOS ====================== */

.hero-ativos {
    background: rgba(15, 12, 41, 0.95)
    padding: 110px 20px 80px;
    text-align: center;
    color: white;
}

.hero-ativos-title {
    font-size: 3.4rem;
    margin-bottom: 16px;
}

.hero-ativos-subtitle {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Cards de Ativos */
.ativos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.ativo-card {
    background: #f8f9fa;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border-top: 5px solid #00cc66;
}

.ativo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 204, 102, 0.15);
}

.ativo-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.ativo-card h3 {
    color: #0f4c3a;
    margin-bottom: 12px;
}
/* ====================== PÁGINA DE CRÉDITOS ====================== */

.creditos-hero {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 120px 20px 80px;
    text-align: center;
    color: white;
}

.creditos-title {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.creditos-subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
}

.creditos-section {
    padding: 60px 20px;
    background: #fff;
    color: #333;
}

.creditos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.creditos-grupo h2 {
    color: #0f0c29;
    margin-bottom: 20px;
    border-bottom: 3px solid #00ff88;
    padding-bottom: 10px;
    display: inline-block;
}

.creditos-grupo ul {
    list-style: none;
    line-height: 2.1;
    font-size: 1.1rem;
}

.creditos-grupo li {
    margin-bottom: 8px;
}

.creditos-final {
    text-align: center;
    margin-top: 80px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}
