/*
Theme Name: Conecta Social Media Theme
Theme URI: https://conectasocialmedia.com
Author: Manus AI Agent
Author URI: https://manus.ai
Description: Tema WordPress personalizado para o site Conecta Social Media, convertido a partir de um site estático.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, custom-background, custom-colors, custom-logo, custom-menu, featured-images, full-width-template, theme-options, translation-ready, blog, portfolio
Text Domain: conectasocialmediatheme
*/

/* Importar o CSS original aqui ou copiar o seu conteúdo */


/****** General Styles ******/
body {
    font-family: 'Arial', sans-serif; /* Placeholder - Inspecionar CSS original para fontes exatas */
    margin: 0;
    padding: 0;
    background-color: #111111; /* Cor de fundo escura principal */
    color: #FFFFFF; /* Cor do texto principal */
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #00FF7F; /* Verde principal para links */
}

img {
    max-width: 100%;
    height: auto;
    display: block; /* Evitar espaços extras abaixo das imagens */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.tag {
    display: inline-block;
    background-color: rgba(0, 255, 127, 0.1); /* Fundo do tag com opacidade */
    color: #00FF7F; /* Verde principal */
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
}

section {
    padding: 60px 20px;
    text-align: center;
}

section h2.section-title {
    font-size: 2.8em; /* Aumentar um pouco */
    margin-bottom: 25px;
    color: #FFFFFF;
    font-weight: bold;
}

section > p.section-subtitle {
    font-size: 1.1em;
    color: #CCCCCC; /* Cinza claro para parágrafos de seção */
    max-width: 750px; /* Aumentar um pouco */
    margin: 0 auto 50px auto; /* Aumentar margem inferior */
}

.btn {
    display: inline-block;
    padding: 14px 28px; /* Aumentar padding */
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: #00FF7F; /* Verde principal */
    color: #111111; /* Texto escuro para contraste */
    border: none; /* Remover borda se o fundo já dá destaque */
}

.btn-primary:hover {
    background-color: #00e673;
}

.btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.btn-secondary:hover {
    background-color: #FFFFFF;
    color: #111111;
}

/***** Header *****/
header {
    background-color: #1a1a1a; /* Fundo do header um pouco mais claro */
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

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

header .logo img {
    height: 45px; /* Ajustar conforme o tamanho real do logo */
}

header nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

header nav ul li {
    margin-left: 30px; /* Aumentar espaçamento */
}

header nav ul li a {
    color: #FFFFFF;
    font-weight: bold;
    font-size: 1em;
}

header nav ul li a.btn-orcamento {
    background-color: #00FF7F;
    color: #111111;
    padding: 10px 20px;
    border-radius: 5px;
}

header nav ul li a.btn-orcamento:hover {
    background-color: #00e673;
}

/***** Hero Section *****/
#hero {
    padding: 80px 20px;
    background: #111111; /* Cor sólida conforme print, remover gradiente e imagem de fundo se não houver */
    text-align: left; /* Alinhar texto à esquerda */
}

#hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Espaçar conteúdo e imagem */
    gap: 40px; /* Espaço entre texto e imagem */
}

#hero .hero-content {
    flex: 1; /* Permitir que o conteúdo textual ocupe espaço */
    max-width: 55%; /* Ajustar largura do conteúdo textual */
}

#hero .hero-content .tag {
    margin-bottom: 20px;
}

#hero .hero-content h1 {
    font-size: 3.5em; /* Ajustar tamanho conforme print */
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: bold;
}

#hero .hero-content p {
    font-size: 1.2em;
    margin-bottom: 35px;
    color: #CCCCCC;
}

#hero .hero-buttons .btn {
    margin-right: 15px; /* Espaço entre botões */
    margin-bottom: 10px; /* Para quebra em mobile */
}

#hero .hero-image {
    flex: 1;
    max-width: 40%; /* Ajustar largura da imagem */
}

#hero .hero-image img {
    width: 100%;
    border-radius: 8px; /* Se a imagem no print tiver bordas arredondadas */
}

/* Badges abaixo da imagem/texto no print original (se houver) - no print atual, parecem estar abaixo dos botões */
#hero .hero-badges-bottom {
    display: flex;
    justify-content: flex-start; /* Alinhar à esquerda */
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

#hero .hero-badges-bottom span {
    background-color: rgba(255,255,255,0.08);
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9em;
    color: #E0E0E0;
}
#hero .hero-badges-bottom span img { /* Supondo que os ícones são SVG ou PNG pequenos */
    height: 16px;
    width: 16px;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Para ícones brancos se forem pretos */
}


/***** Beneficios Section *****/
#beneficios .beneficios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colunas conforme print */
    gap: 25px; /* Ajustar espaçamento */
    margin-bottom: 50px;
}

#beneficios .beneficio-card {
    background-color: #1E1E1E;
    padding: 25px;
    border-radius: 8px;
    text-align: left;
}

#beneficios .beneficio-card img.icon-beneficio {
    height: 35px; /* Ajustar tamanho do ícone */
    width: 35px;
    margin-bottom: 20px;
}

#beneficios .beneficio-card h3 {
    font-size: 1.3em; /* Ajustar */
    margin-bottom: 10px;
    color: #FFFFFF; /* Texto branco no print */
    font-weight: bold;
}

#beneficios .beneficio-card p {
    font-size: 0.95em;
    color: #B0B0B0;
}

#beneficios .beneficios-stats {
    display: grid; /* Usar grid para 3 colunas */
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    background-color: transparent; /* Sem fundo extra no print */
    padding: 0; /* Remover padding se não houver fundo */
    border-radius: 0;
}

#beneficios .beneficios-stats .stat-item {
    background-color: #1E1E1E;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

#beneficios .beneficios-stats .stat-item span.stat-number {
    font-size: 2.8em;
    font-weight: bold;
    color: #00FF7F;
    display: block;
    margin-bottom: 5px;
}

#beneficios .beneficios-stats .stat-item span.stat-label {
    font-size: 1em;
    color: #B0B0B0;
}

/***** Servicos Section *****/
#servicos .servicos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 colunas conforme print */
    gap: 25px;
    margin-bottom: 40px;
}

#servicos .servico-card {
    background-color: #1E1E1E;
    padding: 30px;
    border-radius: 8px;
    text-align: left;
}

#servicos .servico-card .servico-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

#servicos .servico-card img.icon-servico {
    height: 30px; /* Ajustar */
    width: 30px;
}

#servicos .servico-card h3 {
    font-size: 1.4em; /* Ajustar */
    margin: 0; /* Remover margem se já tem no header */
    color: #FFFFFF; /* Texto branco no print */
    font-weight: bold;
}

#servicos .servico-card p.servico-descricao {
    font-size: 1em;
    color: #B0B0B0;
    margin-bottom: 15px;
}

#servicos .servico-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#servicos .servico-card ul li {
    margin-bottom: 10px;
    color: #B0B0B0;
    font-size: 0.95em;
    display: flex;
    align-items: center;
}

#servicos .servico-card ul li::before { /* Ícone de check */
    content: '\2713'; /* Código unicode para check mark */
    color: #00FF7F; /* Verde */
    margin-right: 10px;
    font-weight: bold;
}

/***** Depoimentos Section *****/
#depoimentos .depoimentos-grid { /* Alterado de carousel para grid */
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colunas */
    gap: 25px;
}

#depoimentos .depoimento-card {
    background-color: #1E1E1E;
    padding: 30px;
    border-radius: 8px;
    text-align: left;
}

#depoimentos .depoimento-card p.depoimento-texto {
    font-style: normal; /* Remover itálico se não estiver no print */
    margin-bottom: 20px;
    color: #E0E0E0;
    font-size: 1em;
}

#depoimentos .depoimento-autor {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

#depoimentos .depoimento-autor img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
}

#depoimentos .depoimento-autor div h4 {
    margin: 0 0 5px 0;
    color: #FFFFFF; /* Nome do autor em branco */
    font-size: 1.1em;
    font-weight: bold;
}

#depoimentos .depoimento-autor div span {
    font-size: 0.9em;
    color: #AAAAAA;
}

/***** Contato Section *****/
#contato .contato-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 50px; /* Aumentar gap */
    text-align: left;
    align-items: flex-start; /* Alinhar itens ao topo */
}

#contato .contato-info, #contato .contato-form-wrapper {
    flex: 1;
    min-width: 320px; /* Ajustar min-width */
}

#contato .contato-info h3 {
    font-size: 1.8em;
    color: #FFFFFF; /* Título em branco */
    margin-bottom: 20px;
    font-weight: bold;
}

#contato .contato-info p {
    color: #CCCCCC;
    margin-bottom: 15px;
}

#contato .contato-info ul {
    list-style: none;
    padding: 0;
}

#contato .contato-info ul li {
    margin-bottom: 12px;
    color: #CCCCCC;
    display: flex;
    align-items: center;
}

#contato .contato-info ul li img.icon-contato { /* Para ícones de check */
    height: 16px;
    width: 16px;
    margin-right: 10px;
    filter: invert(70%) sepia(100%) saturate(400%) hue-rotate(95deg) brightness(100%) contrast(100%); /* Para ícones verdes */
}

#contato .contato-form-wrapper h3 {
    font-size: 1.8em;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: bold;
}

#contato .contato-form form div {
    margin-bottom: 20px;
}

#contato .contato-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #E0E0E0;
}

#contato .contato-form input[type="text"],
#contato .contato-form input[type="email"],
#contato .contato-form input[type="tel"],
#contato .contato-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 5px;
    border: 1px solid #333333;
    background-color: #2a2a2a;
    color: #FFFFFF;
    box-sizing: border-box;
    font-size: 1em;
}

#contato .contato-form textarea {
    min-height: 120px;
    resize: vertical;
}

#contato .contato-form button.btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
}

/***** Footer *****/
footer {
    background-color: #1a1a1a;
    padding: 60px 20px 30px 20px;
    text-align: center;
}

footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Ajustar para mais colunas se necessário */
    gap: 30px;
    margin-bottom: 50px;
    text-align: left;
}

footer .footer-col-1 .logo-footer img {
    height: 45px;
    margin-bottom: 20px;
}

footer .footer-col-1 p {
    font-size: 0.95em;
    color: #B0B0B0;
    margin-bottom: 20px;
}

footer h4.footer-heading {
    font-size: 1.2em;
    color: #FFFFFF; /* Títulos do rodapé em branco */
    margin-bottom: 20px;
    font-weight: bold;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 12px;
}

footer ul li a, footer p, footer p a {
    color: #B0B0B0;
    font-size: 0.95em;
}

footer ul li a:hover, footer p a:hover {
    color: #00FF7F;
}

footer .social-icons a {
    margin-right: 12px;
    display: inline-block; /* Para espaçamento correto */
}

footer .social-icons img {
    height: 22px; /* Ajustar tamanho */
    width: 22px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

footer .social-icons a:hover img {
    opacity: 1;
}

footer .btn-whatsapp-footer {
    display: inline-flex; /* Para alinhar ícone e texto */
    align-items: center;
    gap: 8px;
    background-color: #25D366;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1em;
}

footer .btn-whatsapp-footer:hover {
    background-color: #1DAE52;
}

footer .btn-whatsapp-footer img { /* Se houver ícone no botão */
    height: 18px;
    width: 18px;
}

footer .copyright {
    border-top: 1px solid #333333;
    padding-top: 30px;
    margin-top: 30px;
    font-size: 0.9em;
    color: #AAAAAA;
}


/***** Media Queries para Responsividade *****/
@media (max-width: 992px) {
    #hero .container {
        flex-direction: column;
        text-align: center;
    }
    #hero .hero-content,
    #hero .hero-image {
        max-width: 100%;
        text-align: center;
    }
    #hero .hero-content h1 {
        font-size: 3em;
    }
    #hero .hero-buttons {
        justify-content: center;
    }
    #hero .hero-badges-bottom {
        justify-content: center;
    }
    #beneficios .beneficios-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Volta para auto-fit */
    }
    #beneficios .beneficios-stats {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    #servicos .servicos-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    #depoimentos .depoimentos-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    section h2.section-title {
        font-size: 2.2em;
    }
    #hero .hero-content h1 {
        font-size: 2.5em;
    }
    header .container-nav {
        flex-direction: column;
        gap: 15px;
    }
    header nav ul {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: center;
    }
    header nav ul li {
        margin-left: 0;
    }
    header nav ul li a.btn-orcamento {
        display: block;
        text-align: center;
        width: 80%;
        margin: 10px auto 0 auto;
    }
    #contato .contato-flex {
        flex-direction: column;
    }
    footer .footer-grid {
        grid-template-columns: 1fr; /* Empilhar colunas do rodapé */
        text-align: center;
    }
    footer .footer-col-1 .logo-footer img {
        margin: 0 auto 20px auto; /* Centralizar logo no mobile */
    }
    footer .social-icons {
        text-align: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    section h2.section-title {
        font-size: 2em;
    }
    #hero .hero-content h1 {
        font-size: 2.2em;
    }
    .btn {
        padding: 12px 20px;
        font-size: 0.9em;
    }
    #beneficios .beneficio-card h3, #servicos .servico-card h3 {
        font-size: 1.2em;
    }
}


