/* Estilos otimizados para Elementor */
.rcg-container {
    max-width: 100% !important;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-sizing: border-box;
}

/* Header */
.rcg-container .header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: white;
    border-radius: 10px;
}

.rcg-container .header h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: 300;
}

.rcg-container .header h3 {
    margin: 10px 0;
    font-size: 1.5em;
    font-weight: 400;
}

/* Formulário */
.rcg-container .form-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

/* Campos do formulário */
.rcg-container .form-group {
    margin-bottom: 15px;
}

.rcg-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.rcg-container input[type="text"],
.rcg-container input[type="email"],
.rcg-container input[type="tel"],
.rcg-container input[type="date"],
.rcg-container input[type="time"],
.rcg-container input[type="number"],
.rcg-container select,
.rcg-container textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

/* Botões */
.rcg-container .btn {
    display: inline-block;
    padding: 12px 24px;
    background: #22c55e;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.rcg-container .btn:hover {
    background: #16a34a;
}

/* Tabelas */
.rcg-container table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.rcg-container th,
.rcg-container td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.rcg-container th {
    background-color: #f8fafc;
    font-weight: 600;
}

/* Mensagens */
.rcg-container .notice {
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    border-left: 4px solid #22c55e;
    background-color: #f0fdf4;
}

.rcg-container .notice.error {
    border-left-color: #ef4444;
    background-color: #fef2f2;
}

.rcg-container .notice.warning {
    border-left-color: #f59e0b;
    background-color: #fffbeb;
}

/* Responsividade */
@media (max-width: 768px) {
    .rcg-container {
        padding: 15px;
    }
    
    .rcg-container .header h1 {
        font-size: 2em;
    }
    
    .rcg-container .header h3 {
        font-size: 1.3em;
    }
    
    .rcg-container .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}
