/* Estilos gerais */
.lotawhats-main-content {
    font-family: inherit;
    line-height: 1.6;
    color: var(--bs-body-color);
}

/* Seção do Formulário */
.lotawhats-form-section {
    background-color: #f8f9fa;
}

.lotawhats-form-container {
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid rgba(0,0,0,0.1);
}

.lotawhats-info-content {
    max-width: 500px;
    margin: 0 auto;
}

.lotawhats-form-content {
    max-width: 500px;
    margin: 0 auto;
}

/* Estilos para a coluna de informações */
.bg-primary {
    background-color: #25D366 !important;
}

.lotawhats-info-content h2 {
    font-size: 2rem;
    font-weight: 700;
}

.lotawhats-info-content ul li {
    font-size: 1.1rem;
    padding: 0.5rem 0;
}

/* Estilos para o formulário */
#lotawhats-lead-form .form-control {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
}

#lotawhats-lead-form .btn-success {
    background-color: #25D366;
    border-color: #25D366;
    padding: 0.75rem;
    font-weight: 600;
    border-radius: 0.5rem;
}

#lotawhats-lead-form .btn-success:hover {
    background-color: #128C7E;
    border-color: #128C7E;
}

/* Mensagens do formulário */
#lotawhats-form-message {
    display: none;
    padding: 1rem;
    border-radius: 0.5rem;
}

#lotawhats-form-message.error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
    display: block;
}

#lotawhats-form-message.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
    display: block;
}

/* Seção de Conteúdo */
.lotawhats-content-section {
    background-color: #f8f9fa;
}

.lotawhats-article {
    max-width: 1200px;
    margin: 0 auto;
}

.lotawhats-header h1 {
    color: var(--bs-heading-color);
    font-weight: 800;
}

.lotawhats-content {
    font-size: 1.1rem;
}

.lotawhats-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

/* Seção de benefícios */
.icon-lg {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.lotawhats-benefits h3 {
    color: var(--bs-heading-color);
}

/* Responsividade */
@media (max-width: 992px) {
    .lotawhats-form-container .col-lg-6 {
        width: 100%;
    }
    
    .lotawhats-info-content,
    .lotawhats-form-content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .lotawhats-header h1 {
        font-size: 2rem;
    }
    
    .lotawhats-content {
        font-size: 1rem;
    }
    
    .lotawhats-info-content h2 {
        font-size: 1.5rem;
    }
}

/* Estilos para o formulário e cards relacionados */
.lotawhats-form-container {
    margin: 2rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.lotawhats-related-groups {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.related-groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.group-card {
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.group-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.whatsapp-join-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #25D366;
    color: white !important;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
}

.whatsapp-join-button:hover {
    background-color: #128C7E;
}

/* Formulário */
.lotawhats-form-container {
    max-width: 100%;
    margin: 2rem 0;
    font-family: inherit;
}

.lotawhats-form-wrapper {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.lotawhats-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lotawhats-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lotawhats-form-label {
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lotawhats-form-input {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.lotawhats-form-input:focus {
    border-color: #25D366;
    outline: none;
}

.lotawhats-form-submit {
    background: #25D366;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.3s;
}

.lotawhats-form-submit:hover {
    background: #128C7E;
}

.lotawhats-form-message {
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
}

.lotawhats-form-message.success {
    background: #e6f7ee;
    color: #2e7d32;
}

.lotawhats-form-message.error {
    background: #ffebee;
    color: #c62828;
}

/* Grupos Relacionados */
.lotawhats-related-groups {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.lotawhats-related-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
}

.lotawhats-groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.lotawhats-group-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.lotawhats-group-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.lotawhats-group-image {
    height: 150px;
    overflow: hidden;
}

.lotawhats-group-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lotawhats-group-content {
    padding: 1.25rem;
}

.lotawhats-group-title {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    color: #333;
}

.lotawhats-group-button {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lotawhats-group-button:hover {
    background: #128C7E;
    color: white;
}

@media (max-width: 768px) {
    .lotawhats-groups-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

.artigo-generator-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.btn-primary {
    background-color: #0073aa;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.notice {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.notice-success {
    background-color: #d4edda;
    color: #155724;
}