/* Reset básico e tipografia */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #121212;
    color: #f0f0f0;
    line-height: 1.6;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #1e1e1e;
    border-bottom: 1px solid #333;
}

.logo {
    font-size: 26px;
    font-weight: 300; /* Mais fino para um ar moderno */
    letter-spacing: -1px;
    color: #fff;
}

.p-destaque {
    font-weight: 800;
    color: #fff;
}

.ia-destaque {
    font-weight: 800;
    color: #00d2ff; /* O azul que destaca a tecnologia */
    margin-left: 2px;
}

.search-bar input {
    padding: 10px;
    width: 300px;
    border: none;
    border-radius: 4px 0 0 4px;
    background-color: #2a2a2a;
    color: #fff;
}

.search-bar button {
    padding: 10px 20px;
    border: none;
    background-color: #00d2ff;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
}

.generator-container {
    background: #1e1e1e;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #333;
    max-width: 600px;
    margin: 20px auto;
}

.input-group { margin-bottom: 15px; text-align: left; }

.input-group label { display: block; color: #00d2ff; margin-bottom: 5px; font-weight: bold; }

.input-group input, .input-group select {
    width: 100%;
    padding: 10px;
    background: #2a2a2a;
    border: 1px solid #444;
    color: #fff;
    border-radius: 5px;
}

.btn-generate {
    background: linear-gradient(45deg, #00d2ff, #0072ff);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
}

.result-box {
    margin-top: 20px;
    padding: 15px;
    background: #121212;
    border-left: 4px solid #00ff88;
    color: #ccc;
    font-style: italic;
    text-align: left;
}

.copy-btn-gen {
    margin-top: 10px;
    background: #333;
    color: #00ff88;
    border: 1px solid #00ff88;
    padding: 5px 15px;
    cursor: pointer;
    border-radius: 4px;
}

.prompt-section { padding: 40px 5%; max-width: 1200px; margin: auto; }
.section-header { text-align: center; margin-bottom: 40px; }
.prompt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }

.prompt-card { 
    background: #1e1e1e; 
    padding: 20px; 
    border-radius: 10px; 
    border: 1px solid #333; 
    transition: 0.3s;
}
.prompt-card:hover { border-color: #00d2ff; transform: translateY(-5px); }

.card-tag { 
    display: inline-block; 
    font-size: 10px; 
    background: #00d2ff; 
    color: #000; 
    padding: 2px 8px; 
    border-radius: 4px; 
    font-weight: bold; 
    text-transform: uppercase;
}

.prompt-content { 
    font-size: 0.9rem; 
    color: #888; 
    margin: 15px 0; 
    font-style: italic; 
    line-height: 1.5;
}

.copy-button {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid #00d2ff;
    color: #00d2ff;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}
.copy-button:hover { background: #00d2ff; color: #000; }

.how-to-use {
    padding: 60px 5%;
    background: #121212;
    text-align: center;
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.step-card {
    background: #1e1e1e;
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid #333;
    position: relative;
    transition: 0.3s;
}

.step-card:hover {
    border-color: #00d2ff;
    transform: translateY(-10px);
}

.step-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(0, 210, 255, 0.1); /* Número de fundo transparente */
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.step-card h3 {
    color: #1C1C1C;
    margin-bottom: 15px;
    font-size: 1.4rem;
    position: relative;
}

.step-card p {
    color: #aaa;
    line-height: 1.6;
    font-size: 1rem;
}

.step-card strong {
    color: #fff;
}

.lazy-load {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.lazy-load.fade-in {
    opacity: 1;
}

/* Estilo para o container enquanto não carrega */
.card-image-example {
    background: #1a1a1a; /* Cor de fundo escura */
    min-height: 200px;
}

.card-image-example {
    background: #1a1a1a; /* Cor de fundo enquanto carrega */
    position: relative;
    overflow: hidden;
    min-height: 225px;
}

.lazy-load {
    opacity: 0;
    transition: opacity 1s ease-in;
    display: block;
    width: 100%;
    height: auto;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Shimmer Effect (Opcional: aquele efeito de brilho passando enquanto carrega) */
.card-image-example::before {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% { left: 100%; }
}

.lazy-load.loaded + .image-overlay-tag {
    z-index: 2; /* Garante que a tag apareça após a imagem */
}

/* Estilo específico para Cards de Restauração */
.restoration-card {
    padding: 0; /* Remove o padding padrão para a imagem encostar nas bordas */
    overflow: hidden; /* Garante que a imagem não saia das bordas arredondadas */
    display: flex;
    flex-direction: column;
}

.card-image-example {
    position: relative;
    width: 100%;
    height: 200px; /* Altura fixa para o quadro da imagem */
    background: #0a0a0a; /* Fundo escuro para enquanto a imagem carrega */
}

.card-image-example img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz a imagem preencher o quadro sem distorcer */
    border-bottom: 1px solid #333;
}

.image-overlay-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
    border: 1px solid #444;
}

/* Padding de volta para o conteúdo do texto */
.restoration-card .card-content {
    padding: 20px;
}

/* Tags coloridas para identificação rápida */
.tag-color { background-color: #ff9800; color: #000; } /* Laranja */
.tag-restore { background-color: #2196f3; color: #fff; } /* Azul */
.tag-clean { background-color: #4caf50; color: #fff; } /* Verde */
.tag-upscale { background-color: #9c27b0; color: #fff; } /* Roxo */
.tag-light { background-color: #ffeb3b; color: #000; } /* Amarelo */
.tag-studio { background-color: #795548; color: #fff; } /* Marrom */
.tag-family { background-color: #e91e63; color: #fff; } /* Rosa */
.tag-texture { background-color: #607d8b; color: #fff; } /* Cinza */
.tag-wedding { background-color: #00bcd4; color: #fff; } /* Ciano */
.tag-modern { background-color: #00e676; color: #000; } /* Verde Neon */
.tag-music { background-color: #ff5722; color: #fff; } /* Laranja Vibrante */
.tag-biz { background-color: #3f51b5; color: #fff; }   /* Indigo */
.tag-art { background-color: #673ab7; color: #fff; }   /* Roxo Profundo */
.tag-funny { background-color: #ffeb3b; color: #000; } /* Amarelo Sol */
.tag-legacy { background-color: #795548; color: #fff; }/* Sépia/Marrom */
.tag-otaku { background-color: #e91e63; color: #fff; } /* Rosa Shocking */
.tag-stone { background-color: #9e9e9e; color: #fff; } /* Cinza Pedra */
.tag-neon { background-color: #00e5ff; color: #000; }  /* Ciano Neon */
.tag-xmas { background-color: #f44336; color: #fff; }  /* Vermelho Natal */
.tag-social { background-color: #4caf50; color: #fff; }/* Verde Social */
.tag-sky { background-color: #ffc107; color: #000; }   /* Amarelo Sol */
.tag-flower { background-color: #e91e63; color: #fff; }/* Rosa */
.tag-city { background-color: #3f51b5; color: #fff; }  /* Azul Urbano */
.tag-build { background-color: #ff5722; color: #fff; } /* Laranja Obra */
.tag-stars { background-color: #673ab7; color: #fff; } /* Roxo Espacial */
.tag-forest { background-color: #4caf50; color: #fff; }/* Verde */
.tag-storm { background-color: #607d8b; color: #fff; } /* Cinza Tempestade */
.tag-sea { background-color: #03a9f4; color: #fff; }   /* Azul Mar */
.tag-ice { background-color: #e3f2fd; color: #0d47a1; }/* Azul Gelo */
.tag-paint { background-color: #9c27b0; color: #fff; } /* Púrpura */
.tag-cyber { background-color: #00d2ff; color: #000; } /* Azul Neon */
.tag-sky { background-color: #3f51b5; color: #fff; }   /* Indigo */
.tag-tech { background-color: #4caf50; color: #fff; }  /* Verde Social */
.tag-car { background-color: #ff5722; color: #fff; }   /* Laranja Veículo */
.tag-vfx { background-color: #ffc107; color: #000; }   /* Amarelo Ouro */
.tag-wall { background-color: #9e9e9e; color: #fff; }  /* Cinza Pedra */
.tag-3d { background-color: #9c27b0; color: #fff; }   /* Púrpura */
.tag-ui { background-color: #e91e63; color: #fff; }   /* Rosa Shocking */
.tag-smoke { background-color: #607d8b; color: #fff; } /* Cinza Tempestade */
.tag-water { background-color: #03a9f4; color: #fff; } /* Azul Mar */
.tag-snow { background-color: #e3f2fd; color: #0d47a1; } /* Azul Gelo */
.tag-rain { background-color: #4caf50; color: #fff; }    /* Verde Floresta */
.tag-beach { background-color: #ffeb3b; color: #000; }   /* Amarelo Paraíso */
.tag-sand { background-color: #ff9800; color: #000; }    /* Laranja Deserto */
.tag-sky { background-color: #00e5ff; color: #000; }     /* Ciano Aurora */
.tag-ice { background-color: #90caf9; color: #000; }     /* Azul Ártico */
.tag-flower { background-color: #e91e63; color: #fff; }  /* Rosa Vibrante */
.tag-fire { background-color: #ff5722; color: #fff; }    /* Vermelho Lava */
.tag-river { background-color: #03a9f4; color: #fff; }   /* Azul Rio */
.tag-volcano { background-color: #795548; color: #fff; } /* Marrom Vulcão */
.tag-sequoia { background-color: #8d6e63; color: #fff; } /* Marrom Tronco */
.tag-coral { background-color: #ff4081; color: #fff; }   /* Rosa Coral */
.tag-arch { font-weight: bold; border-radius: 4px; padding: 2px 8px; font-size: 0.8rem; }
.tag-arch.Industrial { background-color: #455a64; color: #fff; }
.tag-arch.Japandi { background-color: #d7ccc8; color: #5d4037; }
.tag-arch.Moderno { background-color: #1976d2; color: #fff; }
.tag-arch.Nordic { background-color: #f5f5f5; color: #333; border: 1px solid #ddd; }
.tag-arch.Classic { background-color: #ffc107; color: #000; }
.tag-arch.Brutalista { background-color: #9e9e9e; color: #fff; }
.tag-arch.Futurista { background-color: #00bcd4; color: #fff; }
.tag-arch.Regional { background-color: #8bc34a; color: #fff; }
.tag-animal-wild { background-color: #5d4037; color: #fff; } /* Marrom Terra */
.tag-animal-color { background-color: #ffc107; color: #000; } /* Amarelo Vibrante */
.tag-animal-cold { background-color: #bbdefb; color: #0d47a1; } /* Azul Neve */
.tag-animal-water { background-color: #009688; color: #fff; } /* Verde Marinho */
.tag-animal-pet { background-color: #f06292; color: #fff; } /* Rosa Pet */
.tag-veh-sport { background-color: #d32f2f; color: #fff; } /* Vermelho Esporte */
.tag-veh-truck { background-color: #f57c00; color: #fff; } /* Laranja Aventura */
.tag-veh-moto { background-color: #fbc02d; color: #000; }  /* Amarelo Liberdade */
.tag-veh-train { background-color: #1976d2; color: #fff; } /* Azul Tecnologia */
.tag-veh-plane { background-color: #90caf9; color: #000; } /* Azul Céu Viagem */
.tag-veh-classic { background-color: #8d6e63; color: #fff; } /* Marrom Nostalgia */
.tag-veh-naut { background-color: #0097a7; color: #fff; }  /* Ciano Náutico */
.tag-veh-track { background-color: #388e3c; color: #fff; }  /* Verde Pista */
.tag-veh-concept { background-color: #9c27b0; color: #fff; } /* Roxo Conceito futurista */
.tag-art-history { background-color: #795548; color: #fff; } /* Marrom História */
.tag-art-modern { background-color: #e91e63; color: #fff; }  /* Rosa Moderno */
.tag-art-digital { background-color: #00bcd4; color: #000; }  /* Ciano Digital */
.tag-art-technique { background-color: #ff9800; color: #000; } /* Laranja Técnica */
.tag-art-urban { background-color: #333; color: #fff; }     /* Preto Rua */
.tag-food-meat { background-color: #d32f2f; color: #fff; } /* Vermelho Suculento */
.tag-food-carb { background-color: #fbc02d; color: #000; }  /* Amarelo Conforto */
.tag-food-fish { background-color: #0288d1; color: #fff; }  /* Azul Fresco */
.tag-food-sweet { background-color: #ec407a; color: #fff; } /* Rosa Doce */
.tag-food-veg { background-color: #388e3c; color: #fff; }    /* Verde Fresco */
.tag-fashion-lux { background-color: #1a1a1a; color: #fff; } /* Preto Luxo */
.tag-fashion-street { background-color: #ff5722; color: #fff; } /* Laranja Urbano */
.tag-fashion-retro { background-color: #8e24aa; color: #fff; } /* Roxo Retro */
.tag-fashion-boho { background-color: #4caf50; color: #fff; } /* Verde Orgânico */
.tag-fashion-beach { background-color: #03a9f4; color: #fff; } /* Azul Praia */
.tag-tech-infra { background-color: #0d47a1; color: #fff; } /* Azul Marinho Profundo */
.tag-tech-biz { background-color: #00838f; color: #fff; }   /* Ciano Escuro */
.tag-tech-code { background-color: #263238; color: #fff; }  /* Cinza Metálico */
.tag-video-anim { background-color: #6200ea; color: #fff; } /* Roxo Intenso */
.tag-video-prod { background-color: #2979ff; color: #fff; } /* Azul Cinema */
.tag-photo-edit { background-color: #ff4081; color: #fff; } /* Rosa Vibrante */
.tag-home-nature { background-color: #2e7d32; color: #fff; }
.tag-home-tech   { background-color: #1565c0; color: #fff; }
.tag-home-fashion{ background-color: #c2185b; color: #fff; }
.tag-home-auto   { background-color: #37474f; color: #fff; }
.tag-home-food   { background-color: #ef6c00; color: #fff; }
.tag-home-arch   { background-color: #5d4037; color: #fff; }
.tag-home-art    { background-color: #7b1fa2; color: #fff; }
.tag-home-people { background-color: #f4511e; color: #fff; }
.tag-home-biz    { background-color: #00838f; color: #fff; }

/* Navegação de Categorias */
.categories {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding: 30px 5%;
    flex-wrap: wrap;
}

.categories button {
    padding: 8px 16px;
    border: 1px solid #444;
    background-color: transparent;
    color: #fff;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.categories button.active, .categories button:hover {
    background-color: #00d2ff;
    color: #000;
    border-color: #00d2ff;
}

.prompt-card.no-image {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 5px solid #00695c; /* Cor da categoria Produtividade */
    background: #f9f9f9;
}

.prompt-card.no-image h3 {
    margin-top: 10px;
    color: #1C1C1C;
}

/* Layout em duas colunas */
.container-layout {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 5%;
    gap: 30px;
}

/* Sidebar */
.sidebar {
    flex: 0 0 250px; /* Largura fixa da barra lateral */
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.sidebar h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #1C1C1C;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.submenu {
    list-style: none;
}

.submenu li {
    margin-bottom: 12px;
}

.submenu a {
    text-decoration: none;
    color: #bbb;
    font-size: 15px;
    transition: color 0.2s;
    display: block;
}

.submenu a:hover, .submenu a.active {
    color: #00d2ff;
    padding-left: 5px;
}

/* Área de Conteúdo Principal */
.main-content {
    flex: 1;
}

.category-header {
    margin-bottom: 30px;
}

.category-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.category-header p {
    color: #888;
}

/* Configuração do Banner Hero Geral */
.hero-banner-general {
    position: relative;
    width: 100%;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #0a0a0a url('https://images.unsplash.com/photo-1677442136019-21780ecad995?ixlib=rb-4.0.3&auto=format&fit=crop&w=1400&q=80'); /* Imagem abstrata de IA */
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    margin-bottom: 40px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.6) 0%, rgba(18, 18, 18, 1) 100%);
}

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

.hero-tag {
    background: rgba(0, 210, 255, 0.1);
    color: #00d2ff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    border: 1px solid #00d2ff;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.highlight-alt {
    background: linear-gradient(90deg, #00d2ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.3rem;
    color: #aaa;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Estatísticas rápidas */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item strong {
    display: block;
    font-size: 1.8rem;
    color: #fff;
}

.stat-item span {
    color: #666;
    font-size: 0.9rem;
}

/* Botões */
.btn-main {
    background: linear-gradient(45deg, #00d2ff, #0072ff);
    color: #fff;
    padding: 18px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-outline {
    background: transparent;
    color: #fff;
    padding: 18px 35px;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #444;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-main:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3); }
.btn-outline:hover { background: #fff; color: #000; }

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .hero-stats { gap: 20px; }
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2rem; }
    .hero-banner { min-height: 350px; }
}

/* Estilização do Rodapé */
.main-footer {
    background-color: #1a1a1a;
    padding: 60px 5% 20px;
    border-top: 1px solid #333;
    margin-top: 50px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column h3 {
    color: #00d2ff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column p {
    color: #888;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul a:hover {
    color: #00d2ff;
}

/* Ícones de Redes Sociais */
.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    transition: transform 0.3s, background 0.3s;
    background: #333;
}

.social-icon.yt:hover { background: #ff0000; transform: translateY(-3px); }
.social-icon.tt:hover { background: #010101; transform: translateY(-3px); }
.social-icon.ig:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); transform: translateY(-3px); }

.icon-text {
    font-size: 0.8rem;
}

/* Faixa Final */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #222;
    color: #555;
    font-size: 0.9rem;
}

/* Ajuste Responsivo */
@media (max-width: 768px) {
    .footer-container {
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
}

/* Grid ajustado para a área principal */
.prompt-gallery-inner {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* Responsividade para celulares */
@media (max-width: 768px) {
    .container-layout {
        flex-direction: column;
    }
    .sidebar {
        flex: none;
        width: 100%;
        position: relative;
        top: 0;
    }
}

/* Container da Imagem */
.card-image-container {
    position: relative;
    width: 100%;
    height: 220px; /* Altura fixa para manter o grid alinhado */
    overflow: hidden;
}

/* Imagem de Exemplo do Prompt */
.prompt-example-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz a imagem preencher o quadro sem distorcer a proporção */
    transition: transform 0.3s ease;
}

/* Container para anúncios no topo ou rodapé */
.ad-container-top {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    text-align: center;
    background: #1a1a1a; /* Cor de fundo sutil para indicar o espaço */
    min-height: 90px;
}

/* Anúncio que se comporta como um card no grid */
.ad-container-grid {
    background-color: #1e1e1e;
    border-radius: 10px;
    border: 1px dashed #444; /* Borda tracejada para diferenciar do conteúdo */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

/* Efeito de zoom na imagem ao passar o mouse no card */
.prompt-card:hover .prompt-example-img {
    transform: scale(1.05);
}

/* Grid de Prompts */
.prompt-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    padding: 0 5% 50px;
}

.prompt-card {
    background-color: #1e1e1e;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 0.2s ease;
}

.prompt-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 10px;
}

.badge {
    position: absolute;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.badge.platform {
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #00d2ff;
}

.badge.category {
    bottom: 10px;
    right: 10px;
    background-color: #ff0055;
    color: #fff;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.prompt-text {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 20px;
    background-color: #0a0a0a;
    padding: 10px;
    border-radius: 5px;
    max-height: 80px;
    overflow-y: auto;
}

.copy-btn {
    width: 100%;
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.copy-btn:hover {
    background-color: #555;
}

.copy-btn.copied {
    background-color: #28a745;
    color: #fff;
}

.azul-medio {
    color: #3b82f6; /* Azul médio moderno */
    font-weight: 600; /* Um leve negrito para dar ênfase ao destaque */
}

/* Definindo a classe para o parágrafo */
.texto-link a {
    color: #4169E1; /* Royal Blue (Azul Médio Clássico) */
    text-decoration: none; /* Remove o sublinhado padrão */
    font-weight: bold; /* Deixa em negrito para destacar que é um link */
    transition: color 0.3s ease; /* Transição suave para o efeito de passar o mouse */
}

/* Efeito ao passar o mouse (Hover) */
.texto-link a:hover {
    color: #1E90FF; /* Dodger Blue (Um azul um pouco mais vibrante ao interagir) */
    text-decoration: underline; /* Reaparece o sublinhado ao passar o mouse */
}

.share-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.share-main-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #3b82f6; /* O seu azul médio */
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    font-size: 24px;
    transition: transform 0.3s;
}

.share-main-btn:hover { transform: scale(1.1); }

.share-options {
    display: none; /* Escondido por padrão */
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    animation: slideUp 0.3s ease-out;
}

.share-item {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.wa { background-color: #25d366; }
.fb { background-color: #1877f2; }
.in { background-color: #0077b5; }
.link { background-color: #607d8b; }

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

:root {
    --primary: #3b82f6;
    --dark: #1e293b;
    --light: #f8fafc;
}

.hp-hero {
    background: linear-gradient(135deg, var(--dark) 0%, #0f172a 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.highlight {
    color: var(--primary);
    position: relative;
}

.badge-new {
    background: #ef4444;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    display: inline-block;
}

.grid-moderno {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    padding: 50px 0;
}

.item-curso {
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.item-curso:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.vantagem {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.2;
}

.box-captura {
    background: #f1f5f9;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    margin: 20px auto;
    border: 2px dashed var(--primary);
}

.btn-cta {
    background: var(--primary);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.4);
}

    h5{
      text-align:center;
      margin:0 0 10px;
      font-size:22px;
      color:#495a70;
      line-height:1.2;
    }

    h6{
      text-align:center;
      margin:0 0 10px;
      font-size:16px;
      color:#495a70;
      line-height:1.2;
    }
    
    /* Ajuste específico para a página de Artes e Animais */
.prompt-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

/* Garante que a grelha de cards funcione */
.prompt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

/* 1. CORREÇÃO DE ESTRUTURA GLOBAL (Ajusta o erro de todas as páginas) */
.container-layout {
    display: flex;
    max-width: 100%; /* Permite que ocupe a tela toda se necessário */
    margin: 0 auto;
    padding: 20px 2%; /* Reduzi o padding lateral para não apertar no mobile */
    gap: 20px;
    align-items: flex-start;
}

.main-content {
    flex: 1;
    min-width: 0; /* Evita que o conteúdo empurre a sidebar para fora */
}

/* 2. CORREÇÃO DA GRID DE PROMPTS (Para que os cards alinhem corretamente) */
.prompt-grid, .prompt-gallery {
    display: grid !important; /* Força a grid */
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 20px !important;
    width: 100%;
}

/* 3. PADRONIZAÇÃO DOS CARDS (Corrige a cor branca que apareceu no código) */
.prompt-card {
    background-color: #1e1e1e !important; /* Força o fundo escuro */
    color: #f0f0f0 !important;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    height: 100%; /* Faz todos os cards terem a mesma altura */
}

/* 4. RESPONSIVIDADE (O que quebra no Celular) */
@media (max-width: 992px) {
    .container-layout {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
        position: relative;
        top: 0;
        margin-bottom: 20px;
    }
}

/* Isso garante que, com apenas 2 itens, eles fiquem no centro */
.grid-moderno {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centraliza horizontalmente */
    gap: 20px;               /* Espaço entre os dois */
    margin-bottom: 30px;
}

.item-curso {
    flex: 0 1 350px;         /* Define que cada curso terá no máximo 350px */
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Ajuste para celular */
@media (max-width: 768px) {
    .item-curso {
        flex: 0 1 100%;      /* No celular eles ocupam a largura toda */
    }
}

/* 1. Remove o espaço abaixo da imagem */
.capa-wrap img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 0; /* Garante que não haja margem inferior */
}

/* 2. Zera as margens e paddings internos do container do texto */
.info-curso {
    padding-top: 15px; /* Ajuste aqui a distância exata que você deseja */
    margin-top: -5px;  /* Se ainda sobrar espaço, um valor negativo resolve */
}

/* 3. Garante que o título não tenha margem superior excessiva */
.info-curso h3 {
    margin-top: 0;
    padding-top: 0;
}

/* 4. Remove qualquer padding do container da imagem */
.capa-wrap {
    padding: 0;
    margin: 0;
    overflow: hidden; /* Garante que a imagem não saia do card */
}

/* Estilo dos Botões do Rodapé */
.footer-social-actions h4 {
    font-size: 14px;
    margin-bottom: 10px;
    color: #fff;
    letter-spacing: 1px;
}

.btn-footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
    width: 100%; /* Ocupa a coluna toda no footer */
    margin-bottom: 10px;
    color: #fff !important;
}

.btn-youtube {
    background-color: #FF0000;
}
.btn-youtube:hover {
    background-color: #CC0000;
}

.btn-whatsapp {
    background-color: #25D366;
}
.btn-whatsapp:hover {
    background-color: #1EBE57;
}

.btn-footer i {
    margin-right: 10px;
    font-size: 18px;
}

/* Ajuste das listas para SEO */
.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

.footer-column ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Configuração da Página Clara */
.lp-container {
    background-color: #fcfcfc;
    color: #333;
    padding: 60px 20px;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

/* Fundo Tech Suave */
.tech-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 0;
}

.hero-section, .courses-grid, .social-proof {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

/* Estilo do Título Letras Garrafais */
.main-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.sub-title {
    font-size: 1.5rem;
    color: #3498db;
    margin-bottom: 30px;
}

/* Hero e Autor */
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
}

.author-badge {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.author-img-wrapper img {
    width: 60px; height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    border: 2px solid #3498db;
}

/* Grid de Cards */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.lp-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.lp-card:hover { transform: translateY(-10px); }

/* Botões em Degradê */
.lp-btn {
    display: block;
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    margin-top: 25px;
    font-size: 1.1rem;
}

.btn-orange { background: linear-gradient(135deg, #ff9a44, #ff6a00); }
.btn-green { background: linear-gradient(135deg, #2ecc71, #27ae60); }

/* Responsividade */
@media (max-width: 768px) {
    .main-title { font-size: 3rem; }
    .hero-content { flex-direction: column; text-align: center; }
    .hero-image { display: none; }
    .courses-grid { grid-template-columns: 1fr; }
}